ShowSiteStats   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 37
rs 10
c 0
b 0
f 0
wmc 4
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
B execute() 0 30 3
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 39 and the first side effect is on line 32.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
3
/**
4
 * Show the cached statistics.
5
 * Give out the same output as [[Special:Statistics]]
6
 *
7
 * This program is free software; you can redistribute it and/or modify
8
 * it under the terms of the GNU General Public License as published by
9
 * the Free Software Foundation; either version 2 of the License, or
10
 * (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License along
18
 * with this program; if not, write to the Free Software Foundation, Inc.,
19
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
 * http://www.gnu.org/copyleft/gpl.html
21
 *
22
 * @file
23
 * @ingroup Maintenance
24
 * @author Antoine Musso <hashar at free dot fr>
25
 * Based on initSiteStats.php by:
26
 * @author Brion Vibber
27
 * @author Rob Church <[email protected]>
28
 *
29
 * @license GNU General Public License 2.0 or later
30
 */
31
32
require_once __DIR__ . '/Maintenance.php';
33
34
/**
35
 * Maintenance script to show the cached statistics.
36
 *
37
 * @ingroup Maintenance
38
 */
39
class ShowSiteStats extends Maintenance {
40
	public function __construct() {
41
		parent::__construct();
42
		$this->addDescription( 'Show the cached statistics' );
43
	}
44
45
	public function execute() {
46
		$fields = [
47
			'ss_total_edits' => 'Total edits',
48
			'ss_good_articles' => 'Number of articles',
49
			'ss_total_pages' => 'Total pages',
50
			'ss_users' => 'Number of users',
51
			'ss_active_users' => 'Active users',
52
			'ss_images' => 'Number of images',
53
		];
54
55
		// Get cached stats from a replica DB
56
		$dbr = $this->getDB( DB_REPLICA );
57
		$stats = $dbr->selectRow( 'site_stats', '*', '', __METHOD__ );
58
59
		// Get maximum size for each column
60
		$max_length_value = $max_length_desc = 0;
61
		foreach ( $fields as $field => $desc ) {
62
			$max_length_value = max( $max_length_value, strlen( $stats->$field ) );
63
			$max_length_desc = max( $max_length_desc, strlen( $desc ) );
64
		}
65
66
		// Show them
67
		foreach ( $fields as $field => $desc ) {
68
			$this->output( sprintf(
69
				"%-{$max_length_desc}s: %{$max_length_value}d\n",
70
				$desc,
71
				$stats->$field
72
			) );
73
		}
74
	}
75
}
76
77
$maintClass = "ShowSiteStats";
78
require_once RUN_MAINTENANCE_IF_MAIN;
79