MediaWiki REL1_30
LocalRepo.php
Go to the documentation of this file.
1<?php
28
35class LocalRepo extends FileRepo {
37 protected $fileFactory = [ 'LocalFile', 'newFromTitle' ];
39 protected $fileFactoryKey = [ 'LocalFile', 'newFromKey' ];
41 protected $fileFromRowFactory = [ 'LocalFile', 'newFromRow' ];
43 protected $oldFileFromRowFactory = [ 'OldLocalFile', 'newFromRow' ];
45 protected $oldFileFactory = [ 'OldLocalFile', 'newFromTitle' ];
47 protected $oldFileFactoryKey = [ 'OldLocalFile', 'newFromKey' ];
48
49 function __construct( array $info = null ) {
50 parent::__construct( $info );
51
52 $this->hasSha1Storage = isset( $info['storageLayout'] )
53 && $info['storageLayout'] === 'sha1';
54
55 if ( $this->hasSha1Storage() ) {
56 $this->backend = new FileBackendDBRepoWrapper( [
57 'backend' => $this->backend,
58 'repoName' => $this->name,
59 'dbHandleFactory' => $this->getDBFactory()
60 ] );
61 }
62 }
63
69 function newFileFromRow( $row ) {
70 if ( isset( $row->img_name ) ) {
71 return call_user_func( $this->fileFromRowFactory, $row, $this );
72 } elseif ( isset( $row->oi_name ) ) {
73 return call_user_func( $this->oldFileFromRowFactory, $row, $this );
74 } else {
75 throw new MWException( __METHOD__ . ': invalid row' );
76 }
77 }
78
84 function newFromArchiveName( $title, $archiveName ) {
85 return OldLocalFile::newFromArchiveName( $title, $this, $archiveName );
86 }
87
98 function cleanupDeletedBatch( array $storageKeys ) {
99 if ( $this->hasSha1Storage() ) {
100 wfDebug( __METHOD__ . ": skipped because storage uses sha1 paths\n" );
101 return Status::newGood();
102 }
103
104 $backend = $this->backend; // convenience
105 $root = $this->getZonePath( 'deleted' );
106 $dbw = $this->getMasterDB();
107 $status = $this->newGood();
108 $storageKeys = array_unique( $storageKeys );
109 foreach ( $storageKeys as $key ) {
110 $hashPath = $this->getDeletedHashPath( $key );
111 $path = "$root/$hashPath$key";
112 $dbw->startAtomic( __METHOD__ );
113 // Check for usage in deleted/hidden files and preemptively
114 // lock the key to avoid any future use until we are finished.
115 $deleted = $this->deletedFileHasKey( $key, 'lock' );
116 $hidden = $this->hiddenFileHasKey( $key, 'lock' );
117 if ( !$deleted && !$hidden ) { // not in use now
118 wfDebug( __METHOD__ . ": deleting $key\n" );
119 $op = [ 'op' => 'delete', 'src' => $path ];
120 if ( !$backend->doOperation( $op )->isOK() ) {
121 $status->error( 'undelete-cleanup-error', $path );
122 $status->failCount++;
123 }
124 } else {
125 wfDebug( __METHOD__ . ": $key still in use\n" );
126 $status->successCount++;
127 }
128 $dbw->endAtomic( __METHOD__ );
129 }
130
131 return $status;
132 }
133
141 protected function deletedFileHasKey( $key, $lock = null ) {
142 $options = ( $lock === 'lock' ) ? [ 'FOR UPDATE' ] : [];
143
144 $dbw = $this->getMasterDB();
145
146 return (bool)$dbw->selectField( 'filearchive', '1',
147 [ 'fa_storage_group' => 'deleted', 'fa_storage_key' => $key ],
148 __METHOD__, $options
149 );
150 }
151
159 protected function hiddenFileHasKey( $key, $lock = null ) {
160 $options = ( $lock === 'lock' ) ? [ 'FOR UPDATE' ] : [];
161
162 $sha1 = self::getHashFromKey( $key );
163 $ext = File::normalizeExtension( substr( $key, strcspn( $key, '.' ) + 1 ) );
164
165 $dbw = $this->getMasterDB();
166
167 return (bool)$dbw->selectField( 'oldimage', '1',
168 [ 'oi_sha1' => $sha1,
169 'oi_archive_name ' . $dbw->buildLike( $dbw->anyString(), ".$ext" ),
170 $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE ],
171 __METHOD__, $options
172 );
173 }
174
181 public static function getHashFromKey( $key ) {
182 return strtok( $key, '.' );
183 }
184
191 function checkRedirect( Title $title ) {
192 $title = File::normalizeTitle( $title, 'exception' );
193
194 $memcKey = $this->getSharedCacheKey( 'image_redirect', md5( $title->getDBkey() ) );
195 if ( $memcKey === false ) {
196 $memcKey = $this->getLocalCacheKey( 'image_redirect', md5( $title->getDBkey() ) );
197 $expiry = 300; // no invalidation, 5 minutes
198 } else {
199 $expiry = 86400; // has invalidation, 1 day
200 }
201
202 $method = __METHOD__;
203 $redirDbKey = ObjectCache::getMainWANInstance()->getWithSetCallback(
204 $memcKey,
205 $expiry,
206 function ( $oldValue, &$ttl, array &$setOpts ) use ( $method, $title ) {
207 $dbr = $this->getReplicaDB(); // possibly remote DB
208
209 $setOpts += Database::getCacheSetOptions( $dbr );
210
211 if ( $title instanceof Title ) {
212 $row = $dbr->selectRow(
213 [ 'page', 'redirect' ],
214 [ 'rd_namespace', 'rd_title' ],
215 [
216 'page_namespace' => $title->getNamespace(),
217 'page_title' => $title->getDBkey(),
218 'rd_from = page_id'
219 ],
220 $method
221 );
222 } else {
223 $row = false;
224 }
225
226 return ( $row && $row->rd_namespace == NS_FILE )
227 ? Title::makeTitle( $row->rd_namespace, $row->rd_title )->getDBkey()
228 : ''; // negative cache
229 },
230 [ 'pcTTL' => WANObjectCache::TTL_PROC_LONG ]
231 );
232
233 // @note: also checks " " for b/c
234 if ( $redirDbKey !== ' ' && strval( $redirDbKey ) !== '' ) {
235 // Page is a redirect to another file
236 return Title::newFromText( $redirDbKey, NS_FILE );
237 }
238
239 return false; // no redirect
240 }
241
242 public function findFiles( array $items, $flags = 0 ) {
243 $finalFiles = []; // map of (DB key => corresponding File) for matches
244
245 $searchSet = []; // map of (normalized DB key => search params)
246 foreach ( $items as $item ) {
247 if ( is_array( $item ) ) {
248 $title = File::normalizeTitle( $item['title'] );
249 if ( $title ) {
250 $searchSet[$title->getDBkey()] = $item;
251 }
252 } else {
253 $title = File::normalizeTitle( $item );
254 if ( $title ) {
255 $searchSet[$title->getDBkey()] = [];
256 }
257 }
258 }
259
260 $fileMatchesSearch = function ( File $file, array $search ) {
261 // Note: file name comparison done elsewhere (to handle redirects)
262 $user = ( !empty( $search['private'] ) && $search['private'] instanceof User )
263 ? $search['private']
264 : null;
265
266 return (
267 $file->exists() &&
268 (
269 ( empty( $search['time'] ) && !$file->isOld() ) ||
270 ( !empty( $search['time'] ) && $search['time'] === $file->getTimestamp() )
271 ) &&
272 ( !empty( $search['private'] ) || !$file->isDeleted( File::DELETED_FILE ) ) &&
273 $file->userCan( File::DELETED_FILE, $user )
274 );
275 };
276
277 $applyMatchingFiles = function ( ResultWrapper $res, &$searchSet, &$finalFiles )
278 use ( $fileMatchesSearch, $flags )
279 {
280 global $wgContLang;
281 $info = $this->getInfo();
282 foreach ( $res as $row ) {
283 $file = $this->newFileFromRow( $row );
284 // There must have been a search for this DB key, but this has to handle the
285 // cases were title capitalization is different on the client and repo wikis.
286 $dbKeysLook = [ strtr( $file->getName(), ' ', '_' ) ];
287 if ( !empty( $info['initialCapital'] ) ) {
288 // Search keys for "hi.png" and "Hi.png" should use the "Hi.png file"
289 $dbKeysLook[] = $wgContLang->lcfirst( $file->getName() );
290 }
291 foreach ( $dbKeysLook as $dbKey ) {
292 if ( isset( $searchSet[$dbKey] )
293 && $fileMatchesSearch( $file, $searchSet[$dbKey] )
294 ) {
295 $finalFiles[$dbKey] = ( $flags & FileRepo::NAME_AND_TIME_ONLY )
296 ? [ 'title' => $dbKey, 'timestamp' => $file->getTimestamp() ]
297 : $file;
298 unset( $searchSet[$dbKey] );
299 }
300 }
301 }
302 };
303
304 $dbr = $this->getReplicaDB();
305
306 // Query image table
307 $imgNames = [];
308 foreach ( array_keys( $searchSet ) as $dbKey ) {
309 $imgNames[] = $this->getNameFromTitle( File::normalizeTitle( $dbKey ) );
310 }
311
312 if ( count( $imgNames ) ) {
313 $res = $dbr->select( 'image',
314 LocalFile::selectFields(), [ 'img_name' => $imgNames ], __METHOD__ );
315 $applyMatchingFiles( $res, $searchSet, $finalFiles );
316 }
317
318 // Query old image table
319 $oiConds = []; // WHERE clause array for each file
320 foreach ( $searchSet as $dbKey => $search ) {
321 if ( isset( $search['time'] ) ) {
322 $oiConds[] = $dbr->makeList(
323 [
324 'oi_name' => $this->getNameFromTitle( File::normalizeTitle( $dbKey ) ),
325 'oi_timestamp' => $dbr->timestamp( $search['time'] )
326 ],
328 );
329 }
330 }
331
332 if ( count( $oiConds ) ) {
333 $res = $dbr->select( 'oldimage',
334 OldLocalFile::selectFields(), $dbr->makeList( $oiConds, LIST_OR ), __METHOD__ );
335 $applyMatchingFiles( $res, $searchSet, $finalFiles );
336 }
337
338 // Check for redirects...
339 foreach ( $searchSet as $dbKey => $search ) {
340 if ( !empty( $search['ignoreRedirect'] ) ) {
341 continue;
342 }
343
344 $title = File::normalizeTitle( $dbKey );
345 $redir = $this->checkRedirect( $title ); // hopefully hits memcached
346
347 if ( $redir && $redir->getNamespace() == NS_FILE ) {
348 $file = $this->newFile( $redir );
349 if ( $file && $fileMatchesSearch( $file, $search ) ) {
350 $file->redirectedFrom( $title->getDBkey() );
352 $finalFiles[$dbKey] = [
353 'title' => $file->getTitle()->getDBkey(),
354 'timestamp' => $file->getTimestamp()
355 ];
356 } else {
357 $finalFiles[$dbKey] = $file;
358 }
359 }
360 }
361 }
362
363 return $finalFiles;
364 }
365
373 function findBySha1( $hash ) {
374 $dbr = $this->getReplicaDB();
375 $res = $dbr->select(
376 'image',
378 [ 'img_sha1' => $hash ],
379 __METHOD__,
380 [ 'ORDER BY' => 'img_name' ]
381 );
382
383 $result = [];
384 foreach ( $res as $row ) {
385 $result[] = $this->newFileFromRow( $row );
386 }
387 $res->free();
388
389 return $result;
390 }
391
401 function findBySha1s( array $hashes ) {
402 if ( !count( $hashes ) ) {
403 return []; // empty parameter
404 }
405
406 $dbr = $this->getReplicaDB();
407 $res = $dbr->select(
408 'image',
410 [ 'img_sha1' => $hashes ],
411 __METHOD__,
412 [ 'ORDER BY' => 'img_name' ]
413 );
414
415 $result = [];
416 foreach ( $res as $row ) {
417 $file = $this->newFileFromRow( $row );
418 $result[$file->getSha1()][] = $file;
419 }
420 $res->free();
421
422 return $result;
423 }
424
432 public function findFilesByPrefix( $prefix, $limit ) {
433 $selectOptions = [ 'ORDER BY' => 'img_name', 'LIMIT' => intval( $limit ) ];
434
435 // Query database
436 $dbr = $this->getReplicaDB();
437 $res = $dbr->select(
438 'image',
440 'img_name ' . $dbr->buildLike( $prefix, $dbr->anyString() ),
441 __METHOD__,
442 $selectOptions
443 );
444
445 // Build file objects
446 $files = [];
447 foreach ( $res as $row ) {
448 $files[] = $this->newFileFromRow( $row );
449 }
450
451 return $files;
452 }
453
458 function getReplicaDB() {
459 return wfGetDB( DB_REPLICA );
460 }
461
468 function getSlaveDB() {
469 return $this->getReplicaDB();
470 }
471
476 function getMasterDB() {
477 return wfGetDB( DB_MASTER );
478 }
479
484 protected function getDBFactory() {
485 return function ( $index ) {
486 return wfGetDB( $index );
487 };
488 }
489
497 function getSharedCacheKey( /*...*/ ) {
498 $args = func_get_args();
499
500 return call_user_func_array( 'wfMemcKey', $args );
501 }
502
509 function invalidateImageRedirect( Title $title ) {
510 $key = $this->getSharedCacheKey( 'image_redirect', md5( $title->getDBkey() ) );
511 if ( $key ) {
512 $this->getMasterDB()->onTransactionPreCommitOrIdle(
513 function () use ( $key ) {
514 ObjectCache::getMainWANInstance()->delete( $key );
515 },
516 __METHOD__
517 );
518 }
519 }
520
527 function getInfo() {
528 global $wgFavicon;
529
530 return array_merge( parent::getInfo(), [
531 'favicon' => wfExpandUrl( $wgFavicon ),
532 ] );
533 }
534
535 public function store( $srcPath, $dstZone, $dstRel, $flags = 0 ) {
536 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
537 }
538
539 public function storeBatch( array $triplets, $flags = 0 ) {
540 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
541 }
542
543 public function cleanupBatch( array $files, $flags = 0 ) {
544 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
545 }
546
547 public function publish(
548 $src,
549 $dstRel,
550 $archiveRel,
551 $flags = 0,
552 array $options = []
553 ) {
554 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
555 }
556
557 public function publishBatch( array $ntuples, $flags = 0 ) {
558 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
559 }
560
561 public function delete( $srcRel, $archiveRel ) {
562 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
563 }
564
565 public function deleteBatch( array $sourceDestPairs ) {
566 return $this->skipWriteOperationIfSha1( __FUNCTION__, func_get_args() );
567 }
568
576 protected function skipWriteOperationIfSha1( $function, array $args ) {
577 $this->assertWritableRepo(); // fail out if read-only
578
579 if ( $this->hasSha1Storage() ) {
580 wfDebug( __METHOD__ . ": skipped because storage uses sha1 paths\n" );
581 return Status::newGood();
582 } else {
583 return call_user_func_array( 'parent::' . $function, $args );
584 }
585 }
586}
$wgFavicon
The URL path of the shortcut icon.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
if( $line===false) $args
Definition cdb.php:63
Proxy backend that manages file layout rewriting for FileRepo.
doOperation(array $op, array $opts=[])
Same as doOperations() except it takes a single operation.
Base class for file repositories.
Definition FileRepo.php:37
getLocalCacheKey()
Get a key for this repo in the local cache domain.
assertWritableRepo()
Throw an exception if this repo is read-only by design.
newGood( $value=null)
Create a new good result.
const NAME_AND_TIME_ONLY
Definition FileRepo.php:43
hasSha1Storage()
Returns whether or not storage is SHA-1 based.
FileBackend $backend
Definition FileRepo.php:59
getZonePath( $zone)
Get the storage path corresponding to one of the zones.
Definition FileRepo.php:363
getDeletedHashPath( $key)
Get a relative path for a deletion archive key, e.g.
newFile( $title, $time=false)
Create a new File object from the local repository.
Definition FileRepo.php:387
getNameFromTitle(Title $title)
Get the name of a file from its title object.
Definition FileRepo.php:629
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:51
static normalizeTitle( $title, $exception=false)
Given a string or Title object return either a valid Title object with namespace NS_FILE or null.
Definition File.php:184
const DELETED_FILE
Definition File.php:53
static normalizeExtension( $extension)
Normalize a file extension to the common form, making it lowercase and checking some synonyms,...
Definition File.php:224
static selectFields()
Fields in the image table.
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Definition LocalRepo.php:35
skipWriteOperationIfSha1( $function, array $args)
Skips the write operation if storage is sha1-based, executes it normally otherwise.
getDBFactory()
Get a callback to get a DB handle given an index (DB_REPLICA/DB_MASTER)
getInfo()
Return information about the repository.
newFileFromRow( $row)
Definition LocalRepo.php:69
deletedFileHasKey( $key, $lock=null)
Check if a deleted (filearchive) file has this sha1 key.
callable $oldFileFactoryKey
Definition LocalRepo.php:47
callable $oldFileFactory
Definition LocalRepo.php:45
cleanupBatch(array $files, $flags=0)
Deletes a batch of files.
publishBatch(array $ntuples, $flags=0)
Publish a batch of files.
findFiles(array $items, $flags=0)
Find many files at once.
findFilesByPrefix( $prefix, $limit)
Return an array of files where the name starts with $prefix.
findBySha1s(array $hashes)
Get an array of arrays or iterators of file objects for files that have the given SHA-1 content hashe...
callable $oldFileFromRowFactory
Definition LocalRepo.php:43
cleanupDeletedBatch(array $storageKeys)
Delete files in the deleted directory if they are not referenced in the filearchive table.
Definition LocalRepo.php:98
invalidateImageRedirect(Title $title)
Invalidates image redirect cache related to that image.
checkRedirect(Title $title)
Checks if there is a redirect named as $title.
callable $fileFactoryKey
Definition LocalRepo.php:39
getReplicaDB()
Get a connection to the replica DB.
store( $srcPath, $dstZone, $dstRel, $flags=0)
Store a file to a given destination.
publish( $src, $dstRel, $archiveRel, $flags=0, array $options=[])
Copy or move a file either from a storage path, virtual URL, or file system path, into this repositor...
getMasterDB()
Get a connection to the master DB.
getSlaveDB()
Alias for getReplicaDB()
storeBatch(array $triplets, $flags=0)
Store a batch of files.
callable $fileFromRowFactory
Definition LocalRepo.php:41
__construct(array $info=null)
Definition LocalRepo.php:49
deleteBatch(array $sourceDestPairs)
Move a group of files to the deletion archive.
hiddenFileHasKey( $key, $lock=null)
Check if a hidden (revision delete) file has this sha1 key.
getSharedCacheKey()
Get a key on the primary cache for this repository.
static getHashFromKey( $key)
Gets the SHA1 hash from a storage key.
newFromArchiveName( $title, $archiveName)
Definition LocalRepo.php:84
callable $fileFactory
Definition LocalRepo.php:37
findBySha1( $hash)
Get an array or iterator of file objects for files that have a given SHA-1 content hash.
MediaWiki exception.
static newFromArchiveName( $title, $repo, $archiveName)
static selectFields()
Fields in the oldimage table.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:51
Relational database abstraction object.
Definition Database.php:45
Result wrapper for grabbing data queried from an IDatabase object.
if(! $regexes) $dbr
Definition cleanup.php:94
$res
Definition database.txt:21
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
namespace being checked & $result
Definition hooks.txt:2293
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:1971
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition hooks.txt:2805
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). '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:1049
const NS_FILE
Definition Defines.php:71
const LIST_OR
Definition Defines.php:47
const LIST_AND
Definition Defines.php:44
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:40
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26