[217] | 1 | <?php |
---|
[354] | 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 | // +-----------------------------------------------------------------------+ |
---|
[217] | 23 | |
---|
[9368] | 24 | // +-----------------------------------------------------------------------+ |
---|
| 25 | // | Basic constants and includes | |
---|
| 26 | // +-----------------------------------------------------------------------+ |
---|
| 27 | |
---|
[364] | 28 | define('PHPWG_ROOT_PATH','./'); |
---|
[393] | 29 | define('IN_ADMIN', true); |
---|
[808] | 30 | |
---|
[9368] | 31 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php'); |
---|
[1072] | 32 | include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |
---|
[1655] | 33 | include_once(PHPWG_ROOT_PATH.'admin/include/functions_plugins.inc.php'); |
---|
[16929] | 34 | include_once(PHPWG_ROOT_PATH.'admin/include/add_core_tabs.inc.php'); |
---|
[1072] | 35 | |
---|
[5933] | 36 | trigger_action('loc_begin_admin'); |
---|
| 37 | |
---|
[808] | 38 | // +-----------------------------------------------------------------------+ |
---|
[1072] | 39 | // | Check Access and exit when user status is not ok | |
---|
| 40 | // +-----------------------------------------------------------------------+ |
---|
[9368] | 41 | |
---|
[1072] | 42 | check_status(ACCESS_ADMINISTRATOR); |
---|
| 43 | |
---|
[9368] | 44 | // +-----------------------------------------------------------------------+ |
---|
| 45 | // | Direct actions | |
---|
| 46 | // +-----------------------------------------------------------------------+ |
---|
| 47 | |
---|
[11222] | 48 | // save plugins_new display order (AJAX action) |
---|
| 49 | if (isset($_GET['plugins_new_order'])) |
---|
| 50 | { |
---|
| 51 | pwg_set_session_var('plugins_new_order', $_GET['plugins_new_order']); |
---|
| 52 | exit; |
---|
| 53 | } |
---|
| 54 | |
---|
[5098] | 55 | // theme changer |
---|
| 56 | if (isset($_GET['change_theme'])) |
---|
| 57 | { |
---|
[5123] | 58 | $admin_themes = array('roma', 'clear'); |
---|
[5098] | 59 | |
---|
| 60 | $new_admin_theme = array_pop( |
---|
| 61 | array_diff( |
---|
| 62 | $admin_themes, |
---|
[5123] | 63 | array($conf['admin_theme']) |
---|
[5098] | 64 | ) |
---|
| 65 | ); |
---|
| 66 | |
---|
[5139] | 67 | conf_update_param('admin_theme', $new_admin_theme); |
---|
[5098] | 68 | |
---|
[12102] | 69 | $url_params = array(); |
---|
| 70 | foreach (array('page', 'tab', 'section') as $url_param) |
---|
| 71 | { |
---|
| 72 | if (isset($_GET[$url_param])) |
---|
| 73 | { |
---|
| 74 | $url_params[] = $url_param.'='.$_GET[$url_param]; |
---|
| 75 | } |
---|
| 76 | } |
---|
| 77 | |
---|
| 78 | $redirect_url = 'admin.php'; |
---|
| 79 | if (count($url_params) > 0) |
---|
| 80 | { |
---|
| 81 | $redirect_url.= '?'.implode('&', $url_params); |
---|
| 82 | } |
---|
| 83 | |
---|
| 84 | redirect($redirect_url); |
---|
[5098] | 85 | } |
---|
| 86 | |
---|
[1072] | 87 | // +-----------------------------------------------------------------------+ |
---|
[9368] | 88 | // | Synchronize user informations | |
---|
[808] | 89 | // +-----------------------------------------------------------------------+ |
---|
[9368] | 90 | |
---|
[11329] | 91 | // sync_user() is only useful when external authentication is activated |
---|
| 92 | if ($conf['external_authentification']) |
---|
[8756] | 93 | { |
---|
| 94 | sync_users(); |
---|
| 95 | } |
---|
[808] | 96 | |
---|
[817] | 97 | // +-----------------------------------------------------------------------+ |
---|
[9368] | 98 | // | Variables init | |
---|
[817] | 99 | // +-----------------------------------------------------------------------+ |
---|
[708] | 100 | |
---|
[12102] | 101 | $change_theme_url = PHPWG_ROOT_PATH.'admin.php?'; |
---|
| 102 | $test_get = $_GET; |
---|
| 103 | unset($test_get['page']); |
---|
| 104 | unset($test_get['section']); |
---|
| 105 | unset($test_get['tag']); |
---|
| 106 | if (count($test_get) == 0) |
---|
| 107 | { |
---|
| 108 | $change_theme_url.= str_replace('&', '&', $_SERVER['QUERY_STRING']).'&'; |
---|
| 109 | } |
---|
| 110 | $change_theme_url.= 'change_theme=1'; |
---|
| 111 | |
---|
[9357] | 112 | // ?page=plugin-community-pendings is an clean alias of |
---|
| 113 | // ?page=plugin§ion=community/admin.php&tab=pendings |
---|
[9358] | 114 | if (isset($_GET['page']) and preg_match('/^plugin-([^-]*)(?:-(.*))?$/', $_GET['page'], $matches)) |
---|
[9357] | 115 | { |
---|
| 116 | $_GET['page'] = 'plugin'; |
---|
| 117 | $_GET['section'] = $matches[1].'/admin.php'; |
---|
| 118 | if (isset($matches[2])) |
---|
| 119 | { |
---|
| 120 | $_GET['tab'] = $matches[2]; |
---|
| 121 | } |
---|
| 122 | } |
---|
| 123 | |
---|
[13013] | 124 | // ?page=album-134-properties is an clean alias of |
---|
| 125 | // ?page=album&cat_id=134&tab=properties |
---|
| 126 | if (isset($_GET['page']) and preg_match('/^album-(\d+)(?:-(.*))?$/', $_GET['page'], $matches)) |
---|
| 127 | { |
---|
| 128 | $_GET['page'] = 'album'; |
---|
| 129 | $_GET['cat_id'] = $matches[1]; |
---|
| 130 | if (isset($matches[2])) |
---|
| 131 | { |
---|
| 132 | $_GET['tab'] = $matches[2]; |
---|
| 133 | } |
---|
| 134 | } |
---|
| 135 | |
---|
[13077] | 136 | // ?page=photo-1234-properties is an clean alias of |
---|
| 137 | // ?page=photo&image_id=1234&tab=properties |
---|
| 138 | if (isset($_GET['page']) and preg_match('/^photo-(\d+)(?:-(.*))?$/', $_GET['page'], $matches)) |
---|
| 139 | { |
---|
| 140 | $_GET['page'] = 'photo'; |
---|
| 141 | $_GET['image_id'] = $matches[1]; |
---|
| 142 | if (isset($matches[2])) |
---|
| 143 | { |
---|
| 144 | $_GET['tab'] = $matches[2]; |
---|
| 145 | } |
---|
| 146 | } |
---|
| 147 | |
---|
[1705] | 148 | if (isset($_GET['page']) |
---|
[817] | 149 | and preg_match('/^[a-z_]*$/', $_GET['page']) |
---|
[1705] | 150 | and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php')) |
---|
[217] | 151 | { |
---|
[1705] | 152 | $page['page'] = $_GET['page']; |
---|
[217] | 153 | } |
---|
[1705] | 154 | else |
---|
[217] | 155 | { |
---|
[1705] | 156 | $page['page'] = 'intro'; |
---|
[217] | 157 | } |
---|
[393] | 158 | |
---|
[1655] | 159 | $page['errors'] = array(); |
---|
| 160 | $page['infos'] = array(); |
---|
[8762] | 161 | $page['warnings'] = array(); |
---|
[1655] | 162 | |
---|
[8168] | 163 | if (isset($_SESSION['page_infos'])) |
---|
| 164 | { |
---|
| 165 | $page['infos'] = array_merge($page['infos'], $_SESSION['page_infos']); |
---|
| 166 | unset($_SESSION['page_infos']); |
---|
| 167 | } |
---|
| 168 | |
---|
[393] | 169 | $link_start = PHPWG_ROOT_PATH.'admin.php?page='; |
---|
[602] | 170 | $conf_link = $link_start.'configuration&section='; |
---|
[9368] | 171 | |
---|
| 172 | // +-----------------------------------------------------------------------+ |
---|
| 173 | // | Template init | |
---|
| 174 | // +-----------------------------------------------------------------------+ |
---|
| 175 | |
---|
[2342] | 176 | $title = l10n('Piwigo Administration'); // for include/page_header.php |
---|
| 177 | $page['page_banner'] = '<h1>'.l10n('Piwigo Administration').'</h1>'; |
---|
[850] | 178 | $page['body_id'] = 'theAdminPage'; |
---|
[393] | 179 | |
---|
[817] | 180 | $template->set_filenames(array('admin' => 'admin.tpl')); |
---|
[614] | 181 | |
---|
[2216] | 182 | $template->assign( |
---|
[817] | 183 | array( |
---|
[5098] | 184 | 'USERNAME' => $user['username'], |
---|
[6365] | 185 | 'ENABLE_SYNCHRONIZATION' => $conf['enable_synchronization'], |
---|
[1029] | 186 | 'U_SITE_MANAGER'=> $link_start.'site_manager', |
---|
[1727] | 187 | 'U_HISTORY_STAT'=> $link_start.'stats', |
---|
[1004] | 188 | 'U_FAQ'=> $link_start.'help', |
---|
| 189 | 'U_SITES'=> $link_start.'remote_site', |
---|
| 190 | 'U_MAINTENANCE'=> $link_start.'maintenance', |
---|
[1091] | 191 | 'U_NOTIFICATION_BY_MAIL'=> $link_start.'notification_by_mail', |
---|
[1894] | 192 | 'U_CONFIG_GENERAL'=> $link_start.'configuration', |
---|
[1004] | 193 | 'U_CONFIG_DISPLAY'=> $conf_link.'default', |
---|
[2434] | 194 | 'U_CONFIG_EXTENTS'=> $link_start.'extend_for_templates', |
---|
[2488] | 195 | 'U_CONFIG_MENUBAR'=> $link_start.'menubar', |
---|
[10594] | 196 | 'U_CONFIG_LANGUAGES' => $link_start.'languages', |
---|
| 197 | 'U_CONFIG_THEMES'=> $link_start.'themes', |
---|
[1004] | 198 | 'U_CATEGORIES'=> $link_start.'cat_list', |
---|
| 199 | 'U_CAT_OPTIONS'=> $link_start.'cat_options', |
---|
[1058] | 200 | 'U_CAT_UPDATE'=> $link_start.'site_update&site=1', |
---|
[1042] | 201 | 'U_RATING'=> $link_start.'rating', |
---|
[8423] | 202 | 'U_RECENT_SET'=> $link_start.'batch_manager&cat=recent', |
---|
[8394] | 203 | 'U_BATCH'=> $link_start.'batch_manager', |
---|
[1119] | 204 | 'U_TAGS'=> $link_start.'tags', |
---|
[1004] | 205 | 'U_USERS'=> $link_start.'user_list', |
---|
| 206 | 'U_GROUPS'=> $link_start.'group_list', |
---|
[11368] | 207 | 'U_RETURN'=> get_gallery_home_url(), |
---|
[2574] | 208 | 'U_ADMIN'=> PHPWG_ROOT_PATH.'admin.php', |
---|
[3522] | 209 | 'U_LOGOUT'=> PHPWG_ROOT_PATH.'index.php?act=logout', |
---|
[10594] | 210 | 'U_PLUGINS'=> $link_start.'plugins', |
---|
[5089] | 211 | 'U_ADD_PHOTOS' => $link_start.'photos_add', |
---|
[12102] | 212 | 'U_CHANGE_THEME' => $change_theme_url, |
---|
[10511] | 213 | 'U_UPDATES' => $link_start.'updates', |
---|
[817] | 214 | ) |
---|
| 215 | ); |
---|
[12887] | 216 | |
---|
| 217 | if ($conf['activate_comments']) |
---|
| 218 | { |
---|
| 219 | $template->assign('U_PENDING_COMMENTS', $link_start.'comments'); |
---|
| 220 | } |
---|
[1058] | 221 | |
---|
[17008] | 222 | // any photo in the caddie? |
---|
| 223 | $query = ' |
---|
| 224 | SELECT COUNT(*) |
---|
| 225 | FROM '.CADDIE_TABLE.' |
---|
| 226 | WHERE user_id = '.$user['id'].' |
---|
| 227 | ;'; |
---|
| 228 | list($nb_photos_in_caddie) = pwg_db_fetch_row(pwg_query($query)); |
---|
| 229 | |
---|
| 230 | if ($nb_photos_in_caddie > 0) |
---|
| 231 | { |
---|
| 232 | $template->assign( |
---|
| 233 | array( |
---|
| 234 | 'NB_PHOTOS_IN_CADDIE' => $nb_photos_in_caddie, |
---|
| 235 | 'U_CADDIE' => $link_start.'batch_manager&cat=caddie', |
---|
| 236 | ) |
---|
| 237 | ); |
---|
| 238 | } |
---|
| 239 | |
---|
[9368] | 240 | // +-----------------------------------------------------------------------+ |
---|
| 241 | // | Plugin menu | |
---|
| 242 | // +-----------------------------------------------------------------------+ |
---|
| 243 | |
---|
[2144] | 244 | $plugin_menu_links = trigger_event('get_admin_plugin_menu_links', array() ); |
---|
| 245 | |
---|
| 246 | function UC_name_compare($a, $b) |
---|
| 247 | { |
---|
| 248 | return strcmp(strtolower($a['NAME']), strtolower($b['NAME'])); |
---|
| 249 | } |
---|
| 250 | usort($plugin_menu_links, 'UC_name_compare'); |
---|
[2216] | 251 | $template->assign('plugin_menu_items', $plugin_menu_links); |
---|
[1655] | 252 | |
---|
[792] | 253 | // +-----------------------------------------------------------------------+ |
---|
[9368] | 254 | // | Refresh permissions | |
---|
[792] | 255 | // +-----------------------------------------------------------------------+ |
---|
[817] | 256 | |
---|
[1945] | 257 | // Only for pages witch change permissions |
---|
[1952] | 258 | if ( |
---|
| 259 | in_array($page['page'], |
---|
| 260 | array( |
---|
| 261 | 'site_manager', // delete site |
---|
| 262 | 'site_update', // ?only POST |
---|
| 263 | 'cat_list', // delete cat |
---|
| 264 | 'cat_move', // ?only POST |
---|
| 265 | 'cat_options', // ?only POST; public/private; lock/unlock |
---|
[2107] | 266 | 'picture_modify', // ?only POST; associate/dissociate |
---|
[1952] | 267 | 'user_perm', |
---|
| 268 | 'group_perm', |
---|
| 269 | 'group_list', // delete group |
---|
| 270 | ) |
---|
| 271 | ) |
---|
[9127] | 272 | or ( !empty($_POST) and in_array($page['page'], |
---|
[8756] | 273 | array( |
---|
[13258] | 274 | 'photo', |
---|
| 275 | 'album', // public/private; lock/unlock, permissions |
---|
[8756] | 276 | 'batch_manager', // associate/dissociate; delete; set level |
---|
[9127] | 277 | 'user_list', // group assoc; user level |
---|
[8756] | 278 | ) |
---|
| 279 | ) |
---|
| 280 | ) |
---|
[1952] | 281 | ) |
---|
[1945] | 282 | { |
---|
[1978] | 283 | invalidate_user_cache(); |
---|
[1945] | 284 | } |
---|
| 285 | |
---|
[9368] | 286 | // +-----------------------------------------------------------------------+ |
---|
| 287 | // | Include specific page | |
---|
| 288 | // +-----------------------------------------------------------------------+ |
---|
| 289 | |
---|
[10849] | 290 | trigger_action('loc_begin_admin_page'); |
---|
[9368] | 291 | include(PHPWG_ROOT_PATH.'admin/'.$page['page'].'.php'); |
---|
| 292 | |
---|
| 293 | // +-----------------------------------------------------------------------+ |
---|
| 294 | // | Errors, Infos & Warnings | |
---|
| 295 | // +-----------------------------------------------------------------------+ |
---|
| 296 | |
---|
| 297 | $template->assign('ACTIVE_MENU', get_active_menu($page['page'])); |
---|
| 298 | |
---|
| 299 | if (count($page['errors']) != 0) |
---|
| 300 | { |
---|
| 301 | $template->assign('errors', $page['errors']); |
---|
| 302 | } |
---|
| 303 | |
---|
| 304 | if (count($page['infos']) != 0) |
---|
| 305 | { |
---|
| 306 | $template->assign('infos', $page['infos']); |
---|
| 307 | } |
---|
| 308 | |
---|
| 309 | if (count($page['warnings']) != 0) |
---|
| 310 | { |
---|
| 311 | $template->assign('warnings', $page['warnings']); |
---|
| 312 | } |
---|
| 313 | |
---|
| 314 | // +-----------------------------------------------------------------------+ |
---|
| 315 | // | Sending html code | |
---|
| 316 | // +-----------------------------------------------------------------------+ |
---|
| 317 | |
---|
| 318 | // Add the Piwigo Official menu |
---|
| 319 | $template->assign( 'pwgmenu', pwg_URL() ); |
---|
| 320 | |
---|
| 321 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
| 322 | |
---|
| 323 | trigger_action('loc_end_admin'); |
---|
| 324 | |
---|
| 325 | $template->pparse('admin'); |
---|
| 326 | |
---|
[1978] | 327 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
[362] | 328 | ?> |
---|