source: trunk/admin/maintenance.php @ 13001

Last change on this file since 13001 was 13001, checked in by plg, 12 years ago

bug 2558 fixed: instead of locking the gallery with a simple checkbox among
configuration options, "lock gallery" becomes a maintenance action, with a
confirmation on popup.

  • Property svn:eol-style set to LF
File size: 6.4 KB
RevLine 
[809]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// +-----------------------------------------------------------------------+
[809]23
24if (!defined('PHPWG_ROOT_PATH'))
25{
26  die ("Hacking attempt!");
27}
28
[1072]29include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
30
[809]31// +-----------------------------------------------------------------------+
[1072]32// | Check Access and exit when user status is not ok                      |
33// +-----------------------------------------------------------------------+
[8765]34
[1072]35check_status(ACCESS_ADMINISTRATOR);
36
[8765]37if (isset($_GET['action']))
38{
39  check_pwg_token();
40}
41
[1072]42// +-----------------------------------------------------------------------+
[809]43// |                                actions                                |
44// +-----------------------------------------------------------------------+
45
[8126]46$action = isset($_GET['action']) ? $_GET['action'] : '';
[809]47
48switch ($action)
49{
[13001]50  case 'lock_gallery' :
51  {
52    conf_update_param('gallery_locked', 'true');
53    redirect(get_root_url().'admin.php?page=maintenance');
54    break;
55  }
56  case 'unlock_gallery' :
57  {
58    conf_update_param('gallery_locked', 'false');
59    $_SESSION['page_infos'] = array(l10n('Gallery unlocked'));
60    redirect(get_root_url().'admin.php?page=maintenance');
61    break;
62  }
[809]63  case 'categories' :
64  {
65    update_uppercats();
66    update_category('all');
67    update_global_rank();
[2890]68    invalidate_user_cache(true);
[809]69    break;
70  }
71  case 'images' :
72  {
73    update_path();
[11827]74                include_once(PHPWG_ROOT_PATH.'include/functions_rate.inc.php');
75    update_rating_score();
[809]76    break;
77  }
[8762]78  case 'delete_orphan_tags' :
79  {
80    delete_orphan_tags();
81    break;
82  }
[2062]83  case 'history_detail' :
[809]84  {
85    $query = '
86DELETE
[2062]87  FROM '.HISTORY_TABLE.'
[1987]88;';
89    pwg_query($query);
[2062]90    break;
91  }
92  case 'history_summary' :
93  {
[1987]94    $query = '
95DELETE
[2062]96  FROM '.HISTORY_SUMMARY_TABLE.'
[809]97;';
98    pwg_query($query);
99    break;
100  }
101  case 'sessions' :
102  {
[1080]103    pwg_session_gc();
[809]104    break;
105  }
[833]106  case 'feeds' :
107  {
108    $query = '
109DELETE
110  FROM '.USER_FEED_TABLE.'
111  WHERE last_check IS NULL
112;';
113    pwg_query($query);
114    break;
115  }
[1111]116  case 'database' :
117  {
118    do_maintenance_all_tables();
119    break;
120  }
[2208]121  case 'c13y' :
122  {
[2232]123    include_once(PHPWG_ROOT_PATH.'admin/include/check_integrity.class.php');
124    $c13y = new check_integrity();
125    $c13y->maintenance();
[2208]126    break;
127  }
[3517]128  case 'search' :
129  {
130    $query = '
131DELETE
132  FROM '.SEARCH_TABLE.'
133;';
134    pwg_query($query);
135    break;
136  }
[12797]137  case 'compiled-templates':
[2251]138  {
[2278]139    $template->delete_compiled_templates();
[8634]140    FileCombiner::clear_combined_files();
[2251]141    break;
142  }
[12797]143  case 'derivatives':
144  {
145    clear_derivative_cache();
146    break;
147  }
[809]148  default :
149  {
150    break;
151  }
152}
153
154// +-----------------------------------------------------------------------+
155// |                             template init                             |
156// +-----------------------------------------------------------------------+
157
[2530]158$template->set_filenames(array('maintenance'=>'maintenance.tpl'));
[809]159
[8765]160$url_format = get_root_url().'admin.php?page=maintenance&amp;action=%s&amp;pwg_token='.get_pwg_token();
[809]161
[2251]162$template->assign(
[1111]163  array(
[8765]164    'U_MAINT_CATEGORIES' => sprintf($url_format, 'categories'),
165    'U_MAINT_IMAGES' => sprintf($url_format, 'images'),
166    'U_MAINT_ORPHAN_TAGS' => sprintf($url_format, 'delete_orphan_tags'),
167    'U_MAINT_HISTORY_DETAIL' => sprintf($url_format, 'history_detail'),
168    'U_MAINT_HISTORY_SUMMARY' => sprintf($url_format, 'history_summary'),
169    'U_MAINT_SESSIONS' => sprintf($url_format, 'sessions'),
170    'U_MAINT_FEEDS' => sprintf($url_format, 'feeds'),
171    'U_MAINT_DATABASE' => sprintf($url_format, 'database'),
172    'U_MAINT_C13Y' => sprintf($url_format, 'c13y'),
173    'U_MAINT_SEARCH' => sprintf($url_format, 'search'),
174    'U_MAINT_COMPILED_TEMPLATES' => sprintf($url_format, 'compiled-templates'),
[12797]175    'U_MAINT_DERIVATIVES' => sprintf($url_format, 'derivatives'),
[5920]176    'U_HELP' => get_root_url().'admin/popuphelp.php?page=maintenance',
[1111]177    )
178  );
[1080]179
[13001]180if ($conf['gallery_locked'])
181{
182  $template->assign(
183    array(
184      'U_MAINT_UNLOCK_GALLERY' => sprintf($url_format, 'unlock_gallery'),
185      )
186    );
187}
188else
189{
190  $template->assign(
191    array(
192      'U_MAINT_LOCK_GALLERY' => sprintf($url_format, 'lock_gallery'),
193      )
194    );
195}
196
[809]197// +-----------------------------------------------------------------------+
[5745]198// | Define advanced features                                              |
199// +-----------------------------------------------------------------------+
200
201$advanced_features = array();
202
203//$advanced_features is array of array composed of CAPTION & URL
204$advanced_features = trigger_event(
205  'get_admin_advanced_features_links',
206  $advanced_features
207  );
208
209$template->assign('advanced_features', $advanced_features);
210
211// +-----------------------------------------------------------------------+
[809]212// |                           sending html code                           |
213// +-----------------------------------------------------------------------+
214
215$template->assign_var_from_handle('ADMIN_CONTENT', 'maintenance');
216?>
Note: See TracBrowser for help on using the repository browser.