source: trunk/admin/maintenance.php @ 2208

Last change on this file since 2208 was 2208, checked in by rub, 16 years ago

Resolved issue 0000792: Admin "intro" : Integrity control bypass

Some sentences must be re-write ;-)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | file          : $Id: maintenance.php 2208 2008-02-13 20:13:12Z rub $
8// | last update   : $Date: 2008-02-13 20:13:12 +0000 (Wed, 13 Feb 2008) $
9// | last modifier : $Author: rub $
10// | revision      : $Revision: 2208 $
11// +-----------------------------------------------------------------------+
12// | This program is free software; you can redistribute it and/or modify  |
13// | it under the terms of the GNU General Public License as published by  |
14// | the Free Software Foundation                                          |
15// |                                                                       |
16// | This program is distributed in the hope that it will be useful, but   |
17// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
18// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
19// | General Public License for more details.                              |
20// |                                                                       |
21// | You should have received a copy of the GNU General Public License     |
22// | along with this program; if not, write to the Free Software           |
23// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
24// | USA.                                                                  |
25// +-----------------------------------------------------------------------+
26
27if (!defined('PHPWG_ROOT_PATH'))
28{
29  die ("Hacking attempt!");
30}
31
32include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
33
34// +-----------------------------------------------------------------------+
35// | Check Access and exit when user status is not ok                      |
36// +-----------------------------------------------------------------------+
37check_status(ACCESS_ADMINISTRATOR);
38
39// +-----------------------------------------------------------------------+
40// |                                actions                                |
41// +-----------------------------------------------------------------------+
42
43$action = (isset($_GET['action']) and !is_adviser()) ? $_GET['action'] : '';
44
45switch ($action)
46{
47  case 'categories' :
48  {
49    update_uppercats();
50    update_category('all');
51    ordering();
52    update_global_rank();
53    invalidate_user_cache();
54    break;
55  }
56  case 'images' :
57  {
58    update_path();
59    update_average_rate();
60    break;
61  }
62  case 'history_detail' :
63  {
64    $query = '
65DELETE
66  FROM '.HISTORY_TABLE.'
67;';
68    pwg_query($query);
69    break;
70  }
71  case 'history_summary' :
72  {
73    $query = '
74DELETE
75  FROM '.HISTORY_SUMMARY_TABLE.'
76;';
77    pwg_query($query);
78    break;
79  }
80  case 'sessions' :
81  {
82    pwg_session_gc();
83    break;
84  }
85  case 'feeds' :
86  {
87    $query = '
88DELETE
89  FROM '.USER_FEED_TABLE.'
90  WHERE last_check IS NULL
91;';
92    pwg_query($query);
93    break;
94  }
95  case 'database' :
96  {
97    do_maintenance_all_tables();
98    break;
99  }
100  case 'c13y' :
101  {
102    include_once(PHPWG_ROOT_PATH.'admin/include/functions_check_integrity.inc.php');
103    c13y_maintenance();
104    break;
105  }
106  default :
107  {
108    break;
109  }
110}
111
112// +-----------------------------------------------------------------------+
113// |                             template init                             |
114// +-----------------------------------------------------------------------+
115
116$template->set_filenames(array('maintenance'=>'admin/maintenance.tpl'));
117
118$start_url = PHPWG_ROOT_PATH.'admin.php?page=maintenance&amp;action=';
119
120$template->assign_vars(
121  array(
122    'U_MAINT_CATEGORIES' => $start_url.'categories',
123    'U_MAINT_IMAGES' => $start_url.'images',
124    'U_MAINT_HISTORY_DETAIL' => $start_url.'history_detail',
125    'U_MAINT_HISTORY_SUMMARY' => $start_url.'history_summary',
126    'U_MAINT_SESSIONS' => $start_url.'sessions',
127    'U_MAINT_FEEDS' => $start_url.'feeds',
128    'U_MAINT_DATABASE' => $start_url.'database',
129    'U_MAINT_C13Y' => $start_url.'c13y',
130    'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=maintenance',
131    )
132  );
133
134// +-----------------------------------------------------------------------+
135// |                           sending html code                           |
136// +-----------------------------------------------------------------------+
137
138$template->assign_var_from_handle('ADMIN_CONTENT', 'maintenance');
139?>
Note: See TracBrowser for help on using the repository browser.