[850] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 3 | // | Piwigo - a PHP based photo gallery | |
---|
[2297] | 4 | // +-----------------------------------------------------------------------+ |
---|
[12922] | 5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
---|
[2297] | 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
| 8 | // +-----------------------------------------------------------------------+ |
---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
---|
| 11 | // | the Free Software Foundation | |
---|
| 12 | // | | |
---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 16 | // | General Public License for more details. | |
---|
| 17 | // | | |
---|
| 18 | // | You should have received a copy of the GNU General Public License | |
---|
| 19 | // | along with this program; if not, write to the Free Software | |
---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 21 | // | USA. | |
---|
| 22 | // +-----------------------------------------------------------------------+ |
---|
[850] | 23 | |
---|
| 24 | // +-----------------------------------------------------------------------+ |
---|
| 25 | // | initialization | |
---|
| 26 | // +-----------------------------------------------------------------------+ |
---|
| 27 | |
---|
| 28 | define('PHPWG_ROOT_PATH','./'); |
---|
| 29 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
| 30 | |
---|
[13240] | 31 | /** |
---|
| 32 | * search an available feed_id |
---|
| 33 | * |
---|
| 34 | * @return string feed identifier |
---|
| 35 | */ |
---|
| 36 | function find_available_feed_id() |
---|
| 37 | { |
---|
| 38 | while (true) |
---|
| 39 | { |
---|
| 40 | $key = generate_key(50); |
---|
| 41 | $query = ' |
---|
| 42 | SELECT COUNT(*) |
---|
| 43 | FROM '.USER_FEED_TABLE.' |
---|
| 44 | WHERE id = \''.$key.'\' |
---|
| 45 | ;'; |
---|
| 46 | list($count) = pwg_db_fetch_row(pwg_query($query)); |
---|
| 47 | if (0 == $count) |
---|
| 48 | { |
---|
| 49 | return $key; |
---|
| 50 | } |
---|
| 51 | } |
---|
| 52 | } |
---|
| 53 | |
---|
[850] | 54 | // +-----------------------------------------------------------------------+ |
---|
[1072] | 55 | // | Check Access and exit when user status is not ok | |
---|
| 56 | // +-----------------------------------------------------------------------+ |
---|
| 57 | check_status(ACCESS_GUEST); |
---|
| 58 | |
---|
| 59 | // +-----------------------------------------------------------------------+ |
---|
[850] | 60 | // | new feed creation | |
---|
| 61 | // +-----------------------------------------------------------------------+ |
---|
| 62 | |
---|
| 63 | $page['feed'] = find_available_feed_id(); |
---|
| 64 | |
---|
| 65 | $query = ' |
---|
| 66 | INSERT INTO '.USER_FEED_TABLE.' |
---|
| 67 | (id, user_id, last_check) |
---|
| 68 | VALUES |
---|
| 69 | (\''.$page['feed'].'\', '.$user['id'].', NULL) |
---|
| 70 | ;'; |
---|
| 71 | pwg_query($query); |
---|
| 72 | |
---|
[1636] | 73 | |
---|
[1750] | 74 | $feed_url=PHPWG_ROOT_PATH.'feed.php'; |
---|
[2029] | 75 | if (is_a_guest()) |
---|
[1750] | 76 | { |
---|
| 77 | $feed_image_only_url=$feed_url; |
---|
| 78 | $feed_url .= '?feed='.$page['feed']; |
---|
| 79 | } |
---|
| 80 | else |
---|
| 81 | { |
---|
| 82 | $feed_url .= '?feed='.$page['feed']; |
---|
| 83 | $feed_image_only_url=$feed_url.'&image_only'; |
---|
| 84 | } |
---|
| 85 | |
---|
[850] | 86 | // +-----------------------------------------------------------------------+ |
---|
| 87 | // | template initialization | |
---|
| 88 | // +-----------------------------------------------------------------------+ |
---|
| 89 | |
---|
| 90 | $title = l10n('Notification'); |
---|
| 91 | $page['body_id'] = 'theNotificationPage'; |
---|
[1703] | 92 | $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1); |
---|
| 93 | |
---|
[1539] | 94 | |
---|
[850] | 95 | $template->set_filenames(array('notification'=>'notification.tpl')); |
---|
| 96 | |
---|
[2288] | 97 | $template->assign( |
---|
[850] | 98 | array( |
---|
[1636] | 99 | 'U_FEED' => $feed_url, |
---|
| 100 | 'U_FEED_IMAGE_ONLY' => $feed_image_only_url, |
---|
[850] | 101 | ) |
---|
| 102 | ); |
---|
[10812] | 103 | |
---|
| 104 | // include menubar |
---|
| 105 | $themeconf = $template->get_template_vars('themeconf'); |
---|
[10824] | 106 | if (!isset($themeconf['hide_menu_on']) OR !in_array('theNotificationPage', $themeconf['hide_menu_on'])) |
---|
[10812] | 107 | { |
---|
| 108 | include( PHPWG_ROOT_PATH.'include/menubar.inc.php'); |
---|
| 109 | } |
---|
[850] | 110 | |
---|
| 111 | // +-----------------------------------------------------------------------+ |
---|
| 112 | // | html code display | |
---|
| 113 | // +-----------------------------------------------------------------------+ |
---|
[2288] | 114 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
[15578] | 115 | include(PHPWG_ROOT_PATH.'include/page_messages.php'); |
---|
[2446] | 116 | $template->pparse('notification'); |
---|
[850] | 117 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
| 118 | |
---|
| 119 | ?> |
---|