* (bug 14709) Fix login success message formatting when using cookie check
[lhc/web/wiklou.git] / includes / SiteStats.php
index bf2c2a5..3b10f4a 100644 (file)
@@ -5,7 +5,7 @@
  */
 class SiteStats {
        static $row, $loaded = false;
-       static $admins;
+       static $admins, $jobs;
        static $pageCount = array();
 
        static function recache() {
@@ -24,39 +24,42 @@ class SiteStats {
                        # Update schema
                        $u = new SiteStatsUpdate( 0, 0, 0 );
                        $u->doUpdate();
+                       $dbr = wfGetDB( DB_SLAVE );
                        self::$row = $dbr->selectRow( 'site_stats', '*', false, __METHOD__ );
                }
+
+               self::$loaded = true;
        }
-       
+
        static function loadAndLazyInit() {
                wfDebug( __METHOD__ . ": reading site_stats from slave\n" );
                $row = self::doLoad( wfGetDB( DB_SLAVE ) );
-               
-               if( $row === false ) {
-                       // Might have just been initialzed during this request?
-                       wfDebug( __METHOD__ . ": site_stats missing on slave\n" );
+
+               if( !self::isSane( $row ) ) {
+                       // Might have just been initialized during this request? Underflow?
+                       wfDebug( __METHOD__ . ": site_stats damaged or missing on slave\n" );
                        $row = self::doLoad( wfGetDB( DB_MASTER ) );
                }
-               
-               if( $row === false ) {
+
+               if( !self::isSane( $row ) ) {
                        // Normally the site_stats table is initialized at install time.
-                       // Some manual construction scenarios may leave the table empty,
-                       // however, for instance when importing from a dump into a clean
-                       // schema with mwdumper.
-                       wfDebug( __METHOD__ . ": initializing empty site_stats\n" );
-                       
+                       // Some manual construction scenarios may leave the table empty or
+                       // broken, however, for instance when importing from a dump into a
+                       // clean schema with mwdumper.
+                       wfDebug( __METHOD__ . ": initializing damaged or missing site_stats\n" );
+
                        global $IP;
                        require_once "$IP/maintenance/initStats.inc";
-                       
+
                        ob_start();
                        wfInitStats();
                        ob_end_clean();
-                       
+
                        $row = self::doLoad( wfGetDB( DB_MASTER ) );
                }
-               
-               if( $row === false ) {
-                       wfDebug( __METHOD__ . ": init of site_stats failed o_O\n" );
+
+               if( !self::isSane( $row ) ) {
+                       wfDebug( __METHOD__ . ": site_stats persistently nonsensical o_O\n" );
                }
                return $row;
        }
@@ -89,7 +92,7 @@ class SiteStats {
                self::load();
                return self::$row->ss_users;
        }
-       
+
        static function images() {
                self::load();
                return self::$row->ss_images;
@@ -103,6 +106,18 @@ class SiteStats {
                return self::$admins;
        }
 
+       static function jobs() {
+               if ( !isset( self::$jobs ) ) {
+                       $dbr = wfGetDB( DB_SLAVE );
+                       self::$jobs = $dbr->estimateRowCount('job');
+                       /* Zero rows still do single row read for row that doesn't exist, but people are annoyed by that */
+                       if (self::$jobs == 1) {
+                               self::$jobs = 0;
+                       }
+               }
+               return self::$jobs;
+       }
+
        static function pagesInNs( $ns ) {
                wfProfileIn( __METHOD__ );
                if( !isset( self::$pageCount[$ns] ) ) {
@@ -113,6 +128,28 @@ class SiteStats {
                return $pageCount[$ns];
        }
 
+       /** Is the provided row of site stats sane, or should it be regenerated? */
+       private static function isSane( $row ) {
+               if(
+                       $row === false
+                       or $row->ss_total_pages < $row->ss_good_articles
+                       or $row->ss_total_edits < $row->ss_total_pages
+                       or $row->ss_users       < $row->ss_admins
+               ) {
+                       return false;
+               }
+               // Now check for underflow/overflow
+               foreach( array( 'total_views', 'total_edits', 'good_articles',
+               'total_pages', 'users', 'admins', 'images' ) as $member ) {
+                       if(
+                                  $row->{"ss_$member"} > 2000000000
+                               or $row->{"ss_$member"} < 0
+                       ) {
+                               return false;
+                       }
+               }
+               return true;
+       }
 }
 
 
@@ -199,4 +236,3 @@ class SiteStatsUpdate {
                */
        }
 }
-?>