MediaWiki REL1_37
SiteStatsUpdate.php
Go to the documentation of this file.
1<?php
21use Wikimedia\Assert\Assert;
23
29 protected $edits = 0;
31 protected $pages = 0;
33 protected $articles = 0;
35 protected $users = 0;
37 protected $images = 0;
38
40 private const COUNTERS = [
41 'ss_total_edits' => 'edits',
42 'ss_total_pages' => 'pages',
43 'ss_good_articles' => 'articles',
44 'ss_users' => 'users',
45 'ss_images' => 'images'
46 ];
47
48 // @todo deprecate this constructor
49 public function __construct( $views, $edits, $good, $pages = 0, $users = 0 ) {
50 $this->edits = $edits;
51 $this->articles = $good;
52 $this->pages = $pages;
53 $this->users = $users;
54 }
55
56 public function merge( MergeableUpdate $update ) {
58 Assert::parameterType( __CLASS__, $update, '$update' );
59 '@phan-var SiteStatsUpdate $update';
60
61 foreach ( self::COUNTERS as $field ) {
62 $this->$field += $update->$field;
63 }
64 }
65
71 public static function factory( array $deltas ) {
72 $update = new self( 0, 0, 0 );
73
74 foreach ( $deltas as $name => $unused ) {
75 if ( !in_array( $name, self::COUNTERS ) ) { // T187585
76 throw new UnexpectedValueException( __METHOD__ . ": no field called '$name'" );
77 }
78 }
79
80 foreach ( self::COUNTERS as $field ) {
81 $update->$field = $deltas[$field] ?? 0;
82 }
83
84 return $update;
85 }
86
87 public function doUpdate() {
88 $services = MediaWikiServices::getInstance();
89 $stats = $services->getStatsdDataFactory();
90
91 $deltaByType = [];
92 foreach ( self::COUNTERS as $type ) {
93 $delta = $this->$type;
94 if ( $delta !== 0 ) {
95 $stats->updateCount( "site.$type", $delta );
96 }
97 $deltaByType[$type] = $delta;
98 }
99
100 ( new AutoCommitUpdate(
101 $services->getDBLoadBalancer()->getConnectionRef( DB_PRIMARY ),
102 __METHOD__,
103 static function ( IDatabase $dbw, $fname ) use ( $deltaByType ) {
104 $set = [];
105 foreach ( self::COUNTERS as $field => $type ) {
106 $delta = (int)$deltaByType[$type];
107 if ( $delta > 0 ) {
108 $set[] = "$field=" . $dbw->buildGreatest(
109 [ $field => $dbw->addIdentifierQuotes( $field ) . '+' . abs( $delta ) ],
110 0
111 );
112 } elseif ( $delta < 0 ) {
113 $set[] = "$field=" . $dbw->buildGreatest(
114 [ 'new' => $dbw->addIdentifierQuotes( $field ) . '-' . abs( $delta ) ],
115 0
116 );
117 }
118 }
119
120 if ( $set ) {
121 $dbw->update( 'site_stats', $set, [ 'ss_row_id' => 1 ], $fname );
122 }
123 }
124 ) )->doUpdate();
125
126 // Invalidate cache used by parser functions
128 }
129
134 public static function cacheUpdate( IDatabase $dbw ) {
135 $services = MediaWikiServices::getInstance();
136 $config = $services->getMainConfig();
137
138 $dbr = $services->getDBLoadBalancer()->getConnectionRef( DB_REPLICA, 'vslow' );
139 # Get non-bot users than did some recent action other than making accounts.
140 # If account creation is included, the number gets inflated ~20+ fold on enwiki.
141 $activeUsers = $dbr->newSelectQueryBuilder()
142 ->select( 'COUNT(DISTINCT rc_actor)' )
143 ->from( 'recentchanges' )
144 ->join( 'actor', 'actor', 'actor_id=rc_actor' )
145 ->where( [
146 'rc_type != ' . $dbr->addQuotes( RC_EXTERNAL ), // Exclude external (Wikidata)
147 'actor_user IS NOT NULL',
148 'rc_bot' => 0,
149 'rc_log_type != ' . $dbr->addQuotes( 'newusers' ) . ' OR rc_log_type IS NULL',
150 'rc_timestamp >= ' . $dbr->addQuotes(
151 $dbr->timestamp( time() - $config->get( 'ActiveUserDays' ) * 24 * 3600 ) ),
152 ] )
153 ->caller( __METHOD__ )
154 ->fetchField();
155 $dbw->update(
156 'site_stats',
157 [ 'ss_active_users' => intval( $activeUsers ) ],
158 [ 'ss_row_id' => 1 ],
159 __METHOD__
160 );
161
162 // Invalid cache used by parser functions
164
165 return $activeUsers;
166 }
167}
const RC_EXTERNAL
Definition Defines.php:118
Deferrable Update for closure/callback updates that should use auto-commit mode.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Class for handling updates to the site_stats table.
static factory(array $deltas)
doUpdate()
Perform the actual work.
__construct( $views, $edits, $good, $pages=0, $users=0)
static cacheUpdate(IDatabase $dbw)
merge(MergeableUpdate $update)
Merge this enqueued update with a new MergeableUpdate of the same qualified class name.
static unload()
Trigger a reload next time a field is accessed.
Definition SiteStats.php:38
Interface that deferrable updates should implement.
Interface that deferrable updates can implement to signal that updates can be combined.
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
addIdentifierQuotes( $s)
Escape a SQL identifier (e.g.
update( $table, $set, $conds, $fname=__METHOD__, $options=[])
Update all rows in a table that match a given condition.
buildGreatest( $fields, $values)
Build a GREATEST function statement comparing columns/values.
const DB_REPLICA
Definition defines.php:25
const DB_PRIMARY
Definition defines.php:27