MediaWiki  1.23.15
initEditCount.php
Go to the documentation of this file.
1 <?php
25 require_once __DIR__ . '/Maintenance.php';
26 
27 class InitEditCount extends Maintenance {
28  public function __construct() {
29  parent::__construct();
30  $this->addOption( 'quick', 'Force the update to be done in a single query' );
31  $this->addOption( 'background', 'Force replication-friendly mode; may be inefficient but
32  avoids locking tables or lagging slaves with large updates;
33  calculates counts on a slave if possible.
34 
35 Background mode will be automatically used if the server is MySQL 4.0
36 (which does not support subqueries) or if multiple servers are listed
37 in the load balancer, usually indicating a replication environment.' );
38  $this->mDescription = "Batch-recalculate user_editcount fields from the revision table";
39  }
40 
41  public function execute() {
42  $dbw = wfGetDB( DB_MASTER );
43  $user = $dbw->tableName( 'user' );
44  $revision = $dbw->tableName( 'revision' );
45 
46  $dbver = $dbw->getServerVersion();
47 
48  // Autodetect mode...
49  $backgroundMode = wfGetLB()->getServerCount() > 1 ||
50  ( $dbw instanceof DatabaseMysql );
51 
52  if ( $this->hasOption( 'background' ) ) {
53  $backgroundMode = true;
54  } elseif ( $this->hasOption( 'quick' ) ) {
55  $backgroundMode = false;
56  }
57 
58  if ( $backgroundMode ) {
59  $this->output( "Using replication-friendly background mode...\n" );
60 
61  $dbr = wfGetDB( DB_SLAVE );
62  $chunkSize = 100;
63  $lastUser = $dbr->selectField( 'user', 'MAX(user_id)', '', __METHOD__ );
64 
65  $start = microtime( true );
66  $migrated = 0;
67  for ( $min = 0; $min <= $lastUser; $min += $chunkSize ) {
68  $max = $min + $chunkSize;
69  $result = $dbr->query(
70  "SELECT
71  user_id,
72  COUNT(rev_user) AS user_editcount
73  FROM $user
74  LEFT OUTER JOIN $revision ON user_id=rev_user
75  WHERE user_id > $min AND user_id <= $max
76  GROUP BY user_id",
77  __METHOD__ );
78 
79  foreach ( $result as $row ) {
80  $dbw->update( 'user',
81  array( 'user_editcount' => $row->user_editcount ),
82  array( 'user_id' => $row->user_id ),
83  __METHOD__ );
84  ++$migrated;
85  }
86 
87  $delta = microtime( true ) - $start;
88  $rate = ( $delta == 0.0 ) ? 0.0 : $migrated / $delta;
89  $this->output( sprintf( "%s %d (%0.1f%%) done in %0.1f secs (%0.3f accounts/sec).\n",
90  wfWikiID(),
91  $migrated,
92  min( $max, $lastUser ) / $lastUser * 100.0,
93  $delta,
94  $rate ) );
95 
97  }
98  } else {
99  // Subselect should work on modern MySQLs etc
100  $this->output( "Using single-query mode...\n" );
101  $sql = "UPDATE $user SET user_editcount=(SELECT COUNT(*) FROM $revision WHERE rev_user=user_id)";
102  $dbw->query( $sql );
103  }
104 
105  $this->output( "Done!\n" );
106  }
107 }
108 
109 $maintClass = "InitEditCount";
110 require_once RUN_MAINTENANCE_IF_MAIN;
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. $title:Title object for the current page $request:WebRequest $ignoreRedirect:boolean to skip redirect check $target:Title/string of redirect target $article:Article object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) $article:article(object) being checked 'IsTrustedProxy':Override the result of wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of User::isValidEmailAddr(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetMagic':DEPRECATED, use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetSpecialPageAliases':DEPRECATED, use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1528
DB_MASTER
const DB_MASTER
Definition: Defines.php:56
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
wfGetLB
wfGetLB( $wiki=false)
Get a load balancer object.
Definition: GlobalFunctions.php:3724
wfGetDB
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3714
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false)
Add a parameter to the script.
Definition: Maintenance.php:169
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
$dbr
$dbr
Definition: testCompression.php:48
InitEditCount
Definition: initEditCount.php:27
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
wfWaitForSlaves
wfWaitForSlaves( $maxLag=false, $wiki=false, $cluster=false)
Modern version of wfWaitForSlaves().
Definition: GlobalFunctions.php:3859
wfWikiID
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Definition: GlobalFunctions.php:3668
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:237
DB_SLAVE
const DB_SLAVE
Definition: Defines.php:55
InitEditCount\__construct
__construct()
Default constructor.
Definition: initEditCount.php:28
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:314
DatabaseMysql
Database abstraction object for PHP extension mysql.
Definition: DatabaseMysql.php:30
InitEditCount\execute
execute()
Do the actual work.
Definition: initEditCount.php:41
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular param exists.
Definition: Maintenance.php:181
$maintClass
$maintClass
Definition: initEditCount.php:109