MediaWiki REL1_33
ApiStashEdit.php
Go to the documentation of this file.
1<?php
23use Wikimedia\ScopedCallback;
24
38class ApiStashEdit extends ApiBase {
39 const ERROR_NONE = 'stashed';
40 const ERROR_PARSE = 'error_parse';
41 const ERROR_CACHE = 'error_cache';
42 const ERROR_UNCACHEABLE = 'uncacheable';
43 const ERROR_BUSY = 'busy';
44
46 const MAX_CACHE_TTL = 300; // 5 minutes
48
50
51 public function execute() {
52 $user = $this->getUser();
54
55 if ( $user->isBot() ) { // sanity
56 $this->dieWithError( 'apierror-botsnotsupported' );
57 }
58
59 $cache = ObjectCache::getLocalClusterInstance();
60 $page = $this->getTitleOrPageId( $params );
61 $title = $page->getTitle();
62
63 if ( !ContentHandler::getForModelID( $params['contentmodel'] )
64 ->isSupportedFormat( $params['contentformat'] )
65 ) {
66 $this->dieWithError(
67 [ 'apierror-badformat-generic', $params['contentformat'], $params['contentmodel'] ],
68 'badmodelformat'
69 );
70 }
71
72 $this->requireOnlyOneParameter( $params, 'stashedtexthash', 'text' );
73
74 $text = null;
75 $textHash = null;
76 if ( $params['stashedtexthash'] !== null ) {
77 // Load from cache since the client indicates the text is the same as last stash
78 $textHash = $params['stashedtexthash'];
79 if ( !preg_match( '/^[0-9a-f]{40}$/', $textHash ) ) {
80 $this->dieWithError( 'apierror-stashedit-missingtext', 'missingtext' );
81 }
82 $textKey = $cache->makeKey( 'stashedit', 'text', $textHash );
83 $text = $cache->get( $textKey );
84 if ( !is_string( $text ) ) {
85 $this->dieWithError( 'apierror-stashedit-missingtext', 'missingtext' );
86 }
87 } else {
88 // 'text' was passed. Trim and fix newlines so the key SHA1's
89 // match (see WebRequest::getText())
90 $text = rtrim( str_replace( "\r\n", "\n", $params['text'] ) );
91 $textHash = sha1( $text );
92 }
93
94 $textContent = ContentHandler::makeContent(
95 $text, $title, $params['contentmodel'], $params['contentformat'] );
96
97 $page = WikiPage::factory( $title );
98 if ( $page->exists() ) {
99 // Page exists: get the merged content with the proposed change
100 $baseRev = Revision::newFromPageId( $page->getId(), $params['baserevid'] );
101 if ( !$baseRev ) {
102 $this->dieWithError( [ 'apierror-nosuchrevid', $params['baserevid'] ] );
103 }
104 $currentRev = $page->getRevision();
105 if ( !$currentRev ) {
106 $this->dieWithError( [ 'apierror-missingrev-pageid', $page->getId() ], 'missingrev' );
107 }
108 // Merge in the new version of the section to get the proposed version
109 $editContent = $page->replaceSectionAtRev(
110 $params['section'],
111 $textContent,
112 $params['sectiontitle'],
113 $baseRev->getId()
114 );
115 if ( !$editContent ) {
116 $this->dieWithError( 'apierror-sectionreplacefailed', 'replacefailed' );
117 }
118 if ( $currentRev->getId() == $baseRev->getId() ) {
119 // Base revision was still the latest; nothing to merge
120 $content = $editContent;
121 } else {
122 // Merge the edit into the current version
123 $baseContent = $baseRev->getContent();
124 $currentContent = $currentRev->getContent();
125 if ( !$baseContent || !$currentContent ) {
126 $this->dieWithError( [ 'apierror-missingcontent-pageid', $page->getId() ], 'missingrev' );
127 }
128 $handler = ContentHandler::getForModelID( $baseContent->getModel() );
129 $content = $handler->merge3( $baseContent, $editContent, $currentContent );
130 }
131 } else {
132 // New pages: use the user-provided content model
133 $content = $textContent;
134 }
135
136 if ( !$content ) { // merge3() failed
137 $this->getResult()->addValue( null,
138 $this->getModuleName(), [ 'status' => 'editconflict' ] );
139 return;
140 }
141
142 // The user will abort the AJAX request by pressing "save", so ignore that
143 ignore_user_abort( true );
144
145 if ( $user->pingLimiter( 'stashedit' ) ) {
146 $status = 'ratelimited';
147 } else {
148 $status = self::parseAndStash( $page, $content, $user, $params['summary'] );
149 $textKey = $cache->makeKey( 'stashedit', 'text', $textHash );
150 $cache->set( $textKey, $text, self::MAX_CACHE_TTL );
151 }
152
153 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
154 $stats->increment( "editstash.cache_stores.$status" );
155
156 $ret = [ 'status' => $status ];
157 // If we were rate-limited, we still return the pre-existing valid hash if one was passed
158 if ( $status !== 'ratelimited' || $params['stashedtexthash'] !== null ) {
159 $ret['texthash'] = $textHash;
160 }
161
162 $this->getResult()->addValue( null, $this->getModuleName(), $ret );
163 }
164
173 public static function parseAndStash( WikiPage $page, Content $content, User $user, $summary ) {
174 $logger = LoggerFactory::getInstance( 'StashEdit' );
175
176 $title = $page->getTitle();
177 $key = self::getStashKey( $title, self::getContentHash( $content ), $user );
178 $fname = __METHOD__;
179
180 // Use the master DB to allow for fast blocking locks on the "save path" where this
181 // value might actually be used to complete a page edit. If the edit submission request
182 // happens before this edit stash requests finishes, then the submission will block until
183 // the stash request finishes parsing. For the lock acquisition below, there is not much
184 // need to duplicate parsing of the same content/user/summary bundle, so try to avoid
185 // blocking at all here.
186 $dbw = wfGetDB( DB_MASTER );
187 if ( !$dbw->lock( $key, $fname, 0 ) ) {
188 // De-duplicate requests on the same key
189 return self::ERROR_BUSY;
190 }
192 $unlocker = new ScopedCallback( function () use ( $dbw, $key, $fname ) {
193 $dbw->unlock( $key, $fname );
194 } );
195
196 $cutoffTime = time() - self::PRESUME_FRESH_TTL_SEC;
197
198 // Reuse any freshly build matching edit stash cache
199 $editInfo = self::getStashValue( $key );
200 if ( $editInfo && wfTimestamp( TS_UNIX, $editInfo->timestamp ) >= $cutoffTime ) {
201 $alreadyCached = true;
202 } else {
203 $format = $content->getDefaultFormat();
204 $editInfo = $page->prepareContentForEdit( $content, null, $user, $format, false );
205 $alreadyCached = false;
206 }
207
208 if ( $editInfo && $editInfo->output ) {
209 // Let extensions add ParserOutput metadata or warm other caches
210 Hooks::run( 'ParserOutputStashForEdit',
211 [ $page, $content, $editInfo->output, $summary, $user ] );
212
213 $titleStr = (string)$title;
214 if ( $alreadyCached ) {
215 $logger->debug( "Already cached parser output for key '{cachekey}' ('{title}').",
216 [ 'cachekey' => $key, 'title' => $titleStr ] );
217 return self::ERROR_NONE;
218 }
219
220 $code = self::storeStashValue(
221 $key,
222 $editInfo->pstContent,
223 $editInfo->output,
224 $editInfo->timestamp,
225 $user
226 );
227
228 if ( $code === true ) {
229 $logger->debug( "Cached parser output for key '{cachekey}' ('{title}').",
230 [ 'cachekey' => $key, 'title' => $titleStr ] );
231 return self::ERROR_NONE;
232 } elseif ( $code === 'uncacheable' ) {
233 $logger->info(
234 "Uncacheable parser output for key '{cachekey}' ('{title}') [{code}].",
235 [ 'cachekey' => $key, 'title' => $titleStr, 'code' => $code ] );
236 return self::ERROR_UNCACHEABLE;
237 } else {
238 $logger->error( "Failed to cache parser output for key '{cachekey}' ('{title}').",
239 [ 'cachekey' => $key, 'title' => $titleStr, 'code' => $code ] );
240 return self::ERROR_CACHE;
241 }
242 }
243
244 return self::ERROR_PARSE;
245 }
246
264 public static function checkCache( Title $title, Content $content, User $user ) {
265 if ( $user->isBot() ) {
266 return false; // bots never stash - don't pollute stats
267 }
268
269 $logger = LoggerFactory::getInstance( 'StashEdit' );
270 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
271
272 $key = self::getStashKey( $title, self::getContentHash( $content ), $user );
273 $editInfo = self::getStashValue( $key );
274 if ( !is_object( $editInfo ) ) {
275 $start = microtime( true );
276 // We ignore user aborts and keep parsing. Block on any prior parsing
277 // so as to use its results and make use of the time spent parsing.
278 // Skip this logic if there no master connection in case this method
279 // is called on an HTTP GET request for some reason.
280 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
281 $dbw = $lb->getAnyOpenConnection( $lb->getWriterIndex() );
282 if ( $dbw && $dbw->lock( $key, __METHOD__, 30 ) ) {
283 $editInfo = self::getStashValue( $key );
284 $dbw->unlock( $key, __METHOD__ );
285 }
286
287 $timeMs = 1000 * max( 0, microtime( true ) - $start );
288 $stats->timing( 'editstash.lock_wait_time', $timeMs );
289 }
290
291 if ( !is_object( $editInfo ) || !$editInfo->output ) {
292 $stats->increment( 'editstash.cache_misses.no_stash' );
293 $logger->debug( "Empty cache for key '$key' ('$title'); user '{$user->getName()}'." );
294 return false;
295 }
296
297 $age = time() - wfTimestamp( TS_UNIX, $editInfo->output->getCacheTime() );
298 if ( $age <= self::PRESUME_FRESH_TTL_SEC ) {
299 // Assume nothing changed in this time
300 $stats->increment( 'editstash.cache_hits.presumed_fresh' );
301 $logger->debug( "Timestamp-based cache hit for key '$key' (age: $age sec)." );
302 } elseif ( isset( $editInfo->edits ) && $editInfo->edits === $user->getEditCount() ) {
303 // Logged-in user made no local upload/template edits in the meantime
304 $stats->increment( 'editstash.cache_hits.presumed_fresh' );
305 $logger->debug( "Edit count based cache hit for key '$key' (age: $age sec)." );
306 } elseif ( $user->isAnon()
307 && self::lastEditTime( $user ) < $editInfo->output->getCacheTime()
308 ) {
309 // Logged-out user made no local upload/template edits in the meantime
310 $stats->increment( 'editstash.cache_hits.presumed_fresh' );
311 $logger->debug( "Edit check based cache hit for key '$key' (age: $age sec)." );
312 } else {
313 // User may have changed included content
314 $editInfo = false;
315 }
316
317 if ( !$editInfo ) {
318 $stats->increment( 'editstash.cache_misses.proven_stale' );
319 $logger->info( "Stale cache for key '$key'; old key with outside edits. (age: $age sec)" );
320 } elseif ( $editInfo->output->getFlag( 'vary-revision' ) ) {
321 // This can be used for the initial parse, e.g. for filters or doEditContent(),
322 // but a second parse will be triggered in doEditUpdates(). This is not optimal.
323 $logger->info( "Cache for key '$key' ('$title') has vary_revision." );
324 } elseif ( $editInfo->output->getFlag( 'vary-revision-id' ) ) {
325 // Similar to the above if we didn't guess the ID correctly.
326 $logger->info( "Cache for key '$key' ('$title') has vary_revision_id." );
327 }
328
329 return $editInfo;
330 }
331
336 private static function lastEditTime( User $user ) {
337 $db = wfGetDB( DB_REPLICA );
338 $actorQuery = ActorMigration::newMigration()->getWhere( $db, 'rc_user', $user, false );
339 $time = $db->selectField(
340 [ 'recentchanges' ] + $actorQuery['tables'],
341 'MAX(rc_timestamp)',
342 [ $actorQuery['conds'] ],
343 __METHOD__,
344 [],
345 $actorQuery['joins']
346 );
347
348 return wfTimestampOrNull( TS_MW, $time );
349 }
350
357 private static function getContentHash( Content $content ) {
358 return sha1( implode( "\n", [
359 $content->getModel(),
360 $content->getDefaultFormat(),
361 $content->serialize( $content->getDefaultFormat() )
362 ] ) );
363 }
364
377 private static function getStashKey( Title $title, $contentHash, User $user ) {
378 return ObjectCache::getLocalClusterInstance()->makeKey(
379 'stashed-edit-info',
380 md5( $title->getPrefixedDBkey() ),
381 // Account for the edit model/text
382 $contentHash,
383 // Account for user name related variables like signatures
384 md5( $user->getId() . "\n" . $user->getName() )
385 );
386 }
387
392 private static function getStashParserOutputKey( $uuid ) {
393 return ObjectCache::getLocalClusterInstance()->makeKey( 'stashed-edit-output', $uuid );
394 }
395
400 private static function getStashValue( $key ) {
401 $cache = ObjectCache::getLocalClusterInstance();
402
403 $stashInfo = $cache->get( $key );
404 if ( !is_object( $stashInfo ) ) {
405 return false;
406 }
407
408 $parserOutputKey = self::getStashParserOutputKey( $stashInfo->outputID );
409 $parserOutput = $cache->get( $parserOutputKey );
410 if ( $parserOutput instanceof ParserOutput ) {
411 $stashInfo->output = $parserOutput;
412
413 return $stashInfo;
414 }
415
416 return false;
417 }
418
431 private static function storeStashValue(
432 $key, Content $pstContent, ParserOutput $parserOutput, $timestamp, User $user
433 ) {
434 // If an item is renewed, mind the cache TTL determined by config and parser functions.
435 // Put an upper limit on the TTL for sanity to avoid extreme template/file staleness.
436 $age = time() - wfTimestamp( TS_UNIX, $parserOutput->getCacheTime() );
437 $ttl = min( $parserOutput->getCacheExpiry() - $age, self::MAX_CACHE_TTL );
438 // Avoid extremely stale user signature timestamps (T84843)
439 if ( $parserOutput->getFlag( 'user-signature' ) ) {
440 $ttl = min( $ttl, self::MAX_SIGNATURE_TTL );
441 }
442
443 if ( $ttl <= 0 ) {
444 return 'uncacheable'; // low TTL due to a tag, magic word, or signature?
445 }
446
447 // Store what is actually needed and split the output into another key (T204742)
448 $parseroutputID = md5( $key );
449 $stashInfo = (object)[
450 'pstContent' => $pstContent,
451 'outputID' => $parseroutputID,
452 'timestamp' => $timestamp,
453 'edits' => $user->getEditCount()
454 ];
455
456 $cache = ObjectCache::getLocalClusterInstance();
457 $ok = $cache->set( $key, $stashInfo, $ttl );
458 if ( $ok ) {
459 $ok = $cache->set(
460 self::getStashParserOutputKey( $parseroutputID ),
461 $parserOutput,
462 $ttl
463 );
464 }
465
466 if ( $ok ) {
467 // These blobs can waste slots in low cardinality memcached slabs
468 self::pruneExcessStashedEntries( $cache, $user, $key );
469 }
470
471 return $ok ? true : 'store_error';
472 }
473
479 private static function pruneExcessStashedEntries( BagOStuff $cache, User $user, $newKey ) {
480 $key = $cache->makeKey( 'stash-edit-recent', sha1( $user->getName() ) );
481
482 $keyList = $cache->get( $key ) ?: [];
483 if ( count( $keyList ) >= self::MAX_CACHE_RECENT ) {
484 $oldestKey = array_shift( $keyList );
485 $cache->delete( $oldestKey );
486 }
487
488 $keyList[] = $newKey;
489 $cache->set( $key, $keyList, 2 * self::MAX_CACHE_TTL );
490 }
491
492 public function getAllowedParams() {
493 return [
494 'title' => [
495 ApiBase::PARAM_TYPE => 'string',
497 ],
498 'section' => [
499 ApiBase::PARAM_TYPE => 'string',
500 ],
501 'sectiontitle' => [
502 ApiBase::PARAM_TYPE => 'string'
503 ],
504 'text' => [
505 ApiBase::PARAM_TYPE => 'text',
507 ],
508 'stashedtexthash' => [
509 ApiBase::PARAM_TYPE => 'string',
511 ],
512 'summary' => [
513 ApiBase::PARAM_TYPE => 'string',
514 ],
515 'contentmodel' => [
516 ApiBase::PARAM_TYPE => ContentHandler::getContentModels(),
518 ],
519 'contentformat' => [
520 ApiBase::PARAM_TYPE => ContentHandler::getAllContentFormats(),
522 ],
523 'baserevid' => [
524 ApiBase::PARAM_TYPE => 'integer',
526 ]
527 ];
528 }
529
530 public function needsToken() {
531 return 'csrf';
532 }
533
534 public function mustBePosted() {
535 return true;
536 }
537
538 public function isWriteMode() {
539 return true;
540 }
541
542 public function isInternal() {
543 return true;
544 }
545}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition Setup.php:123
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:37
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition ApiBase.php:111
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1990
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:48
getResult()
Get the result object.
Definition ApiBase.php:632
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:743
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:512
getTitleOrPageId( $params, $load=false)
Get a WikiPage object from a title or pageid param, if possible.
Definition ApiBase.php:1016
requireOnlyOneParameter( $params, $required)
Die if none or more than one of a certain set of parameters is set and not false.
Definition ApiBase.php:875
Prepare an edit in shared cache so that it can be reused on edit.
const PRESUME_FRESH_TTL_SEC
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
const ERROR_UNCACHEABLE
const MAX_SIGNATURE_TTL
static getStashKey(Title $title, $contentHash, User $user)
Get the temporary prepared edit stash key for a user.
static parseAndStash(WikiPage $page, Content $content, User $user, $summary)
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
static lastEditTime(User $user)
static getStashParserOutputKey( $uuid)
isInternal()
Indicates whether this module is "internal" Internal API modules are not (yet) intended for 3rd party...
static getContentHash(Content $content)
Get hash of the content, factoring in model/format.
const MAX_CACHE_RECENT
needsToken()
Returns the token type this module requires in order to execute.
static getStashValue( $key)
const MAX_CACHE_TTL
isWriteMode()
Indicates whether this module requires write mode.
static checkCache(Title $title, Content $content, User $user)
Check that a prepared edit is in cache and still up-to-date.
mustBePosted()
Indicates whether this module must be called with a POST request.
static pruneExcessStashedEntries(BagOStuff $cache, User $user, $newKey)
static storeStashValue( $key, Content $pstContent, ParserOutput $parserOutput, $timestamp, User $user)
Build a value to store in memcached based on the PST content and parser output.
Class representing a cache/ephemeral data store.
Definition BagOStuff.php:58
getCacheExpiry()
Returns the number of seconds after which this object should expire.
PSR-3 logger instance factory.
MediaWikiServices is the service locator for the application scope of MediaWiki.
static newFromPageId( $pageId, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given page ID.
Definition Revision.php:156
Represents a title within MediaWiki.
Definition Title.php:40
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
Class representing a MediaWiki article and history.
Definition WikiPage.php:45
prepareContentForEdit(Content $content, $revision=null, User $user=null, $serialFormat=null, $useCache=true)
Prepare content which is about to be saved.
getTitle()
Get the title object of the article.
Definition WikiPage.php:294
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 $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:62
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition hooks.txt:1802
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition hooks.txt:181
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition hooks.txt:894
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. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header '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:1266
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:955
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition hooks.txt:783
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:856
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:2004
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 & $ret
Definition hooks.txt:2003
return true to allow those checks to and false if checking is done & $user
Definition hooks.txt:1510
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Base interface for content objects.
Definition Content.php:34
$cache
Definition mcc.php:33
$content
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26
$params