1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
---|
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 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | // +-----------------------------------------------------------------------+ |
---|
25 | // | Basic constants and includes | |
---|
26 | // +-----------------------------------------------------------------------+ |
---|
27 | |
---|
28 | define('PHPWG_ROOT_PATH','./'); |
---|
29 | define('IN_ADMIN', true); |
---|
30 | |
---|
31 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php'); |
---|
32 | include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |
---|
33 | include_once(PHPWG_ROOT_PATH.'admin/include/functions_plugins.inc.php'); |
---|
34 | include_once(PHPWG_ROOT_PATH.'admin/include/add_core_tabs.inc.php'); |
---|
35 | |
---|
36 | trigger_action('loc_begin_admin'); |
---|
37 | |
---|
38 | // +-----------------------------------------------------------------------+ |
---|
39 | // | Check Access and exit when user status is not ok | |
---|
40 | // +-----------------------------------------------------------------------+ |
---|
41 | |
---|
42 | check_status(ACCESS_ADMINISTRATOR); |
---|
43 | |
---|
44 | // +-----------------------------------------------------------------------+ |
---|
45 | // | Direct actions | |
---|
46 | // +-----------------------------------------------------------------------+ |
---|
47 | |
---|
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 | |
---|
55 | // theme changer |
---|
56 | if (isset($_GET['change_theme'])) |
---|
57 | { |
---|
58 | $admin_themes = array('roma', 'clear'); |
---|
59 | |
---|
60 | $new_admin_theme = array_pop( |
---|
61 | array_diff( |
---|
62 | $admin_themes, |
---|
63 | array($conf['admin_theme']) |
---|
64 | ) |
---|
65 | ); |
---|
66 | |
---|
67 | conf_update_param('admin_theme', $new_admin_theme); |
---|
68 | |
---|
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); |
---|
85 | } |
---|
86 | |
---|
87 | // +-----------------------------------------------------------------------+ |
---|
88 | // | Synchronize user informations | |
---|
89 | // +-----------------------------------------------------------------------+ |
---|
90 | |
---|
91 | // sync_user() is only useful when external authentication is activated |
---|
92 | if ($conf['external_authentification']) |
---|
93 | { |
---|
94 | sync_users(); |
---|
95 | } |
---|
96 | |
---|
97 | // +-----------------------------------------------------------------------+ |
---|
98 | // | Variables init | |
---|
99 | // +-----------------------------------------------------------------------+ |
---|
100 | |
---|
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 | |
---|
112 | // ?page=plugin-community-pendings is an clean alias of |
---|
113 | // ?page=plugin§ion=community/admin.php&tab=pendings |
---|
114 | if (isset($_GET['page']) and preg_match('/^plugin-([^-]*)(?:-(.*))?$/', $_GET['page'], $matches)) |
---|
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 | |
---|
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 | |
---|
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 | |
---|
148 | if (isset($_GET['page']) |
---|
149 | and preg_match('/^[a-z_]*$/', $_GET['page']) |
---|
150 | and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php')) |
---|
151 | { |
---|
152 | $page['page'] = $_GET['page']; |
---|
153 | } |
---|
154 | else |
---|
155 | { |
---|
156 | $page['page'] = 'intro'; |
---|
157 | } |
---|
158 | |
---|
159 | $page['errors'] = array(); |
---|
160 | $page['infos'] = array(); |
---|
161 | $page['warnings'] = array(); |
---|
162 | |
---|
163 | if (isset($_SESSION['page_infos'])) |
---|
164 | { |
---|
165 | $page['infos'] = array_merge($page['infos'], $_SESSION['page_infos']); |
---|
166 | unset($_SESSION['page_infos']); |
---|
167 | } |
---|
168 | |
---|
169 | $link_start = PHPWG_ROOT_PATH.'admin.php?page='; |
---|
170 | $conf_link = $link_start.'configuration&section='; |
---|
171 | |
---|
172 | // +-----------------------------------------------------------------------+ |
---|
173 | // | Template init | |
---|
174 | // +-----------------------------------------------------------------------+ |
---|
175 | |
---|
176 | $title = l10n('Piwigo Administration'); // for include/page_header.php |
---|
177 | $page['page_banner'] = '<h1>'.l10n('Piwigo Administration').'</h1>'; |
---|
178 | $page['body_id'] = 'theAdminPage'; |
---|
179 | |
---|
180 | $template->set_filenames(array('admin' => 'admin.tpl')); |
---|
181 | |
---|
182 | $template->assign( |
---|
183 | array( |
---|
184 | 'USERNAME' => $user['username'], |
---|
185 | 'ENABLE_SYNCHRONIZATION' => $conf['enable_synchronization'], |
---|
186 | 'U_SITE_MANAGER'=> $link_start.'site_manager', |
---|
187 | 'U_HISTORY_STAT'=> $link_start.'stats', |
---|
188 | 'U_FAQ'=> $link_start.'help', |
---|
189 | 'U_SITES'=> $link_start.'remote_site', |
---|
190 | 'U_MAINTENANCE'=> $link_start.'maintenance', |
---|
191 | 'U_NOTIFICATION_BY_MAIL'=> $link_start.'notification_by_mail', |
---|
192 | 'U_CONFIG_GENERAL'=> $link_start.'configuration', |
---|
193 | 'U_CONFIG_DISPLAY'=> $conf_link.'default', |
---|
194 | 'U_CONFIG_EXTENTS'=> $link_start.'extend_for_templates', |
---|
195 | 'U_CONFIG_MENUBAR'=> $link_start.'menubar', |
---|
196 | 'U_CONFIG_LANGUAGES' => $link_start.'languages', |
---|
197 | 'U_CONFIG_THEMES'=> $link_start.'themes', |
---|
198 | 'U_CATEGORIES'=> $link_start.'cat_list', |
---|
199 | 'U_CAT_OPTIONS'=> $link_start.'cat_options', |
---|
200 | 'U_CAT_UPDATE'=> $link_start.'site_update&site=1', |
---|
201 | 'U_RATING'=> $link_start.'rating', |
---|
202 | 'U_RECENT_SET'=> $link_start.'batch_manager&cat=recent', |
---|
203 | 'U_BATCH'=> $link_start.'batch_manager', |
---|
204 | 'U_TAGS'=> $link_start.'tags', |
---|
205 | 'U_USERS'=> $link_start.'user_list', |
---|
206 | 'U_GROUPS'=> $link_start.'group_list', |
---|
207 | 'U_RETURN'=> get_gallery_home_url(), |
---|
208 | 'U_ADMIN'=> PHPWG_ROOT_PATH.'admin.php', |
---|
209 | 'U_LOGOUT'=> PHPWG_ROOT_PATH.'index.php?act=logout', |
---|
210 | 'U_PLUGINS'=> $link_start.'plugins', |
---|
211 | 'U_ADD_PHOTOS' => $link_start.'photos_add', |
---|
212 | 'U_CHANGE_THEME' => $change_theme_url, |
---|
213 | 'U_UPDATES' => $link_start.'updates', |
---|
214 | ) |
---|
215 | ); |
---|
216 | |
---|
217 | if ($conf['activate_comments']) |
---|
218 | { |
---|
219 | $template->assign('U_PENDING_COMMENTS', $link_start.'comments'); |
---|
220 | } |
---|
221 | |
---|
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 | |
---|
240 | // +-----------------------------------------------------------------------+ |
---|
241 | // | Plugin menu | |
---|
242 | // +-----------------------------------------------------------------------+ |
---|
243 | |
---|
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'); |
---|
251 | $template->assign('plugin_menu_items', $plugin_menu_links); |
---|
252 | |
---|
253 | // +-----------------------------------------------------------------------+ |
---|
254 | // | Refresh permissions | |
---|
255 | // +-----------------------------------------------------------------------+ |
---|
256 | |
---|
257 | // Only for pages witch change permissions |
---|
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 |
---|
266 | 'picture_modify', // ?only POST; associate/dissociate |
---|
267 | 'user_perm', |
---|
268 | 'group_perm', |
---|
269 | 'group_list', // delete group |
---|
270 | ) |
---|
271 | ) |
---|
272 | or ( !empty($_POST) and in_array($page['page'], |
---|
273 | array( |
---|
274 | 'photo', |
---|
275 | 'album', // public/private; lock/unlock, permissions |
---|
276 | 'batch_manager', // associate/dissociate; delete; set level |
---|
277 | 'user_list', // group assoc; user level |
---|
278 | ) |
---|
279 | ) |
---|
280 | ) |
---|
281 | ) |
---|
282 | { |
---|
283 | invalidate_user_cache(); |
---|
284 | } |
---|
285 | |
---|
286 | // +-----------------------------------------------------------------------+ |
---|
287 | // | Include specific page | |
---|
288 | // +-----------------------------------------------------------------------+ |
---|
289 | |
---|
290 | trigger_action('loc_begin_admin_page'); |
---|
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 | |
---|
327 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
328 | ?> |
---|