X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FinitStats.php;h=35918bbdb5db520787b5fbe43ae89e9f94ae806b;hb=b9e64226096bb17d005f7c53913119f9f7997dc9;hp=85804596bead4f9cf2c7b91bcf09357da9eff2c0;hpb=48d5b739e940857c7a2c95f113ecc2e9c60a78b9;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/initStats.php b/maintenance/initStats.php index 85804596be..35918bbdb5 100644 --- a/maintenance/initStats.php +++ b/maintenance/initStats.php @@ -1,25 +1,88 @@ + */ -require_once( 'commandLine.inc' ); +require_once( dirname( __FILE__ ) . '/Maintenance.php' ); -$dbr =& wfGetDB( DB_SLAVE ); +/** + * Maintenance script to re-initialise or update the site statistics table + * + * @ingroup Maintenance + */ +class InitStats extends Maintenance { + public function __construct() { + parent::__construct(); + $this->mDescription = "Re-initialise the site statistics tables"; + $this->addOption( 'update', 'Update the existing statistics (preserves the ss_total_views field)' ); + $this->addOption( 'noviews', "Don't update the page view counter" ); + $this->addOption( 'active', 'Also update active users count' ); + $this->addOption( 'use-master', 'Count using the master database' ); + } -$edits = $dbr->selectField( 'revision', 'COUNT(rev_id)', '' ); -$pages = $dbr->selectField( 'page', 'COUNT(page_id)', - array( - 'page_namespace' => 0, - 'page_is_redirect' => 0, - 'page_len > 0', - ) -); // HACK APPROXIMATION + public function execute() { + $this->output( "Refresh Site Statistics\n\n" ); + $counter = new SiteStatsInit( $this->hasOption( 'use-master' ) ); -echo "$wgDBname: setting edits $edits, pages $pages\n"; + $this->output( "Counting total edits..." ); + $edits = $counter->edits(); + $this->output( "{$edits}\nCounting number of articles..." ); -$dbw =& wfGetDB( DB_MASTER ); -$dbw->insert( 'site_stats', - array( 'ss_row_id'=> 1, - 'ss_total_views' => 0, - 'ss_total_edits' => $edits, - 'ss_good_articles' => $pages ) ); + $good = $counter->articles(); + $this->output( "{$good}\nCounting total pages..." ); -?> \ No newline at end of file + $pages = $counter->pages(); + $this->output( "{$pages}\nCounting number of users..." ); + + $users = $counter->users(); + $this->output( "{$users}\nCounting number of images..." ); + + $image = $counter->files(); + $this->output( "{$image}\n" ); + + if ( !$this->hasOption( 'noviews' ) ) { + $this->output( "Counting total page views..." ); + $views = $counter->views(); + $this->output( "{$views}\n" ); + } + + if ( $this->hasOption( 'active' ) ) { + $this->output( "Counting active users..." ); + $active = SiteStatsUpdate::cacheUpdate( wfGetDB( DB_MASTER ) ); + $this->output( "{$active}\n" ); + } + + $this->output( "\nUpdating site statistics..." ); + + if ( $this->hasOption( 'update' ) ) { + $counter->update(); + } else { + $counter->refresh(); + } + + $this->output( "done.\n" ); + } +} + +$maintClass = "InitStats"; +require_once( RUN_MAINTENANCE_IF_MAIN );