1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<?php
/**
* Maintenance script to re-initialise or update the site statistics table
*
* @package MediaWiki
* @subpackage Maintenance
* @author Brion Vibber
* @author Rob Church <robchur@gmail.com>
* @licence GNU General Public Licence 2.0 or later
*/
$options = array( 'help', 'update', 'noviews' );
require_once( 'commandLine.inc' );
echo( "Refresh Site Statistics\n\n" );
$dbr =& wfGetDB( DB_SLAVE );
$fname = 'initStats';
if( isset( $options['help'] ) ) {
showHelp();
exit();
}
echo( "Counting total edits..." );
$edits = $dbr->selectField( 'revision', 'COUNT(*)', '', $fname );
$edits += $dbr->selectField( 'archive', 'COUNT(*)', '', $fname );
echo( "{$edits}\nCounting number of articles..." );
global $wgContentNamespaces;
$good = $dbr->selectField( 'page', 'COUNT(*)', array( 'page_namespace' => $wgContentNamespaces, 'page_is_redirect' => 0, 'page_len > 0' ), $fname );
echo( "{$good}\nCounting total pages..." );
$pages = $dbr->selectField( 'page', 'COUNT(*)', '', $fname );
echo( "{$pages}\nCounting number of users..." );
$users = $dbr->selectField( 'user', 'COUNT(*)', '', $fname );
echo( "{$users}\nCounting number of admins..." );
$admin = $dbr->selectField( 'user_groups', 'COUNT(*)', array( 'ug_group' => 'sysop' ), $fname );
echo( "{$admin}\nCounting number of images..." );
$image = $dbr->selectField( 'image', 'COUNT(*)', '', $fname );
echo( "{$image}\n" );
if( !isset( $options['noviews'] ) ) {
echo( "Counting total page views..." );
$views = $dbr->selectField( 'page', 'SUM(page_counter)', '', $fname );
echo( "{$views}\n" );
}
echo( "\nUpdating site statistics..." );
$dbw =& wfGetDB( DB_MASTER );
$values = array( 'ss_total_edits' => $edits,
'ss_good_articles' => $good,
'ss_total_pages' => $pages,
'ss_users' => $users,
'ss_admins' => $admin,
'ss_images' => $image );
$conds = array( 'ss_row_id' => 1 );
$views = array( 'ss_total_views' => isset( $views ) ? $views : 0 );
if( isset( $options['update'] ) ) {
$dbw->update( 'site_stats', $values, $conds, $fname );
} else {
$dbw->delete( 'site_stats', $conds, $fname );
$dbw->insert( 'site_stats', array_merge( $values, $conds, $views ), $fname );
}
echo( "done.\n\n" );
function showHelp() {
echo( "Re-initialise the site statistics tables.\n\n" );
echo( "Usage: php initStats.php [--update|--noviews]\n\n" );
echo( " --update : Update the existing statistics (preserves the ss_total_views field)\n" );
echo( "--noviews : Don't update the page view counter\n\n" );
}
?>
|