MediaWiki REL1_31
BotPassword.php
Go to the documentation of this file.
1<?php
24
29class BotPassword implements IDBAccessObject {
30
31 const APPID_MAXLENGTH = 32;
32
38
43 const GRANTS_MAXLENGTH = 65535;
44
46 private $isSaved;
47
49 private $centralId;
50
52 private $appId;
53
55 private $token;
56
59
61 private $grants;
62
64 private $flags = self::READ_NORMAL;
65
71 protected function __construct( $row, $isSaved, $flags = self::READ_NORMAL ) {
72 $this->isSaved = $isSaved;
73 $this->flags = $flags;
74
75 $this->centralId = (int)$row->bp_user;
76 $this->appId = $row->bp_app_id;
77 $this->token = $row->bp_token;
78 $this->restrictions = MWRestrictions::newFromJson( $row->bp_restrictions );
79 $this->grants = FormatJson::decode( $row->bp_grants );
80 }
81
87 public static function getDB( $db ) {
89
90 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
92 ? $lbFactory->getExternalLB( $wgBotPasswordsCluster )
93 : $lbFactory->getMainLB( $wgBotPasswordsDatabase );
94 return $lb->getConnectionRef( $db, [], $wgBotPasswordsDatabase );
95 }
96
104 public static function newFromUser( User $user, $appId, $flags = self::READ_NORMAL ) {
105 $centralId = CentralIdLookup::factory()->centralIdFromLocalUser(
106 $user, CentralIdLookup::AUDIENCE_RAW, $flags
107 );
108 return $centralId ? self::newFromCentralId( $centralId, $appId, $flags ) : null;
109 }
110
118 public static function newFromCentralId( $centralId, $appId, $flags = self::READ_NORMAL ) {
120
121 if ( !$wgEnableBotPasswords ) {
122 return null;
123 }
124
125 list( $index, $options ) = DBAccessObjectUtils::getDBOptions( $flags );
126 $db = self::getDB( $index );
127 $row = $db->selectRow(
128 'bot_passwords',
129 [ 'bp_user', 'bp_app_id', 'bp_token', 'bp_restrictions', 'bp_grants' ],
130 [ 'bp_user' => $centralId, 'bp_app_id' => $appId ],
131 __METHOD__,
133 );
134 return $row ? new self( $row, true, $flags ) : null;
135 }
136
149 public static function newUnsaved( array $data, $flags = self::READ_NORMAL ) {
150 $row = (object)[
151 'bp_user' => 0,
152 'bp_app_id' => isset( $data['appId'] ) ? trim( $data['appId'] ) : '',
153 'bp_token' => '**unsaved**',
154 'bp_restrictions' => isset( $data['restrictions'] )
155 ? $data['restrictions']
157 'bp_grants' => isset( $data['grants'] ) ? $data['grants'] : [],
158 ];
159
160 if (
161 $row->bp_app_id === '' || strlen( $row->bp_app_id ) > self::APPID_MAXLENGTH ||
162 !$row->bp_restrictions instanceof MWRestrictions ||
163 !is_array( $row->bp_grants )
164 ) {
165 return null;
166 }
167
168 $row->bp_restrictions = $row->bp_restrictions->toJson();
169 $row->bp_grants = FormatJson::encode( $row->bp_grants );
170
171 if ( isset( $data['user'] ) ) {
172 if ( !$data['user'] instanceof User ) {
173 return null;
174 }
175 $row->bp_user = CentralIdLookup::factory()->centralIdFromLocalUser(
176 $data['user'], CentralIdLookup::AUDIENCE_RAW, $flags
177 );
178 } elseif ( isset( $data['username'] ) ) {
179 $row->bp_user = CentralIdLookup::factory()->centralIdFromName(
180 $data['username'], CentralIdLookup::AUDIENCE_RAW, $flags
181 );
182 } elseif ( isset( $data['centralId'] ) ) {
183 $row->bp_user = $data['centralId'];
184 }
185 if ( !$row->bp_user ) {
186 return null;
187 }
188
189 return new self( $row, false, $flags );
190 }
191
196 public function isSaved() {
197 return $this->isSaved;
198 }
199
204 public function getUserCentralId() {
205 return $this->centralId;
206 }
207
212 public function getAppId() {
213 return $this->appId;
214 }
215
220 public function getToken() {
221 return $this->token;
222 }
223
228 public function getRestrictions() {
229 return $this->restrictions;
230 }
231
236 public function getGrants() {
237 return $this->grants;
238 }
239
244 public static function getSeparator() {
247 }
248
253 protected function getPassword() {
254 list( $index, $options ) = DBAccessObjectUtils::getDBOptions( $this->flags );
255 $db = self::getDB( $index );
256 $password = $db->selectField(
257 'bot_passwords',
258 'bp_password',
259 [ 'bp_user' => $this->centralId, 'bp_app_id' => $this->appId ],
260 __METHOD__,
262 );
263 if ( $password === false ) {
264 return PasswordFactory::newInvalidPassword();
265 }
266
267 $passwordFactory = new \PasswordFactory();
268 $passwordFactory->init( \RequestContext::getMain()->getConfig() );
269 try {
270 return $passwordFactory->newFromCiphertext( $password );
271 } catch ( PasswordError $ex ) {
272 return PasswordFactory::newInvalidPassword();
273 }
274 }
275
281 public function isInvalid() {
282 return $this->getPassword() instanceof InvalidPassword;
283 }
284
292 public function save( $operation, Password $password = null ) {
293 // Ensure operation is valid
294 if ( $operation !== 'insert' && $operation !== 'update' ) {
295 throw new UnexpectedValueException(
296 "Expected 'insert' or 'update'; got '{$operation}'."
297 );
298 }
299
300 $conds = [
301 'bp_user' => $this->centralId,
302 'bp_app_id' => $this->appId,
303 ];
304
305 $res = Status::newGood();
306
307 $restrictions = $this->restrictions->toJson();
308
309 if ( strlen( $restrictions ) > self::RESTRICTIONS_MAXLENGTH ) {
310 $res->fatal( 'botpasswords-toolong-restrictions' );
311 }
312
313 $grants = FormatJson::encode( $this->grants );
314
315 if ( strlen( $grants ) > self::GRANTS_MAXLENGTH ) {
316 $res->fatal( 'botpasswords-toolong-grants' );
317 }
318
319 if ( !$res->isGood() ) {
320 return $res;
321 }
322
323 $fields = [
325 'bp_restrictions' => $restrictions,
326 'bp_grants' => $grants,
327 ];
328
329 if ( $password !== null ) {
330 $fields['bp_password'] = $password->toString();
331 } elseif ( $operation === 'insert' ) {
332 $fields['bp_password'] = PasswordFactory::newInvalidPassword()->toString();
333 }
334
335 $dbw = self::getDB( DB_MASTER );
336
337 if ( $operation === 'insert' ) {
338 $dbw->insert( 'bot_passwords', $fields + $conds, __METHOD__, [ 'IGNORE' ] );
339 } else {
340 // Must be update, already checked above
341 $dbw->update( 'bot_passwords', $fields, $conds, __METHOD__ );
342 }
343
344 $ok = (bool)$dbw->affectedRows();
345 if ( $ok ) {
346 $this->token = $dbw->selectField( 'bot_passwords', 'bp_token', $conds, __METHOD__ );
347 $this->isSaved = true;
348
349 return $res;
350 }
351
352 // Messages: botpasswords-insert-failed, botpasswords-update-failed
353 return Status::newFatal( "botpasswords-{$operation}-failed", $this->appId );
354 }
355
360 public function delete() {
361 $conds = [
362 'bp_user' => $this->centralId,
363 'bp_app_id' => $this->appId,
364 ];
365 $dbw = self::getDB( DB_MASTER );
366 $dbw->delete( 'bot_passwords', $conds, __METHOD__ );
367 $ok = (bool)$dbw->affectedRows();
368 if ( $ok ) {
369 $this->token = '**unsaved**';
370 $this->isSaved = false;
371 }
372 return $ok;
373 }
374
380 public static function invalidateAllPasswordsForUser( $username ) {
381 $centralId = CentralIdLookup::factory()->centralIdFromName(
382 $username, CentralIdLookup::AUDIENCE_RAW, CentralIdLookup::READ_LATEST
383 );
384 return $centralId && self::invalidateAllPasswordsForCentralId( $centralId );
385 }
386
392 public static function invalidateAllPasswordsForCentralId( $centralId ) {
394
395 if ( !$wgEnableBotPasswords ) {
396 return false;
397 }
398
399 $dbw = self::getDB( DB_MASTER );
400 $dbw->update(
401 'bot_passwords',
402 [ 'bp_password' => PasswordFactory::newInvalidPassword()->toString() ],
403 [ 'bp_user' => $centralId ],
404 __METHOD__
405 );
406 return (bool)$dbw->affectedRows();
407 }
408
414 public static function removeAllPasswordsForUser( $username ) {
415 $centralId = CentralIdLookup::factory()->centralIdFromName(
416 $username, CentralIdLookup::AUDIENCE_RAW, CentralIdLookup::READ_LATEST
417 );
418 return $centralId && self::removeAllPasswordsForCentralId( $centralId );
419 }
420
426 public static function removeAllPasswordsForCentralId( $centralId ) {
428
429 if ( !$wgEnableBotPasswords ) {
430 return false;
431 }
432
433 $dbw = self::getDB( DB_MASTER );
434 $dbw->delete(
435 'bot_passwords',
436 [ 'bp_user' => $centralId ],
437 __METHOD__
438 );
439 return (bool)$dbw->affectedRows();
440 }
441
447 public static function generatePassword( $config ) {
448 return PasswordFactory::generateRandomPasswordString(
449 max( 32, $config->get( 'MinimalPasswordLength' ) ) );
450 }
451
463 public static function canonicalizeLoginData( $username, $password ) {
464 $sep = self::getSeparator();
465 // the strlen check helps minimize the password information obtainable from timing
466 if ( strlen( $password ) >= 32 && strpos( $username, $sep ) !== false ) {
467 // the separator is not valid in new usernames but might appear in legacy ones
468 if ( preg_match( '/^[0-9a-w]{32,}$/', $password ) ) {
469 return [ $username, $password, true ];
470 }
471 } elseif ( strlen( $password ) > 32 && strpos( $password, $sep ) !== false ) {
472 $segments = explode( $sep, $password );
473 $password = array_pop( $segments );
474 $appId = implode( $sep, $segments );
475 if ( preg_match( '/^[0-9a-w]{32,}$/', $password ) ) {
476 return [ $username . $sep . $appId, $password, true ];
477 }
478 }
479 return false;
480 }
481
489 public static function login( $username, $password, WebRequest $request ) {
491
492 if ( !$wgEnableBotPasswords ) {
493 return Status::newFatal( 'botpasswords-disabled' );
494 }
495
496 $manager = MediaWiki\Session\SessionManager::singleton();
497 $provider = $manager->getProvider( BotPasswordSessionProvider::class );
498 if ( !$provider ) {
499 return Status::newFatal( 'botpasswords-no-provider' );
500 }
501
502 // Split name into name+appId
503 $sep = self::getSeparator();
504 if ( strpos( $username, $sep ) === false ) {
505 return Status::newFatal( 'botpasswords-invalid-name', $sep );
506 }
507 list( $name, $appId ) = explode( $sep, $username, 2 );
508
509 // Find the named user
510 $user = User::newFromName( $name );
511 if ( !$user || $user->isAnon() ) {
512 return Status::newFatal( 'nosuchuser', $name );
513 }
514
515 if ( $user->isLocked() ) {
516 return Status::newFatal( 'botpasswords-locked' );
517 }
518
519 // Throttle
520 $throttle = null;
521 if ( !empty( $wgPasswordAttemptThrottle ) ) {
523 'type' => 'botpassword',
524 'cache' => ObjectCache::getLocalClusterInstance(),
525 ] );
526 $result = $throttle->increase( $user->getName(), $request->getIP(), __METHOD__ );
527 if ( $result ) {
528 $msg = wfMessage( 'login-throttled' )->durationParams( $result['wait'] );
529 return Status::newFatal( $msg );
530 }
531 }
532
533 // Get the bot password
534 $bp = self::newFromUser( $user, $appId );
535 if ( !$bp ) {
536 return Status::newFatal( 'botpasswords-not-exist', $name, $appId );
537 }
538
539 // Check restrictions
540 $status = $bp->getRestrictions()->check( $request );
541 if ( !$status->isOK() ) {
542 return Status::newFatal( 'botpasswords-restriction-failed' );
543 }
544
545 // Check the password
546 $passwordObj = $bp->getPassword();
547 if ( $passwordObj instanceof InvalidPassword ) {
548 return Status::newFatal( 'botpasswords-needs-reset', $name, $appId );
549 }
550 if ( !$passwordObj->equals( $password ) ) {
551 return Status::newFatal( 'wrongpassword' );
552 }
553
554 // Ok! Create the session.
555 if ( $throttle ) {
556 $throttle->clear( $user->getName(), $request->getIP() );
557 }
558 return Status::newGood( $provider->newSessionForRequest( $user, $bp, $request ) );
559 }
560}
$wgUserrightsInterwikiDelimiter
Character used as a delimiter when testing for interwiki userrights (In Special:UserRights,...
bool $wgEnableBotPasswords
Whether to enable bot passwords.
$wgPasswordAttemptThrottle
Limit password attempts to X attempts per Y seconds per IP per account.
string bool $wgBotPasswordsDatabase
Database name for the bot_passwords table.
string bool $wgBotPasswordsCluster
Cluster for the bot_passwords table If false, the normal cluster will be used.
Utility class for bot passwords.
static newFromUser(User $user, $appId, $flags=self::READ_NORMAL)
Load a BotPassword from the database.
isInvalid()
Whether the password is currently invalid.
__construct( $row, $isSaved, $flags=self::READ_NORMAL)
const APPID_MAXLENGTH
static invalidateAllPasswordsForUser( $username)
Invalidate all passwords for a user, by name.
getRestrictions()
Get the restrictions.
MWRestrictions $restrictions
static generatePassword( $config)
Returns a (raw, unhashed) random password string.
getPassword()
Get the password.
getUserCentralId()
Get the central user ID.
getGrants()
Get the grants.
string[] $grants
string $token
static getDB( $db)
Get a database connection for the bot passwords database.
getAppId()
Get the app ID.
const RESTRICTIONS_MAXLENGTH
Maximum length of the json representation of restrictions.
static newFromCentralId( $centralId, $appId, $flags=self::READ_NORMAL)
Load a BotPassword from the database.
const GRANTS_MAXLENGTH
Maximum length of the json representation of grants.
static login( $username, $password, WebRequest $request)
Try to log the user in.
static invalidateAllPasswordsForCentralId( $centralId)
Invalidate all passwords for a user, by central ID.
isSaved()
Indicate whether this is known to be saved.
string $appId
static removeAllPasswordsForUser( $username)
Remove all passwords for a user, by name.
static removeAllPasswordsForCentralId( $centralId)
Remove all passwords for a user, by central ID.
static newUnsaved(array $data, $flags=self::READ_NORMAL)
Create an unsaved BotPassword.
getToken()
Get the token.
static getSeparator()
Get the separator for combined user name + app ID.
save( $operation, Password $password=null)
Save the BotPassword to the database.
static canonicalizeLoginData( $username, $password)
There are two ways to login with a bot password: "username@appId", "password" and "username",...
Represents an invalid password hash.
static generateHex( $chars, $forceStrong=false)
Generate a run of (ideally) cryptographically random data and return it in hexadecimal string format.
A class to check request restrictions expressed as a JSON object.
static newFromJson( $json)
toJson( $pretty=false)
Return the restrictions as a JSON string.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Show an error when any operation involving passwords fails to run.
Represents a password hash for use in authentication.
Definition Password.php:66
static getMain()
Get the RequestContext object associated with the main request.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:591
const TOKEN_LENGTH
@const int Number of characters in user_token field.
Definition User.php:57
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database etc For and for historical it also represents a few features of articles that don t involve their such as access rights See also title txt Article Encapsulates access to the page table of the database The object represents a an and maintains state such as flags
Definition design.txt:34
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2806
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1051
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:2006
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:785
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
Definition globals.txt:64
Interface for database access objects.
Advanced database interface for IDatabase handles that include maintenance methods.
const DB_MASTER
Definition defines.php:29