* simplified file description header or load.php
[lhc/web/wiklou.git] / maintenance / refreshImageCount.php
1 <?php
2 /**
3 * Quickie hack; patch-ss_images.sql uses variables which don't
4 * replicate properly.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @ingroup Maintenance
22 */
23
24 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
25
26 class RefreshImageCount extends Maintenance {
27 public function __construct() {
28 parent::__construct();
29 $this->mDescription = "Resets ss_image count, forcing slaves to pick it up.";
30 }
31
32 public function execute() {
33 $dbw = wfGetDB( DB_MASTER );
34
35 // Load the current value from the master
36 $count = $dbw->selectField( 'site_stats', 'ss_images' );
37
38 $this->output( wfWikiID() . ": forcing ss_images to $count\n" );
39
40 // First set to NULL so that it changes on the master
41 $dbw->update( 'site_stats',
42 array( 'ss_images' => null ),
43 array( 'ss_row_id' => 1 ) );
44
45 // Now this update will be forced to go out
46 $dbw->update( 'site_stats',
47 array( 'ss_images' => $count ),
48 array( 'ss_row_id' => 1 ) );
49 }
50 }
51
52 $maintClass = "RefreshImageCount";
53 require_once( DO_MAINTENANCE );
54