160 $title = Title::makeTitle(
NS_FILE, $row->img_name );
162 $file->loadFromRow( $row );
179 $conds = [
'img_sha1' =>
$sha1 ];
185 $row =
$dbr->selectRow(
186 $fileQuery[
'tables'], $fileQuery[
'fields'], $conds, __METHOD__, [], $fileQuery[
'joins']
209 throw new BadMethodCallException(
210 'Cannot use ' . __METHOD__
211 .
' when $wgActorTableSchemaMigrationStage has SCHEMA_COMPAT_READ_NEW'
227 'img_actor' =>
'NULL',
230 ] + MediaWikiServices::getInstance()->getCommentStore()->getFields(
'img_description' );
245 $commentQuery = MediaWikiServices::getInstance()->getCommentStore()->getJoin(
'img_description' );
246 $actorQuery = ActorMigration::newMigration()->getJoin(
'img_user' );
248 'tables' => [
'image' ] + $commentQuery[
'tables'] + $actorQuery[
'tables'],
261 ] + $commentQuery[
'fields'] + $actorQuery[
'fields'],
262 'joins' => $commentQuery[
'joins'] + $actorQuery[
'joins'],
265 if ( in_array(
'omit-nonlazy',
$options,
true ) ) {
269 if ( !in_array(
'omit-lazy',
$options,
true ) ) {
271 $ret[
'fields'][] =
'img_metadata';
283 parent::__construct( $title,
$repo );
285 $this->metadata =
'';
286 $this->historyLine = 0;
287 $this->historyRes =
null;
288 $this->dataLoaded =
false;
289 $this->extraDataLoaded =
false;
301 return $this->repo->getSharedCacheKey(
'file', sha1( $this->
getName() ) );
317 $this->dataLoaded =
false;
318 $this->extraDataLoaded =
false;
327 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
328 $cachedValues =
$cache->getWithSetCallback(
331 function ( $oldValue, &$ttl,
array &$setOpts ) use (
$cache ) {
332 $setOpts += Database::getCacheSetOptions( $this->repo->getReplicaDB() );
338 if ( $this->fileExists ) {
339 foreach ( $fields as $field ) {
340 $cacheVal[$field] = $this->$field;
343 $cacheVal[
'user'] = $this->user ? $this->user->getId() : 0;
344 $cacheVal[
'user_text'] = $this->user ? $this->user->getName() :
'';
345 $cacheVal[
'actor'] = $this->user ? $this->user->getActorId() :
null;
351 if ( isset( $cacheVal[$field] )
352 && strlen( $cacheVal[$field] ) > 100 * 1024
354 unset( $cacheVal[$field] );
358 if ( $this->fileExists ) {
361 $ttl = $cache::TTL_DAY;
369 $this->fileExists = $cachedValues[
'fileExists'];
370 if ( $this->fileExists ) {
374 $this->dataLoaded =
true;
375 $this->extraDataLoaded =
true;
377 $this->extraDataLoaded = $this->extraDataLoaded && isset( $cachedValues[$field] );
390 $this->repo->getMasterDB()->onTransactionPreCommitOrIdle(
391 function () use ( $key ) {
392 MediaWikiServices::getInstance()->getMainWANObjectCache()->delete( $key );
402 $props = $this->repo->getFileProps( $this->
getVirtualUrl() );
413 if ( $prefix !==
'' ) {
414 throw new InvalidArgumentException(
415 __METHOD__ .
' with a non-empty prefix is no longer supported.'
423 return [
'size',
'width',
'height',
'bits',
'media_type',
424 'major_mime',
'minor_mime',
'metadata',
'timestamp',
'sha1',
'description' ];
435 if ( $prefix !==
'' ) {
436 throw new InvalidArgumentException(
437 __METHOD__ .
' with a non-empty prefix is no longer supported.'
442 return [
'metadata' ];
450 $fname = static::class .
'::' . __FUNCTION__;
452 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
453 $this->dataLoaded =
true;
454 $this->extraDataLoaded =
true;
456 $dbr = ( $flags & self::READ_LATEST )
457 ? $this->repo->getMasterDB()
458 : $this->repo->getReplicaDB();
460 $fileQuery = static::getQueryInfo();
461 $row =
$dbr->selectRow(
462 $fileQuery[
'tables'],
463 $fileQuery[
'fields'],
464 [
'img_name' => $this->
getName() ],
473 $this->fileExists =
false;
482 $fname = static::class .
'::' . __FUNCTION__;
484 # Unconditionally set loaded=true, we don't want the accessors constantly rechecking
485 $this->extraDataLoaded =
true;
493 foreach ( $fieldMap as $name =>
$value ) {
497 throw new MWException(
"Could not find data for image '{$this->getName()}'." );
510 $row =
$dbr->selectRow(
511 $fileQuery[
'tables'],
512 $fileQuery[
'fields'],
514 'img_name' => $this->
getName(),
515 'img_timestamp' =>
$dbr->timestamp( $this->getTimestamp() ),
524 # File may have been uploaded over in the meantime; check the old versions
526 $row =
$dbr->selectRow(
527 $fileQuery[
'tables'],
528 $fileQuery[
'fields'],
531 'oi_timestamp' =>
$dbr->timestamp( $this->getTimestamp() ),
542 if ( isset( $fieldMap[
'metadata'] ) ) {
543 $fieldMap[
'metadata'] = $this->repo->getReplicaDB()->decodeBlob( $fieldMap[
'metadata'] );
556 $array = (
array)$row;
557 $prefixLength = strlen( $prefix );
560 if ( substr(
key( $array ), 0, $prefixLength ) !== $prefix ) {
561 throw new MWException( __METHOD__ .
': incorrect $prefix parameter' );
565 foreach ( $array as $name =>
$value ) {
566 $decoded[substr( $name, $prefixLength )] =
$value;
583 $decoded[
'description'] = MediaWikiServices::getInstance()->getCommentStore()
584 ->getComment(
'description', (
object)$decoded )->text;
587 $decoded[
'user'] ??
null,
588 $decoded[
'user_text'] ??
null,
589 $decoded[
'actor'] ??
null
591 unset( $decoded[
'user_text'], $decoded[
'actor'] );
593 $decoded[
'timestamp'] =
wfTimestamp( TS_MW, $decoded[
'timestamp'] );
595 $decoded[
'metadata'] = $this->repo->getReplicaDB()->decodeBlob( $decoded[
'metadata'] );
597 if ( empty( $decoded[
'major_mime'] ) ) {
598 $decoded[
'mime'] =
'unknown/unknown';
600 if ( !$decoded[
'minor_mime'] ) {
601 $decoded[
'minor_mime'] =
'unknown';
603 $decoded[
'mime'] = $decoded[
'major_mime'] .
'/' . $decoded[
'minor_mime'];
607 $decoded[
'sha1'] = rtrim( $decoded[
'sha1'],
"\0" );
613 foreach ( [
'size',
'width',
'height',
'bits' ] as $field ) {
614 $decoded[$field] = +$decoded[$field];
627 $this->dataLoaded =
true;
628 $this->extraDataLoaded =
true;
630 $array = $this->
decodeRow( $row, $prefix );
632 foreach ( $array as $name =>
$value ) {
636 $this->fileExists =
true;
645 if ( !$this->dataLoaded ) {
646 if ( $flags & self::READ_LATEST ) {
653 if ( ( $flags & self::LOAD_ALL ) && !$this->extraDataLoaded ) {
670 if ( is_null( $this->media_type ) || $this->mime ==
'image/svg' ) {
685 $this->upgrading =
true;
687 DeferredUpdates::addCallableUpdate(
function () {
688 $this->upgrading =
false;
713 # Don't destroy file info of missing files
714 if ( !$this->fileExists ) {
716 wfDebug( __METHOD__ .
": file does not exist, aborting\n" );
721 $dbw = $this->repo->getMasterDB();
729 wfDebug( __METHOD__ .
': upgrading ' . $this->
getName() .
" to the current schema\n" );
731 $dbw->update(
'image',
733 'img_size' => $this->size,
734 'img_width' => $this->
width,
735 'img_height' => $this->height,
736 'img_bits' => $this->bits,
737 'img_media_type' => $this->media_type,
738 'img_major_mime' => $major,
739 'img_minor_mime' => $minor,
740 'img_metadata' => $dbw->encodeBlob( $this->metadata ),
741 'img_sha1' => $this->sha1,
743 [
'img_name' => $this->getName() ],
750 $this->upgraded =
true;
764 $this->dataLoaded =
true;
766 $fields[] =
'fileExists';
768 foreach ( $fields as $field ) {
769 if ( isset( $info[$field] ) ) {
770 $this->$field = $info[$field];
774 if ( isset( $info[
'user'] ) || isset( $info[
'user_text'] ) || isset( $info[
'actor'] ) ) {
776 $info[
'user'] ??
null,
777 $info[
'user_text'] ??
null,
778 $info[
'actor'] ??
null
783 if ( isset( $info[
'major_mime'] ) ) {
784 $this->mime =
"{$info['major_mime']}/{$info['minor_mime']}";
785 } elseif ( isset( $info[
'mime'] ) ) {
786 $this->mime = $info[
'mime'];
803 if ( $this->missing ===
null ) {
832 return $dim[
'width'];
864 return $dim[
'height'];
885 if (
$type ===
'object' ) {
887 } elseif (
$type ===
'text' ) {
889 } elseif (
$type ===
'id' ) {
890 return $this->user->getId();
904 $pageId = $this->title->getArticleID();
906 if ( $pageId !==
null ) {
907 $url = $this->repo->makeUrl( [
'curid' => $pageId ] );
908 if (
$url !==
false ) {
920 $this->
load( self::LOAD_ALL );
996 if ( $archiveName ) {
1002 $backend = $this->repo->getBackend();
1005 $iterator = $backend->getFileList( [
'dir' => $dir ] );
1006 foreach ( $iterator as $file ) {
1037 DeferredUpdates::addUpdate(
1039 DeferredUpdates::PRESEND
1052 Hooks::run(
'LocalFilePurgeThumbnails', [ $this, $archiveName ] );
1055 $dir = array_shift( $files );
1060 foreach ( $files as $file ) {
1074 foreach ( $files as $file ) {
1077 array_shift(
$urls );
1080 if ( !empty(
$options[
'forThumbRefresh'] ) ) {
1088 Hooks::run(
'LocalFilePurgeThumbnails', [ $this,
false ] );
1091 $dir = array_shift( $files );
1111 foreach ( $sizes as
$size ) {
1115 [
'transformParams' => [
'width' => $size ] ]
1121 JobQueueGroup::singleton()->lazyPush( $jobs );
1131 $fileListDebug = strtr(
1132 var_export( $files,
true ),
1135 wfDebug( __METHOD__ .
": $fileListDebug\n" );
1138 foreach ( $files as $file ) {
1139 if ( $this->repo->supportsSha1URLs() ) {
1140 $reference = $this->
getSha1();
1142 $reference = $this->
getName();
1145 # Check that the reference (filename or sha1) is part of the thumb name
1146 # This is a basic sanity check to avoid erasing unrelated directories
1147 if ( strpos( $file, $reference ) !==
false
1148 || strpos( $file,
"-thumbnail" ) !==
false
1150 $purgeList[] =
"{$dir}/{$file}";
1154 # Delete the thumbnails
1155 $this->repo->quickPurgeBatch( $purgeList );
1156 # Clear out the thumbnail directory if empty
1157 $this->repo->quickCleanDir( $dir );
1170 function getHistory( $limit =
null, $start =
null, $end =
null, $inc =
true ) {
1171 $dbr = $this->repo->getReplicaDB();
1174 $tables = $oldFileQuery[
'tables'];
1175 $fields = $oldFileQuery[
'fields'];
1176 $join_conds = $oldFileQuery[
'joins'];
1177 $conds = $opts = [];
1178 $eq = $inc ?
'=' :
'';
1179 $conds[] =
"oi_name = " .
$dbr->addQuotes( $this->title->getDBkey() );
1182 $conds[] =
"oi_timestamp <$eq " .
$dbr->addQuotes(
$dbr->timestamp( $start ) );
1186 $conds[] =
"oi_timestamp >$eq " .
$dbr->addQuotes(
$dbr->timestamp( $end ) );
1190 $opts[
'LIMIT'] = $limit;
1194 $order = ( !$start && $end !== null ) ?
'ASC' :
'DESC';
1195 $opts[
'ORDER BY'] =
"oi_timestamp $order";
1196 $opts[
'USE INDEX'] = [
'oldimage' =>
'oi_name_timestamp' ];
1200 Hooks::run(
'LocalFile::getHistory', [ &$localFile, &
$tables, &$fields,
1201 &$conds, &$opts, &$join_conds ] );
1203 $res =
$dbr->select(
$tables, $fields, $conds, __METHOD__, $opts, $join_conds );
1206 foreach (
$res as $row ) {
1207 $r[] = $this->repo->newFileFromRow( $row );
1210 if ( $order ==
'ASC' ) {
1211 $r = array_reverse( $r );
1227 # Polymorphic function name to distinguish foreign and local fetches
1228 $fname = static::class .
'::' . __FUNCTION__;
1230 $dbr = $this->repo->getReplicaDB();
1232 if ( $this->historyLine == 0 ) {
1234 $this->historyRes =
$dbr->select( $fileQuery[
'tables'],
1235 $fileQuery[
'fields'] + [
1236 'oi_archive_name' =>
$dbr->addQuotes(
'' ),
1239 [
'img_name' => $this->title->getDBkey() ],
1245 if ( 0 ==
$dbr->numRows( $this->historyRes ) ) {
1246 $this->historyRes =
null;
1250 } elseif ( $this->historyLine == 1 ) {
1252 $this->historyRes =
$dbr->select(
1253 $fileQuery[
'tables'],
1254 $fileQuery[
'fields'],
1255 [
'oi_name' => $this->title->getDBkey() ],
1257 [
'ORDER BY' =>
'oi_timestamp DESC' ],
1261 $this->historyLine++;
1263 return $dbr->fetchObject( $this->historyRes );
1270 $this->historyLine = 0;
1272 if ( !is_null( $this->historyRes ) ) {
1273 $this->historyRes =
null;
1309 function upload( $src, $comment, $pageText, $flags = 0, $props =
false,
1310 $timestamp =
false, $user =
null, $tags = [],
1311 $createNullRevision =
true
1313 if ( $this->
getRepo()->getReadOnlyReason() !==
false ) {
1315 } elseif ( MediaWikiServices::getInstance()->getRevisionStore()->isReadOnly() ) {
1321 $srcPath = ( $src instanceof
FSFile ) ? $src->getPath() : $src;
1323 if ( $this->repo->isVirtualUrl( $srcPath )
1326 $props = $this->repo->getFileProps( $srcPath );
1328 $mwProps =
new MWFileProps( MediaWikiServices::getInstance()->getMimeAnalyzer() );
1329 $props = $mwProps->getPropsFromPath( $srcPath,
true );
1336 $metadata = Wikimedia\quietCall(
'unserialize', $props[
'metadata'] );
1348 $comment = trim( $comment );
1353 if (
$status->successCount >= 2 ) {
1371 if ( !$uploadStatus->isOK() ) {
1372 if ( $uploadStatus->hasMessage(
'filenotfound' ) ) {
1374 $status->fatal(
'filenotfound', $srcPath );
1376 $status->merge( $uploadStatus );
1412 $user->addWatch( $this->
getTitle() );
1432 $oldver, $comment, $pageText, $props =
false,
$timestamp =
false, $user =
null, $tags = [],
1433 $createNullRevision =
true
1437 if ( is_null( $user ) ) {
1442 $dbw = $this->repo->getMasterDB();
1444 # Imports or such might force a certain timestamp; otherwise we generate
1445 # it and can fudge it slightly to keep (name,timestamp) unique on re-upload.
1448 $allowTimeKludge =
true;
1450 $allowTimeKludge =
false;
1453 $props = $props ?: $this->repo->getFileProps( $this->
getVirtualUrl() );
1454 $props[
'description'] = $comment;
1455 $props[
'user'] = $user->getId();
1456 $props[
'user_text'] = $user->getName();
1457 $props[
'actor'] = $user->getActorId( $dbw );
1461 # Fail now if the file isn't there
1462 if ( !$this->fileExists ) {
1463 wfDebug( __METHOD__ .
": File " . $this->
getRel() .
" went missing!\n" );
1465 return Status::newFatal(
'filenotfound', $this->
getRel() );
1468 $dbw->startAtomic( __METHOD__ );
1470 # Test to see if the row exists using INSERT IGNORE
1471 # This avoids race conditions by locking the row until the commit, and also
1472 # doesn't deadlock. SELECT FOR UPDATE causes a deadlock for every race condition.
1473 $commentStore = MediaWikiServices::getInstance()->getCommentStore();
1474 $commentFields = $commentStore->insert( $dbw,
'img_description', $comment );
1475 $actorMigration = ActorMigration::newMigration();
1476 $actorFields = $actorMigration->getInsertValues( $dbw,
'img_user', $user );
1477 $dbw->insert(
'image',
1479 'img_name' => $this->
getName(),
1480 'img_size' => $this->size,
1481 'img_width' => intval( $this->
width ),
1482 'img_height' => intval( $this->height ),
1483 'img_bits' => $this->bits,
1484 'img_media_type' => $this->media_type,
1485 'img_major_mime' => $this->major_mime,
1486 'img_minor_mime' => $this->minor_mime,
1488 'img_metadata' => $dbw->encodeBlob( $this->metadata ),
1489 'img_sha1' => $this->sha1
1490 ] + $commentFields + $actorFields,
1494 $reupload = ( $dbw->affectedRows() == 0 );
1497 $row = $dbw->selectRow(
1499 [
'img_timestamp',
'img_sha1' ],
1500 [
'img_name' => $this->
getName() ],
1502 [
'LOCK IN SHARE MODE' ]
1505 if ( $row && $row->img_sha1 === $this->sha1 ) {
1506 $dbw->endAtomic( __METHOD__ );
1507 wfDebug( __METHOD__ .
": File " . $this->
getRel() .
" already exists!\n" );
1509 return Status::newFatal(
'fileexists-no-change', $title->getPrefixedText() );
1512 if ( $allowTimeKludge ) {
1513 # Use LOCK IN SHARE MODE to ignore any transaction snapshotting
1514 $lUnixtime = $row ?
wfTimestamp( TS_UNIX, $row->img_timestamp ) :
false;
1515 # Avoid a timestamp that is not newer than the last version
1516 # TODO: the image/oldimage tables should be like page/revision with an ID field
1519 $timestamp = $dbw->timestamp( $lUnixtime + 1 );
1526 'oi_name' =>
'img_name',
1527 'oi_archive_name' => $dbw->addQuotes( $oldver ),
1528 'oi_size' =>
'img_size',
1529 'oi_width' =>
'img_width',
1530 'oi_height' =>
'img_height',
1531 'oi_bits' =>
'img_bits',
1532 'oi_timestamp' =>
'img_timestamp',
1533 'oi_metadata' =>
'img_metadata',
1534 'oi_media_type' =>
'img_media_type',
1535 'oi_major_mime' =>
'img_major_mime',
1536 'oi_minor_mime' =>
'img_minor_mime',
1537 'oi_sha1' =>
'img_sha1',
1542 $fields[
'oi_description'] =
'img_description';
1545 $fields[
'oi_description_id'] =
'img_description_id';
1554 $res = $dbw->select(
1556 [
'img_name',
'img_description' ],
1558 'img_name' => $this->
getName(),
1559 'img_description_id' => 0,
1563 foreach (
$res as $row ) {
1564 $imgFields = $commentStore->insert( $dbw,
'img_description', $row->img_description );
1568 [
'img_name' => $row->img_name ],
1575 $fields[
'oi_user'] =
'img_user';
1576 $fields[
'oi_user_text'] =
'img_user_text';
1579 $fields[
'oi_actor'] =
'img_actor';
1588 $res = $dbw->select(
1590 [
'img_name',
'img_user',
'img_user_text' ],
1591 [
'img_name' => $this->
getName(),
'img_actor' => 0 ],
1594 foreach (
$res as $row ) {
1595 $actorId =
User::newFromAnyId( $row->img_user, $row->img_user_text,
null )->getActorId( $dbw );
1598 [
'img_actor' => $actorId ],
1599 [
'img_name' => $row->img_name,
'img_actor' => 0 ],
1605 # (T36993) Note: $oldver can be empty here, if the previous
1606 # version of the file was broken. Allow registration of the new
1607 # version to continue anyway, because that's better than having
1608 # an image that's not fixable by user operations.
1609 # Collision, this is an update of a file
1610 # Insert previous contents into oldimage
1611 $dbw->insertSelect(
'oldimage',
$tables, $fields,
1612 [
'img_name' => $this->
getName() ], __METHOD__, [], [], $joins );
1614 # Update the current image row
1615 $dbw->update(
'image',
1617 'img_size' => $this->size,
1618 'img_width' => intval( $this->
width ),
1619 'img_height' => intval( $this->height ),
1620 'img_bits' => $this->bits,
1621 'img_media_type' => $this->media_type,
1622 'img_major_mime' => $this->major_mime,
1623 'img_minor_mime' => $this->minor_mime,
1625 'img_metadata' => $dbw->encodeBlob( $this->metadata ),
1626 'img_sha1' => $this->sha1
1627 ] + $commentFields + $actorFields,
1628 [
'img_name' => $this->getName() ],
1634 $descId = $descTitle->getArticleID();
1636 $wikiPage->setFile( $this );
1639 $logEntry =
new ManualLogEntry(
'upload', $reupload ?
'overwrite' :
'upload' );
1641 $logEntry->setPerformer( $user );
1642 $logEntry->setComment( $comment );
1643 $logEntry->setTarget( $descTitle );
1646 $logEntry->setParameters(
1648 'img_sha1' => $this->sha1,
1658 $logId = $logEntry->insert();
1660 if ( $descTitle->exists() ) {
1663 $formatter->setContext( RequestContext::newExtraneousContext( $descTitle ) );
1664 $editSummary = $formatter->getPlainActionText();
1673 if ( $nullRevision ) {
1674 $nullRevision->insertOn( $dbw );
1676 'NewRevisionFromEditComplete',
1677 [ $wikiPage, $nullRevision, $nullRevision->getParentId(), $user ]
1679 $wikiPage->updateRevisionOn( $dbw, $nullRevision );
1681 $logEntry->setAssociatedRevId( $nullRevision->getId() );
1684 $newPageContent =
null;
1687 $newPageContent = ContentHandler::makeContent( $pageText, $descTitle );
1690 # Defer purges, page creation, and link updates in case they error out.
1691 # The most important thing is that files and the DB registry stay synced.
1692 $dbw->endAtomic( __METHOD__ );
1695 # Do some cache purges after final commit so that:
1696 # a) Changes are more likely to be seen post-purge
1697 # b) They won't cause rollback of the log publish/update above
1698 DeferredUpdates::addUpdate(
1703 $reupload, $wikiPage, $newPageContent, $comment, $user,
1704 $logEntry, $logId, $descId, $tags,
$fname
1706 # Update memcache after the commit
1709 $updateLogPage =
false;
1710 if ( $newPageContent ) {
1711 # New file page; create the description page.
1712 # There's already a log entry, so don't make a second RC entry
1713 # CDN and file cache for the description page are purged by doEditContent.
1714 $status = $wikiPage->doEditContent(
1722 if ( isset(
$status->value[
'revision'] ) ) {
1726 $logEntry->setAssociatedRevId(
$rev->getId() );
1730 if ( isset(
$status->value[
'revision'] ) ) {
1733 $updateLogPage =
$rev->getPage();
1736 # Existing file page: invalidate description page cache
1737 $wikiPage->getTitle()->invalidateCache();
1738 $wikiPage->getTitle()->purgeSquid();
1739 # Allow the new file version to be patrolled from the page footer
1743 # Update associated rev id. This should be done by $logEntry->insert() earlier,
1744 # but setAssociatedRevId() wasn't called at that point yet...
1745 $logParams = $logEntry->getParameters();
1746 $logParams[
'associated_rev_id'] = $logEntry->getAssociatedRevId();
1748 if ( $updateLogPage ) {
1749 # Also log page, in case where we just created it above
1750 $update[
'log_page'] = $updateLogPage;
1752 $this->
getRepo()->getMasterDB()->update(
1755 [
'log_id' => $logId ],
1758 $this->
getRepo()->getMasterDB()->insert(
1761 'ls_field' =>
'associated_rev_id',
1762 'ls_value' => $logEntry->getAssociatedRevId(),
1763 'ls_log_id' => $logId,
1768 # Add change tags, if any
1770 $logEntry->setTags( $tags );
1773 # Uploads can be patrolled
1774 $logEntry->setIsPatrollable(
true );
1776 # Now that the log entry is up-to-date, make an RC entry.
1777 $logEntry->publish( $logId );
1779 # Run hook for other updates (typically more cache purging)
1780 Hooks::run(
'FileUpload', [ $this, $reupload, !$newPageContent ] );
1783 # Delete old thumbnails
1785 # Remove the old file from the CDN cache
1786 DeferredUpdates::addUpdate(
1788 DeferredUpdates::PRESEND
1791 # Update backlink pages pointing to this title if created
1792 LinksUpdate::queueRecursiveJobsForTable(
1803 DeferredUpdates::PRESEND
1807 # This is a new file, so update the image count
1808 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( [
'images' => 1 ] ) );
1811 # Invalidate cache for all pages using this file
1812 DeferredUpdates::addUpdate(
1816 return Status::newGood();
1854 $srcPath = ( $src instanceof
FSFile ) ? $src->getPath() : $src;
1864 $archiveRel =
'archive/' . $this->
getHashPath() . $archiveName;
1872 $dst = $wrapperBackend->getPathForSHA1(
$sha1 );
1879 $status->value = $archiveName;
1885 if (
$status->value ==
'new' ) {
1888 $status->value = $archiveName;
1915 if ( $this->
getRepo()->getReadOnlyReason() !==
false ) {
1919 wfDebugLog(
'imagemove',
"Got request to move {$this->name} to " . $target->getText() );
1924 $archiveNames =
$batch->addOlds();
1928 wfDebugLog(
'imagemove',
"Finished moving {$this->name}" );
1934 DeferredUpdates::addUpdate(
1936 $this->
getRepo()->getMasterDB(),
1938 function () use ( $oldTitleFile, $newTitleFile, $archiveNames ) {
1939 $oldTitleFile->purgeEverything();
1940 foreach ( $archiveNames as $archiveName ) {
1941 $oldTitleFile->purgeOldThumbnails( $archiveName );
1943 $newTitleFile->purgeEverything();
1946 DeferredUpdates::PRESEND
1951 $this->title = $target;
1953 unset( $this->
name );
1954 unset( $this->hashPath );
1973 function delete( $reason, $suppress =
false, $user = null ) {
1974 if ( $this->
getRepo()->getReadOnlyReason() !==
false ) {
1983 $archiveNames =
$batch->addOlds();
1988 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( [
'images' => -1 ] ) );
1992 DeferredUpdates::addUpdate(
1994 $this->
getRepo()->getMasterDB(),
1996 function () use ( $archiveNames ) {
1998 foreach ( $archiveNames as $archiveName ) {
2003 DeferredUpdates::PRESEND
2008 foreach ( $archiveNames as $archiveName ) {
2011 DeferredUpdates::addUpdate(
new CdnCacheUpdate( $purgeUrls ), DeferredUpdates::PRESEND );
2031 function deleteOld( $archiveName, $reason, $suppress =
false, $user =
null ) {
2032 if ( $this->
getRepo()->getReadOnlyReason() !==
false ) {
2039 $batch->addOld( $archiveName );
2048 DeferredUpdates::addUpdate(
2050 DeferredUpdates::PRESEND
2067 function restore( $versions = [], $unsuppress =
false ) {
2068 if ( $this->
getRepo()->getReadOnlyReason() !==
false ) {
2078 $batch->addIds( $versions );
2082 $cleanupStatus =
$batch->cleanup();
2083 $cleanupStatus->successCount = 0;
2084 $cleanupStatus->failCount = 0;
2085 $status->merge( $cleanupStatus );
2102 return $this->title->getLocalURL();
2114 $store = MediaWikiServices::getInstance()->getRevisionStore();
2115 $revision = $store->getRevisionByTitle( $this->title, 0, Revision::READ_NORMAL );
2120 $renderer = MediaWikiServices::getInstance()->getRevisionRenderer();
2121 $rendered = $renderer->getRenderedRevision( $revision,
new ParserOptions(
null,
$lang ) );
2128 $pout = $rendered->getRevisionParserOutput();
2129 return $pout->getText();
2139 if ( $audience == self::FOR_PUBLIC && $this->
isDeleted( self::DELETED_COMMENT ) ) {
2141 } elseif ( $audience == self::FOR_THIS_USER
2142 && !$this->
userCan( self::DELETED_COMMENT, $user )
2166 if ( $this->descriptionTouched ===
null ) {
2168 'page_namespace' => $this->title->getNamespace(),
2169 'page_title' => $this->title->getDBkey()
2171 $touched = $this->repo->getReplicaDB()->selectField(
'page',
'page_touched', $cond, __METHOD__ );
2172 $this->descriptionTouched = $touched ?
wfTimestamp( TS_MW, $touched ) :
false;
2184 if ( $this->sha1 ==
'' && $this->fileExists ) {
2187 $this->sha1 = $this->repo->getFileSha1( $this->
getPath() );
2188 if ( !
wfReadOnly() && strval( $this->sha1 ) !=
'' ) {
2189 $dbw = $this->repo->getMasterDB();
2190 $dbw->update(
'image',
2191 [
'img_sha1' => $this->sha1 ],
2192 [
'img_name' => $this->
getName() ],
2210 return $this->extraDataLoaded
2219 return Status::wrap( $this->
getRepo()->getBackend()->lockFiles(
2220 [ $this->
getPath() ], LockManager::LOCK_EX, 10
2229 return Status::wrap( $this->
getRepo()->getBackend()->unlockFiles(
2230 [ $this->
getPath() ], LockManager::LOCK_EX
2244 if ( !$this->locked ) {
2245 $logger = LoggerFactory::getInstance(
'LocalFile' );
2247 $dbw = $this->repo->getMasterDB();
2248 $makesTransaction = !$dbw->trxLevel();
2249 $dbw->startAtomic( self::ATOMIC_SECTION_LOCK );
2255 $dbw->endAtomic( self::ATOMIC_SECTION_LOCK );
2256 $logger->warning(
"Failed to lock '{file}'", [
'file' => $this->
name ] );
2262 $dbw->onTransactionResolution(
2263 function () use ( $logger ) {
2266 $logger->error(
"Failed to unlock '{file}'", [
'file' => $this->
name ] );
2272 $this->lockedOwnTrx = $makesTransaction;
2289 if ( $this->locked ) {
2291 if ( !$this->locked ) {
2292 $dbw = $this->repo->getMasterDB();
2293 $dbw->endAtomic( self::ATOMIC_SECTION_LOCK );
2294 $this->lockedOwnTrx =
false;
2303 return $this->
getRepo()->newFatal(
'filereadonlyerror', $this->
getName(),
2315# ------------------------------------------------------------------------------
2353 $this->file =
$file;
2357 $this->user =
$user;
2360 $this->user = $wgUser;
2362 $this->status = $file->repo->newGood();
2366 $this->srcRels[
'.'] = $this->file->getRel();
2373 $this->srcRels[$oldName] = $this->file->getArchiveRel( $oldName );
2374 $this->archiveUrls[] = $this->file->getArchiveUrl( $oldName );
2384 $dbw = $this->file->repo->getMasterDB();
2385 $result = $dbw->select(
'oldimage',
2386 [
'oi_archive_name' ],
2387 [
'oi_name' => $this->file->getName() ],
2391 foreach ( $result as $row ) {
2392 $this->
addOld( $row->oi_archive_name );
2393 $archiveNames[] = $row->oi_archive_name;
2396 return $archiveNames;
2403 if ( !isset( $this->srcRels[
'.'] ) ) {
2405 $deleteCurrent =
false;
2408 unset( $oldRels[
'.'] );
2409 $deleteCurrent =
true;
2412 return [ $oldRels, $deleteCurrent ];
2422 if ( $deleteCurrent ) {
2423 $hashes[
'.'] = $this->file->getSha1();
2426 if ( count( $oldRels ) ) {
2427 $dbw = $this->file->repo->getMasterDB();
2428 $res = $dbw->select(
2430 [
'oi_archive_name',
'oi_sha1' ],
2431 [
'oi_archive_name' => array_keys( $oldRels ),
2432 'oi_name' => $this->file->getName() ],
2436 foreach (
$res as $row ) {
2437 if ( rtrim( $row->oi_sha1,
"\0" ) ===
'' ) {
2439 $oldUrl = $this->file->getArchiveVirtualUrl( $row->oi_archive_name );
2440 $props = $this->file->repo->getFileProps( $oldUrl );
2442 if ( $props[
'fileExists'] ) {
2444 $dbw->update(
'oldimage',
2445 [
'oi_sha1' => $props[
'sha1'] ],
2446 [
'oi_name' => $this->file->getName(),
'oi_archive_name' => $row->oi_archive_name ],
2448 $hashes[$row->oi_archive_name] = $props[
'sha1'];
2450 $hashes[$row->oi_archive_name] =
false;
2453 $hashes[$row->oi_archive_name] = $row->oi_sha1;
2458 $missing = array_diff_key( $this->srcRels,
$hashes );
2460 foreach ( $missing as $name => $rel ) {
2461 $this->status->error(
'filedelete-old-unregistered', $name );
2464 foreach (
$hashes as $name => $hash ) {
2466 $this->status->error(
'filedelete-missing', $this->srcRels[$name] );
2478 $dbw = $this->file->repo->getMasterDB();
2480 $commentStore = MediaWikiServices::getInstance()->getCommentStore();
2481 $actorMigration = ActorMigration::newMigration();
2483 $encTimestamp = $dbw->addQuotes( $dbw->timestamp( $now ) );
2484 $encUserId = $dbw->addQuotes( $this->user->getId() );
2485 $encGroup = $dbw->addQuotes(
'deleted' );
2486 $ext = $this->file->getExtension();
2487 $dotExt =
$ext ===
'' ?
'' :
".$ext";
2488 $encExt = $dbw->addQuotes( $dotExt );
2492 if ( $this->suppress ) {
2495 $bitfield =
'oi_deleted';
2498 if ( $deleteCurrent ) {
2501 'fa_storage_group' => $encGroup,
2502 'fa_storage_key' => $dbw->conditional(
2503 [
'img_sha1' =>
'' ],
2504 $dbw->addQuotes(
'' ),
2505 $dbw->buildConcat( [
"img_sha1", $encExt ] )
2507 'fa_deleted_user' => $encUserId,
2508 'fa_deleted_timestamp' => $encTimestamp,
2509 'fa_deleted' => $this->suppress ? $bitfield : 0,
2510 'fa_name' =>
'img_name',
2511 'fa_archive_name' =>
'NULL',
2512 'fa_size' =>
'img_size',
2513 'fa_width' =>
'img_width',
2514 'fa_height' =>
'img_height',
2515 'fa_metadata' =>
'img_metadata',
2516 'fa_bits' =>
'img_bits',
2517 'fa_media_type' =>
'img_media_type',
2518 'fa_major_mime' =>
'img_major_mime',
2519 'fa_minor_mime' =>
'img_minor_mime',
2520 'fa_timestamp' =>
'img_timestamp',
2521 'fa_sha1' =>
'img_sha1'
2525 $fields += array_map(
2526 [ $dbw,
'addQuotes' ],
2527 $commentStore->insert( $dbw,
'fa_deleted_reason', $this->reason )
2531 $fields[
'fa_description'] =
'img_description';
2534 $fields[
'fa_description_id'] =
'img_description_id';
2543 $res = $dbw->select(
2545 [
'img_name',
'img_description' ],
2547 'img_name' => $this->file->getName(),
2548 'img_description_id' => 0,
2552 foreach (
$res as $row ) {
2553 $imgFields = $commentStore->insert( $dbw,
'img_description', $row->img_description );
2557 [
'img_name' => $row->img_name ],
2564 $fields[
'fa_user'] =
'img_user';
2565 $fields[
'fa_user_text'] =
'img_user_text';
2568 $fields[
'fa_actor'] =
'img_actor';
2577 $res = $dbw->select(
2579 [
'img_name',
'img_user',
'img_user_text' ],
2580 [
'img_name' => $this->file->getName(),
'img_actor' => 0 ],
2583 foreach (
$res as $row ) {
2584 $actorId =
User::newFromAnyId( $row->img_user, $row->img_user_text,
null )->getActorId( $dbw );
2587 [
'img_actor' => $actorId ],
2588 [
'img_name' => $row->img_name,
'img_actor' => 0 ],
2594 $dbw->insertSelect(
'filearchive',
$tables, $fields,
2595 [
'img_name' => $this->file->getName() ], __METHOD__, [], [], $joins );
2598 if ( count( $oldRels ) ) {
2600 $res = $dbw->select(
2601 $fileQuery[
'tables'],
2602 $fileQuery[
'fields'],
2604 'oi_name' => $this->file->getName(),
2605 'oi_archive_name' => array_keys( $oldRels )
2612 if (
$res->numRows() ) {
2613 $reason = $commentStore->createComment( $dbw, $this->reason );
2614 foreach (
$res as $row ) {
2615 $comment = $commentStore->getComment(
'oi_description', $row );
2619 'fa_storage_group' =>
'deleted',
2620 'fa_storage_key' => ( $row->oi_sha1 ===
'' )
2622 :
"{$row->oi_sha1}{$dotExt}",
2623 'fa_deleted_user' => $this->user->getId(),
2624 'fa_deleted_timestamp' => $dbw->timestamp( $now ),
2626 'fa_deleted' => $this->suppress ? $bitfield : $row->oi_deleted,
2627 'fa_name' => $row->oi_name,
2628 'fa_archive_name' => $row->oi_archive_name,
2629 'fa_size' => $row->oi_size,
2630 'fa_width' => $row->oi_width,
2631 'fa_height' => $row->oi_height,
2632 'fa_metadata' => $row->oi_metadata,
2633 'fa_bits' => $row->oi_bits,
2634 'fa_media_type' => $row->oi_media_type,
2635 'fa_major_mime' => $row->oi_major_mime,
2636 'fa_minor_mime' => $row->oi_minor_mime,
2637 'fa_timestamp' => $row->oi_timestamp,
2638 'fa_sha1' => $row->oi_sha1
2639 ] + $commentStore->insert( $dbw,
'fa_deleted_reason',
$reason )
2640 + $commentStore->insert( $dbw,
'fa_description', $comment )
2641 + $actorMigration->getInsertValues( $dbw,
'fa_user', $user );
2645 $dbw->insert(
'filearchive', $rowsInsert, __METHOD__ );
2650 $dbw = $this->file->repo->getMasterDB();
2653 if ( count( $oldRels ) ) {
2654 $dbw->delete(
'oldimage',
2656 'oi_name' => $this->file->getName(),
2657 'oi_archive_name' => array_keys( $oldRels )
2661 if ( $deleteCurrent ) {
2662 $dbw->delete(
'image', [
'img_name' => $this->file->getName() ], __METHOD__ );
2671 $repo = $this->file->getRepo();
2672 $this->file->lock();
2676 $this->deletionBatch = [];
2677 $ext = $this->file->getExtension();
2678 $dotExt =
$ext ===
'' ?
'' :
".$ext";
2680 foreach ( $this->srcRels as $name => $srcRel ) {
2682 if ( isset(
$hashes[$name] ) ) {
2684 $key = $hash . $dotExt;
2685 $dstRel = $repo->getDeletedHashPath( $key ) . $key;
2686 $this->deletionBatch[
$name] = [ $srcRel, $dstRel ];
2690 if ( !$repo->hasSha1Storage() ) {
2694 if ( !$checkStatus->isGood() ) {
2695 $this->status->merge( $checkStatus );
2698 $this->deletionBatch = $checkStatus->value;
2701 $status = $this->file->repo->deleteBatch( $this->deletionBatch );
2707 if ( !$this->status->isOK() ) {
2709 $this->file->unlock();
2720 $this->file->unlock();
2731 $files = $newBatch = [];
2733 foreach (
$batch as $batchItem ) {
2734 list( $src, ) = $batchItem;
2735 $files[$src] = $this->file->repo->getVirtualUrl(
'public' ) .
'/' . rawurlencode( $src );
2738 $result = $this->file->repo->fileExistsBatch( $files );
2739 if ( in_array(
null, $result,
true ) ) {
2740 return Status::newFatal(
'backend-fail-internal',
2741 $this->file->repo->getBackend()->getName() );
2744 foreach (
$batch as $batchItem ) {
2745 if ( $result[$batchItem[0]] ) {
2746 $newBatch[] = $batchItem;
2750 return Status::newGood( $newBatch );
2754# ------------------------------------------------------------------------------
2781 $this->file =
$file;
2782 $this->cleanupBatch = [];
2792 $this->ids[] = $fa_id;
2800 $this->ids = array_merge( $this->ids,
$ids );
2822 $repo = $this->file->getRepo();
2823 if ( !$this->all && !$this->ids ) {
2825 return $repo->newGood();
2828 $lockOwnsTrx = $this->file->lock();
2830 $dbw = $this->file->repo->getMasterDB();
2832 $commentStore = MediaWikiServices::getInstance()->getCommentStore();
2833 $actorMigration = ActorMigration::newMigration();
2835 $status = $this->file->repo->newGood();
2837 $exists = (bool)$dbw->selectField(
'image',
'1',
2838 [
'img_name' => $this->file->getName() ],
2843 $lockOwnsTrx ? [] : [
'LOCK IN SHARE MODE' ]
2848 $conditions = [
'fa_name' => $this->file->getName() ];
2850 if ( !$this->all ) {
2855 $result = $dbw->select(
2856 $arFileQuery[
'tables'],
2857 $arFileQuery[
'fields'],
2860 [
'ORDER BY' =>
'fa_timestamp DESC' ],
2861 $arFileQuery[
'joins']
2867 $insertCurrent =
false;
2872 foreach ( $result as $row ) {
2873 $idsPresent[] = $row->fa_id;
2875 if ( $row->fa_name != $this->file->getName() ) {
2876 $status->error(
'undelete-filename-mismatch',
$wgLang->timeanddate( $row->fa_timestamp ) );
2881 if ( $row->fa_storage_key ==
'' ) {
2883 $status->error(
'undelete-bad-store-key',
$wgLang->timeanddate( $row->fa_timestamp ) );
2888 $deletedRel = $repo->getDeletedHashPath( $row->fa_storage_key ) .
2889 $row->fa_storage_key;
2890 $deletedUrl = $repo->getVirtualUrl() .
'/deleted/' . $deletedRel;
2892 if ( isset( $row->fa_sha1 ) ) {
2893 $sha1 = $row->fa_sha1;
2900 if ( strlen( $sha1 ) == 32 && $sha1[0] ==
'0' ) {
2901 $sha1 = substr( $sha1, 1 );
2904 if ( is_null( $row->fa_major_mime ) || $row->fa_major_mime ==
'unknown'
2905 || is_null( $row->fa_minor_mime ) || $row->fa_minor_mime ==
'unknown'
2906 || is_null( $row->fa_media_type ) || $row->fa_media_type ==
'UNKNOWN'
2907 || is_null( $row->fa_metadata )
2914 'minor_mime' => $row->fa_minor_mime,
2915 'major_mime' => $row->fa_major_mime,
2916 'media_type' => $row->fa_media_type,
2917 'metadata' => $row->fa_metadata
2921 $comment = $commentStore->getComment(
'fa_description', $row );
2923 if ( $first && !$exists ) {
2925 $destRel = $this->file->getRel();
2926 $commentFields = $commentStore->insert( $dbw,
'img_description', $comment );
2927 $actorFields = $actorMigration->getInsertValues( $dbw,
'img_user', $user );
2929 'img_name' => $row->fa_name,
2930 'img_size' => $row->fa_size,
2931 'img_width' => $row->fa_width,
2932 'img_height' => $row->fa_height,
2933 'img_metadata' => $props[
'metadata'],
2934 'img_bits' => $row->fa_bits,
2935 'img_media_type' => $props[
'media_type'],
2936 'img_major_mime' => $props[
'major_mime'],
2937 'img_minor_mime' => $props[
'minor_mime'],
2938 'img_timestamp' => $row->fa_timestamp,
2940 ] + $commentFields + $actorFields;
2943 if ( !$this->unsuppress && $row->fa_deleted ) {
2944 $status->fatal(
'undeleterevdel' );
2945 $this->file->unlock();
2949 $archiveName = $row->fa_archive_name;
2951 if ( $archiveName ==
'' ) {
2955 $timestamp =
wfTimestamp( TS_UNIX, $row->fa_deleted_timestamp );
2958 $archiveName =
wfTimestamp( TS_MW, $timestamp ) .
'!' . $row->fa_name;
2960 }
while ( isset( $archiveNames[$archiveName] ) );
2963 $archiveNames[$archiveName] =
true;
2964 $destRel = $this->file->getArchiveRel( $archiveName );
2966 'oi_name' => $row->fa_name,
2967 'oi_archive_name' => $archiveName,
2968 'oi_size' => $row->fa_size,
2969 'oi_width' => $row->fa_width,
2970 'oi_height' => $row->fa_height,
2971 'oi_bits' => $row->fa_bits,
2972 'oi_timestamp' => $row->fa_timestamp,
2973 'oi_metadata' => $props[
'metadata'],
2974 'oi_media_type' => $props[
'media_type'],
2975 'oi_major_mime' => $props[
'major_mime'],
2976 'oi_minor_mime' => $props[
'minor_mime'],
2977 'oi_deleted' => $this->unsuppress ? 0 : $row->fa_deleted,
2979 ] + $commentStore->insert( $dbw,
'oi_description', $comment )
2980 + $actorMigration->getInsertValues( $dbw,
'oi_user', $user );
2983 $deleteIds[] = $row->fa_id;
2989 $storeBatch[] = [ $deletedUrl,
'public', $destRel ];
2990 $this->cleanupBatch[] = $row->fa_storage_key;
2999 $missingIds = array_diff( $this->ids, $idsPresent );
3001 foreach ( $missingIds as $id ) {
3002 $status->error(
'undelete-missing-filearchive', $id );
3005 if ( !$repo->hasSha1Storage() ) {
3008 if ( !$checkStatus->isGood() ) {
3009 $status->merge( $checkStatus );
3012 $storeBatch = $checkStatus->value;
3017 $status->merge( $storeStatus );
3024 $this->file->unlock();
3036 if ( $insertCurrent ) {
3037 $dbw->insert(
'image', $insertCurrent, __METHOD__ );
3040 if ( $insertBatch ) {
3041 $dbw->insert(
'oldimage', $insertBatch, __METHOD__ );
3045 $dbw->delete(
'filearchive',
3046 [
'fa_id' => $deleteIds ],
3051 if (
$status->successCount > 0 || !$storeBatch || $repo->hasSha1Storage() ) {
3053 wfDebug( __METHOD__ .
" restored {$status->successCount} items, creating a new current\n" );
3055 DeferredUpdates::addUpdate( SiteStatsUpdate::factory( [
'images' => 1 ] ) );
3057 $this->file->purgeEverything();
3059 wfDebug( __METHOD__ .
" restored {$status->successCount} as archived versions\n" );
3060 $this->file->purgeDescription();
3064 $this->file->unlock();
3075 $files = $filteredTriplets = [];
3076 foreach ( $triplets as $file ) {
3077 $files[$file[0]] = $file[0];
3080 $result = $this->file->repo->fileExistsBatch( $files );
3081 if ( in_array(
null, $result,
true ) ) {
3082 return Status::newFatal(
'backend-fail-internal',
3083 $this->file->repo->getBackend()->getName() );
3086 foreach ( $triplets as $file ) {
3087 if ( $result[$file[0]] ) {
3088 $filteredTriplets[] =
$file;
3092 return Status::newGood( $filteredTriplets );
3101 $files = $newBatch = [];
3102 $repo = $this->file->repo;
3104 foreach (
$batch as $file ) {
3105 $files[
$file] = $repo->getVirtualUrl(
'deleted' ) .
'/' .
3106 rawurlencode( $repo->getDeletedHashPath( $file ) . $file );
3109 $result = $repo->fileExistsBatch( $files );
3111 foreach (
$batch as $file ) {
3112 if ( $result[$file] ) {
3113 $newBatch[] =
$file;
3126 if ( !$this->cleanupBatch ) {
3127 return $this->file->repo->newGood();
3132 $status = $this->file->repo->cleanupDeletedBatch( $this->cleanupBatch );
3147 foreach ( $storeStatus->success as $i =>
$success ) {
3152 $cleanupBatch[] = [ $storeBatch[$i][1], $storeBatch[$i][2] ];
3159# ------------------------------------------------------------------------------
3188 $this->file =
$file;
3190 $this->oldHash = $this->file->repo->getHashPath( $this->file->getName() );
3191 $this->newHash = $this->file->repo->getHashPath( $this->target->getDBkey() );
3192 $this->oldName = $this->file->getName();
3193 $this->newName = $this->file->repo->getNameFromTitle( $this->target );
3194 $this->oldRel = $this->oldHash . $this->oldName;
3195 $this->newRel = $this->newHash . $this->newName;
3196 $this->db = $file->getRepo()->getMasterDB();
3203 $this->cur = [ $this->oldRel, $this->newRel ];
3211 $archiveBase =
'archive';
3213 $this->oldCount = 0;
3216 $result = $this->db->select(
'oldimage',
3217 [
'oi_archive_name',
'oi_deleted' ],
3218 [
'oi_name' => $this->oldName ],
3220 [
'LOCK IN SHARE MODE' ]
3223 foreach ( $result as $row ) {
3224 $archiveNames[] = $row->oi_archive_name;
3225 $oldName = $row->oi_archive_name;
3226 $bits = explode(
'!', $oldName, 2 );
3228 if ( count( $bits ) != 2 ) {
3229 wfDebug(
"Old file name missing !: '$oldName' \n" );
3233 list( $timestamp, $filename ) = $bits;
3235 if ( $this->oldName != $filename ) {
3236 wfDebug(
"Old file name doesn't match: '$oldName' \n" );
3248 "{$archiveBase}/{$this->oldHash}{$oldName}",
3249 "{$archiveBase}/{$this->newHash}{$timestamp}!{$this->newName}"
3253 return $archiveNames;
3261 $repo = $this->file->repo;
3265 $this->file->lock();
3270 if ( !$checkStatus->isGood() ) {
3271 $destFile->unlock();
3272 $this->file->unlock();
3273 $status->merge( $checkStatus );
3276 $triplets = $checkStatus->value;
3280 if ( !$statusDb->isGood() ) {
3281 $destFile->unlock();
3282 $this->file->unlock();
3283 $statusDb->setOK(
false );
3288 if ( !$repo->hasSha1Storage() ) {
3293 wfDebugLog(
'imagemove',
"Moved files for {$this->file->getName()}: " .
3294 "{$statusMove->successCount} successes, {$statusMove->failCount} failures" );
3295 if ( !$statusMove->isGood() ) {
3298 $destFile->unlock();
3299 $this->file->unlock();
3300 wfDebugLog(
'imagemove',
"Error in moving files: "
3301 . $statusMove->getWikiText(
false,
false,
'en' ) );
3302 $statusMove->setOK(
false );
3306 $status->merge( $statusMove );
3312 wfDebugLog(
'imagemove',
"Renamed {$this->file->getName()} in database: " .
3313 "{$statusDb->successCount} successes, {$statusDb->failCount} failures" );
3315 $destFile->unlock();
3316 $this->file->unlock();
3333 $repo = $this->file->repo;
3339 [
'img_name' => $this->oldName ],
3342 $oldRowCount = $dbw->lockForUpdate(
3344 [
'oi_name' => $this->oldName ],
3348 if ( $hasCurrent ) {
3353 $status->successCount += $oldRowCount;
3357 $status->failCount += max( 0, $this->oldCount - $oldRowCount );
3359 $status->error(
'imageinvalidfilename' );
3375 [
'img_name' => $this->newName ],
3376 [
'img_name' => $this->oldName ],
3384 'oi_name' => $this->newName,
3385 'oi_archive_name = ' . $dbw->strreplace(
'oi_archive_name',
3386 $dbw->addQuotes( $this->oldName ), $dbw->addQuotes( $this->newName ) ),
3388 [
'oi_name' => $this->oldName ],
3398 $moves = array_merge( [ $this->cur ], $this->olds );
3401 foreach ( $moves as $move ) {
3403 $srcUrl = $this->file->repo->getVirtualUrl() .
'/public/' . rawurlencode( $move[0] );
3404 $triplets[] = [ $srcUrl,
'public', $move[1] ];
3407 "Generated move triplet for {$this->file->getName()}: {$srcUrl} :: public :: {$move[1]}"
3422 foreach ( $triplets as $file ) {
3423 $files[$file[0]] = $file[0];
3426 $result = $this->file->repo->fileExistsBatch( $files );
3427 if ( in_array(
null, $result,
true ) ) {
3428 return Status::newFatal(
'backend-fail-internal',
3429 $this->file->repo->getBackend()->getName() );
3432 $filteredTriplets = [];
3433 foreach ( $triplets as $file ) {
3434 if ( $result[$file[0]] ) {
3435 $filteredTriplets[] =
$file;
3437 wfDebugLog(
'imagemove',
"File {$file[0]} does not exist" );
3441 return Status::newGood( $filteredTriplets );
3452 foreach ( $triplets as $triplet ) {
3454 $pairs[] = [ $triplet[1], $triplet[2] ];
3457 $this->file->repo->cleanupBatch( $pairs );
3468 foreach ( $triplets as $triplet ) {
3469 $files[] = $triplet[0];
3472 $this->file->repo->cleanupBatch( $files );
3478 parent::__construct(
3486 $wgOut->setStatusCode( 429 );
$wgUpdateCompatibleMetadata
If to automatically update the img_metadata field if the metadata field is outdated but compatible wi...
int $wgCommentTableSchemaMigrationStage
Comment table schema migration stage.
$wgUploadThumbnailRenderMap
When defined, is an array of thumbnail widths to be rendered at upload time.
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfReadOnly()
Check whether the wiki is in read-only mode.
wfLocalFile( $title)
Get an object referring to a locally registered file.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
static getQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new archivedfile object.
static purgePatrolFooterCache( $articleID)
Purge the cache used to check if it is worth showing the patrol footer For example,...
Deferrable Update for closure/callback updates that should use auto-commit mode.
Handles purging appropriate CDN URLs given a title (or titles)
An error page which can definitely be safely rendered using the OutputPage.
Class representing a non-directory file on the file system.
static getSha1Base36FromPath( $path)
Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case encoding,...
File backend exception for checked exceptions (e.g.
static isStoragePath( $path)
Check if a given path is a "mwstore://" path.
getFileSha1( $virtualUrl)
Get the sha1 (base 36) of a file with a given virtual URL/storage path.
hasSha1Storage()
Returns whether or not storage is SHA-1 based.
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...
static isVirtualUrl( $url)
Determine if a string is an mwrepo:// URL.
getReadOnlyReason()
Get an explanatory message if this repo is read-only.
quickImport( $src, $dst, $options=null)
Import a file from the local file system into the repo.
getBackend()
Get the file backend instance.
Implements some public methods and some protected utility functions which are required by multiple ch...
string $url
The URL corresponding to one of the four basic zones.
isVectorized()
Return true if the file is vectorized.
purgeDescription()
Purge the file description page, but don't go after pages using the file.
getPath()
Return the storage path to the file.
getThumbPath( $suffix=false)
Get the path of the thumbnail directory, or a particular file if $suffix is specified.
getRel()
Get the path of the file relative to the public zone root.
assertRepoDefined()
Assert that $this->repo is set to a valid FileRepo instance.
getName()
Return the name of this file.
getThumbUrl( $suffix=false)
Get the URL of the thumbnail directory, or a particular file if $suffix is specified.
getVirtualUrl( $suffix=false)
Get the public zone virtual URL for a current version source file.
getRepo()
Returns the repository.
assertTitleDefined()
Assert that $this->title is set to a Title.
getArchiveThumbPath( $archiveName, $suffix=false)
Get the path of an archived file's thumbs, or a particular thumb if $suffix is specified.
getTitle()
Return the associated title object.
isMultipage()
Returns 'true' if this file is a type which supports multiple pages, e.g.
getThumbnails()
Get all thumbnail names previously generated for this file STUB Overridden by LocalFile.
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
purgeEverything()
Purge metadata and all affected pages when the file is created, deleted, or majorly updated.
static splitMime( $mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
getUrl()
Return the URL of the file.
getArchiveUrl( $suffix=false)
Get the URL of the archive directory, or a particular file if $suffix is specified.
userCan( $field, User $user=null)
Determine if the current user is allowed to view a particular field of this file, if it's marked as d...
getHandler()
Get a MediaHandler instance for this file.
isDeleted( $field)
Is this file a "deleted" file in a private archive? STUB.
getArchiveThumbUrl( $archiveName, $suffix=false)
Get the URL of the archived file's thumbs, or a particular thumb if $suffix is specified.
getHashPath()
Get the filename hash component of the directory including trailing slash, e.g.
Class to invalidate the HTML cache of all the pages linking to a given title.
Internationalisation code.
Helper class for file deletion.
addOlds()
Add the old versions of the image to the batch.
removeNonexistentFiles( $batch)
Removes non-existent files from a deletion batch.
array $deletionBatch
Items to be processed in the deletion batch.
__construct(File $file, $reason='', $suppress=false, $user=null)
bool $suppress
Whether to suppress all suppressable fields when deleting.
execute()
Run the transaction.
__construct(Status $status)
report()
Output a report about the exception and takes care of formatting.
Helper class for file movement.
cleanupTarget( $triplets)
Cleanup a partially moved array of triplets by deleting the target files.
addOlds()
Add the old versions of the image to the batch.
doDBUpdates()
Do the database updates and return a new Status indicating how many rows where updated.
getMoveTriplets()
Generate triplets for FileRepo::storeBatch().
__construct(File $file, Title $target)
execute()
Perform the move.
verifyDBUpdates()
Verify the database updates and return a new Status indicating how many rows would be updated.
removeNonexistentFiles( $triplets)
Removes non-existent files from move batch.
addCurrent()
Add the current image to the batch.
cleanupSource( $triplets)
Cleanup a fully moved array of triplets by deleting the source files.
Helper class for file undeletion.
execute()
Run the transaction, except the cleanup batch.
addIds( $ids)
Add a whole lot of files by ID.
addAll()
Add all revisions of the file.
string[] $ids
List of file IDs to restore.
bool $unsuppress
Whether to remove all settings for suppressed fields.
removeNonexistentFromCleanup( $batch)
Removes non-existent files from a cleanup batch.
addId( $fa_id)
Add a file by ID.
cleanup()
Delete unused files in the deleted zone.
removeNonexistentFiles( $triplets)
Removes non-existent files from a store batch.
string[] $cleanupBatch
List of file IDs to restore.
cleanupFailedBatch( $storeStatus, $storeBatch)
Cleanup a failed batch.
bool $all
Add all revisions of the file.
__construct(File $file, $unsuppress=false)
Class to represent a local file in the wiki's own database.
exists()
canRender inherited
setProps( $info)
Set properties in this object to be equal to those given in the associative array $info.
string $major_mime
Major MIME type.
maybeUpgradeRow()
Upgrade a row if it needs it.
static newFromKey( $sha1, $repo, $timestamp=false)
Create a LocalFile from a SHA-1 key Do not call this except from inside a repo class.
getMediaType()
Returns the type of the media in the file.
recordUpload( $oldver, $desc, $license='', $copyStatus='', $source='', $watch=false, $timestamp=false, User $user=null)
Record a file upload in the upload log and the image table.
move( $target)
getLinksTo inherited
lock()
Start an atomic DB section and lock the image for update or increments a reference counter if the loc...
loadFromRow( $row, $prefix='img_')
Load file metadata from a DB result row.
getCacheKey()
Get the memcached key for the main data for this file, or false if there is no access to the shared c...
getWidth( $page=1)
Return the width of the image.
__destruct()
Clean up any dangling locks.
string $mime
MIME type, determined by MimeAnalyzer::guessMimeType.
isMissing()
splitMime inherited
deleteOld( $archiveName, $reason, $suppress=false, $user=null)
Delete an old version of the file.
getDescriptionUrl()
isMultipage inherited
getHistory( $limit=null, $start=null, $end=null, $inc=true)
purgeDescription inherited
getMutableCacheKeys(WANObjectCache $cache)
static selectFields()
Fields in the image table.
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new localfile object.
getDescription( $audience=self::FOR_PUBLIC, User $user=null)
loadFromDB( $flags=0)
Load file metadata from the DB.
load( $flags=0)
Load file metadata from cache or DB, unless already loaded.
bool $upgrading
Whether the row was scheduled to upgrade on load.
string $media_type
MEDIATYPE_xxx (bitmap, drawing, audio...)
loadFromFile()
Load metadata from the file itself.
purgeCache( $options=[])
Delete all previously generated thumbnails, refresh metadata in memcached and purge the CDN.
int $size
Size in bytes (loadFromXxx)
string $minor_mime
Minor MIME type.
getDescriptionShortUrl()
Get short description URL for a file based on the page ID.
getThumbnails( $archiveName=false)
getTransformScript inherited
bool $upgraded
Whether the row was upgraded on load.
static newFromTitle( $title, $repo, $unused=null)
Create a LocalFile from a title Do not call this except from inside a repo class.
purgeMetadataCache()
Refresh metadata in memcached, but don't touch thumbnails or CDN.
string $timestamp
Upload timestamp.
const ATOMIC_SECTION_LOCK
purgeOldThumbnails( $archiveName)
Delete cached transformed files for an archived version only.
publishTo( $src, $dstRel, $flags=0, array $options=[])
Move or copy a file to a specified location.
upload( $src, $comment, $pageText, $flags=0, $props=false, $timestamp=false, $user=null, $tags=[], $createNullRevision=true)
getHashPath inherited
int $historyRes
Result of the query for the file's history (nextHistoryLine)
purgeThumbList( $dir, $files)
Delete a list of thumbnails visible at urls.
getUser( $type='text')
Returns user who uploaded the file.
decodeRow( $row, $prefix='img_')
Decode a row from the database (either object or array) to an array with timestamps and MIME types de...
string $description
Description of current revision of the file.
const CACHE_FIELD_MAX_LEN
unlock()
Decrement the lock reference count and end the atomic section if it reaches zero.
getLazyCacheFields( $prefix='img_')
Returns the list of object properties that are included as-is in the cache, only when they're not too...
getSize()
Returns the size of the image file, in bytes.
loadExtraFieldsWithTimestamp( $dbr, $fname)
invalidateCache()
Purge the file object/metadata cache.
getMimeType()
Returns the MIME type of the file.
bool $extraDataLoaded
Whether or not lazy-loaded data has been loaded from the database.
int $historyLine
Number of line to return by nextHistoryLine() (constructor)
string $sha1
SHA-1 base 36 content hash.
getHeight( $page=1)
Return the height of the image.
bool $locked
True if the image row is locked.
prerenderThumbnails()
Prerenders a configurable set of thumbnails.
bool $lockedOwnTrx
True if the image row is locked with a lock initiated transaction.
resetHistory()
Reset the history pointer to the first element of the history.
unprefixRow( $row, $prefix='img_')
static newFromRow( $row, $repo)
Create a LocalFile from a title Do not call this except from inside a repo class.
publish( $src, $flags=0, array $options=[])
Move or copy a file to its public location.
string $metadata
Handler-specific metadata.
restore( $versions=[], $unsuppress=false)
Restore all or specified deleted revisions to the given file.
getCacheFields( $prefix='img_')
Returns the list of object properties that are included as-is in the cache.
int $bits
Returned by getimagesize (loadFromXxx)
bool $missing
True if file is not present in file system.
getDescriptionText(Language $lang=null)
Get the HTML text of the description page This is not used by ImagePage for local files,...
purgeThumbnails( $options=[])
Delete cached transformed files for the current version only.
loadExtraFromDB()
Load lazy file metadata from the DB.
nextHistoryLine()
Returns the history of this file, line by line.
upgradeRow()
Fix assorted version-related problems with the image row by reloading it from the file.
int $deleted
Bitfield akin to rev_deleted.
loadFromCache()
Try to load file metadata from memcached, falling back to the database.
string $descriptionTouched
TS_MW timestamp of the last change of the file description.
getMetadata()
Get handler-specific metadata.
recordUpload2( $oldver, $comment, $pageText, $props=false, $timestamp=false, $user=null, $tags=[], $createNullRevision=true)
Record a file upload in the upload log and the image table.
__construct( $title, $repo)
Do not call this except from inside a repo class.
bool $dataLoaded
Whether or not core data has been loaded from the database (loadFromXxx)
bool $fileExists
Does the file exist on disk? (loadFromXxx)
static getHashFromKey( $key)
Gets the SHA1 hash from a storage key.
static makeParamBlob( $params)
Create a blob from a parameter array.
MimeMagic helper wrapper.
Class for creating new log entries and inserting them into the database.
setTimestamp( $timestamp)
Set the timestamp of when the logged action took place.
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new oldlocalfile object.
Set options of the Parser.
static singleton()
Get a RepoGroup instance.
static newNullRevision( $dbw, $pageId, $summary, $minor, $user=null)
Create a new null-revision for insertion into a page's history.
static getInitialPageText( $comment='', $license='', $copyStatus='', $source='', Config $config=null)
Get the initial image page text based on a comment and optional file status information.
merge( $other, $overwriteValue=false)
Merge another status object into this one.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Job for asynchronous rendering of thumbnails.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
getName()
Get the user name, or the IP of an anonymous user.
static newFromAnyId( $userId, $userName, $actorId)
Static factory method for creation from an ID, name, and/or actor ID.
Multi-datacenter aware caching interface.
Special handling for file pages.
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
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
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 use $formDescriptor instead 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 key
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
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
Allows to change the fields on the form that will be generated $name
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
> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) name
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
processing should stop and the error should be shown to the user * false
returning false will NOT prevent logging $e
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to publish
const SCHEMA_COMPAT_WRITE_BOTH
const SCHEMA_COMPAT_READ_NEW
const SCHEMA_COMPAT_WRITE_OLD
const SCHEMA_COMPAT_WRITE_NEW
const MIGRATION_WRITE_BOTH
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
MediaWiki has optional support for a high distributed memory object caching system For general information on but for a larger site with heavy load
if(!is_readable( $file)) $ext
if(!isset( $args[0])) $lang