MediaWiki REL1_31
OldLocalFile.php
Go to the documentation of this file.
1<?php
29class OldLocalFile extends LocalFile {
31 protected $requestedTime;
32
34 protected $archive_name;
35
36 const CACHE_VERSION = 1;
37 const MAX_CACHE_ROWS = 20;
38
46 static function newFromTitle( $title, $repo, $time = null ) {
47 # The null default value is only here to avoid an E_STRICT
48 if ( $time === null ) {
49 throw new MWException( __METHOD__ . ' got null for $time parameter' );
50 }
51
52 return new self( $title, $repo, $time, null );
53 }
54
61 static function newFromArchiveName( $title, $repo, $archiveName ) {
62 return new self( $title, $repo, null, $archiveName );
63 }
64
70 static function newFromRow( $row, $repo ) {
71 $title = Title::makeTitle( NS_FILE, $row->oi_name );
72 $file = new self( $title, $repo, null, $row->oi_archive_name );
73 $file->loadFromRow( $row, 'oi_' );
74
75 return $file;
76 }
77
88 static function newFromKey( $sha1, $repo, $timestamp = false ) {
89 $dbr = $repo->getReplicaDB();
90
91 $conds = [ 'oi_sha1' => $sha1 ];
92 if ( $timestamp ) {
93 $conds['oi_timestamp'] = $dbr->timestamp( $timestamp );
94 }
95
96 $fileQuery = self::getQueryInfo();
97 $row = $dbr->selectRow(
98 $fileQuery['tables'], $fileQuery['fields'], $conds, __METHOD__, [], $fileQuery['joins']
99 );
100 if ( $row ) {
101 return self::newFromRow( $row, $repo );
102 } else {
103 return false;
104 }
105 }
106
112 static function selectFields() {
114
115 wfDeprecated( __METHOD__, '1.31' );
117 // If code is using this instead of self::getQueryInfo(), there's a
118 // decent chance it's going to try to directly access
119 // $row->oi_user or $row->oi_user_text and we can't give it
120 // useful values here once those aren't being written anymore.
121 throw new BadMethodCallException(
122 'Cannot use ' . __METHOD__ . ' when $wgActorTableSchemaMigrationStage > MIGRATION_WRITE_BOTH'
123 );
124 }
125
126 return [
127 'oi_name',
128 'oi_archive_name',
129 'oi_size',
130 'oi_width',
131 'oi_height',
132 'oi_metadata',
133 'oi_bits',
134 'oi_media_type',
135 'oi_major_mime',
136 'oi_minor_mime',
137 'oi_user',
138 'oi_user_text',
139 'oi_actor' => $wgActorTableSchemaMigrationStage > MIGRATION_OLD ? 'oi_actor' : 'NULL',
140 'oi_timestamp',
141 'oi_deleted',
142 'oi_sha1',
143 ] + CommentStore::getStore()->getFields( 'oi_description' );
144 }
145
157 public static function getQueryInfo( array $options = [] ) {
158 $commentQuery = CommentStore::getStore()->getJoin( 'oi_description' );
159 $actorQuery = ActorMigration::newMigration()->getJoin( 'oi_user' );
160 $ret = [
161 'tables' => [ 'oldimage' ] + $commentQuery['tables'] + $actorQuery['tables'],
162 'fields' => [
163 'oi_name',
164 'oi_archive_name',
165 'oi_size',
166 'oi_width',
167 'oi_height',
168 'oi_bits',
169 'oi_media_type',
170 'oi_major_mime',
171 'oi_minor_mime',
172 'oi_timestamp',
173 'oi_deleted',
174 'oi_sha1',
175 ] + $commentQuery['fields'] + $actorQuery['fields'],
176 'joins' => $commentQuery['joins'] + $actorQuery['joins'],
177 ];
178
179 if ( in_array( 'omit-nonlazy', $options, true ) ) {
180 // Internal use only for getting only the lazy fields
181 $ret['fields'] = [];
182 }
183 if ( !in_array( 'omit-lazy', $options, true ) ) {
184 // Note: Keep this in sync with self::getLazyCacheFields()
185 $ret['fields'][] = 'oi_metadata';
186 }
187
188 return $ret;
189 }
190
198 function __construct( $title, $repo, $time, $archiveName ) {
199 parent::__construct( $title, $repo );
200 $this->requestedTime = $time;
201 $this->archive_name = $archiveName;
202 if ( is_null( $time ) && is_null( $archiveName ) ) {
203 throw new MWException( __METHOD__ . ': must specify at least one of $time or $archiveName' );
204 }
205 }
206
210 function getCacheKey() {
211 return false;
212 }
213
217 function getArchiveName() {
218 if ( !isset( $this->archive_name ) ) {
219 $this->load();
220 }
221
222 return $this->archive_name;
223 }
224
228 function isOld() {
229 return true;
230 }
231
235 function isVisible() {
236 return $this->exists() && !$this->isDeleted( File::DELETED_FILE );
237 }
238
239 function loadFromDB( $flags = 0 ) {
240 $this->dataLoaded = true;
241
242 $dbr = ( $flags & self::READ_LATEST )
243 ? $this->repo->getMasterDB()
244 : $this->repo->getReplicaDB();
245
246 $conds = [ 'oi_name' => $this->getName() ];
247 if ( is_null( $this->requestedTime ) ) {
248 $conds['oi_archive_name'] = $this->archive_name;
249 } else {
250 $conds['oi_timestamp'] = $dbr->timestamp( $this->requestedTime );
251 }
252 $fileQuery = static::getQueryInfo();
253 $row = $dbr->selectRow(
254 $fileQuery['tables'],
255 $fileQuery['fields'],
256 $conds,
257 __METHOD__,
258 [ 'ORDER BY' => 'oi_timestamp DESC' ],
259 $fileQuery['joins']
260 );
261 if ( $row ) {
262 $this->loadFromRow( $row, 'oi_' );
263 } else {
264 $this->fileExists = false;
265 }
266 }
267
271 protected function loadExtraFromDB() {
272 $this->extraDataLoaded = true;
273 $dbr = $this->repo->getReplicaDB();
274 $conds = [ 'oi_name' => $this->getName() ];
275 if ( is_null( $this->requestedTime ) ) {
276 $conds['oi_archive_name'] = $this->archive_name;
277 } else {
278 $conds['oi_timestamp'] = $dbr->timestamp( $this->requestedTime );
279 }
280 $fileQuery = static::getQueryInfo( [ 'omit-nonlazy' ] );
281 // In theory the file could have just been renamed/deleted...oh well
282 $row = $dbr->selectRow(
283 $fileQuery['tables'],
284 $fileQuery['fields'],
285 $conds,
286 __METHOD__,
287 [ 'ORDER BY' => 'oi_timestamp DESC' ],
288 $fileQuery['joins']
289 );
290
291 if ( !$row ) { // fallback to master
292 $dbr = $this->repo->getMasterDB();
293 $row = $dbr->selectRow(
294 $fileQuery['tables'],
295 $fileQuery['fields'],
296 $conds,
297 __METHOD__,
298 [ 'ORDER BY' => 'oi_timestamp DESC' ],
299 $fileQuery['joins']
300 );
301 }
302
303 if ( $row ) {
304 foreach ( $this->unprefixRow( $row, 'oi_' ) as $name => $value ) {
305 $this->$name = $value;
306 }
307 } else {
308 throw new MWException( "Could not find data for image '{$this->archive_name}'." );
309 }
310 }
311
313 protected function getCacheFields( $prefix = 'img_' ) {
314 $fields = parent::getCacheFields( $prefix );
315 $fields[] = $prefix . 'archive_name';
316 $fields[] = $prefix . 'deleted';
317
318 return $fields;
319 }
320
324 function getRel() {
325 return 'archive/' . $this->getHashPath() . $this->getArchiveName();
326 }
327
331 function getUrlRel() {
332 return 'archive/' . $this->getHashPath() . rawurlencode( $this->getArchiveName() );
333 }
334
335 function upgradeRow() {
336 $this->loadFromFile();
337
338 # Don't destroy file info of missing files
339 if ( !$this->fileExists ) {
340 wfDebug( __METHOD__ . ": file does not exist, aborting\n" );
341
342 return;
343 }
344
345 $dbw = $this->repo->getMasterDB();
346 list( $major, $minor ) = self::splitMime( $this->mime );
347
348 wfDebug( __METHOD__ . ': upgrading ' . $this->archive_name . " to the current schema\n" );
349 $dbw->update( 'oldimage',
350 [
351 'oi_size' => $this->size, // sanity
352 'oi_width' => $this->width,
353 'oi_height' => $this->height,
354 'oi_bits' => $this->bits,
355 'oi_media_type' => $this->media_type,
356 'oi_major_mime' => $major,
357 'oi_minor_mime' => $minor,
358 'oi_metadata' => $this->metadata,
359 'oi_sha1' => $this->sha1,
360 ], [
361 'oi_name' => $this->getName(),
362 'oi_archive_name' => $this->archive_name ],
363 __METHOD__
364 );
365 }
366
372 function isDeleted( $field ) {
373 $this->load();
374
375 return ( $this->deleted & $field ) == $field;
376 }
377
382 function getVisibility() {
383 $this->load();
384
385 return (int)$this->deleted;
386 }
387
396 function userCan( $field, User $user = null ) {
397 $this->load();
398
399 return Revision::userCanBitfield( $this->deleted, $field, $user );
400 }
401
413 function uploadOld( $srcPath, $archiveName, $timestamp, $comment, $user ) {
414 $this->lock();
415
416 $dstRel = 'archive/' . $this->getHashPath() . $archiveName;
417 $status = $this->publishTo( $srcPath, $dstRel );
418
419 if ( $status->isGood() ) {
420 if ( !$this->recordOldUpload( $srcPath, $archiveName, $timestamp, $comment, $user ) ) {
421 $status->fatal( 'filenotfound', $srcPath );
422 }
423 }
424
425 $this->unlock();
426
427 return $status;
428 }
429
440 protected function recordOldUpload( $srcPath, $archiveName, $timestamp, $comment, $user ) {
441 $dbw = $this->repo->getMasterDB();
442
443 $dstPath = $this->repo->getZonePath( 'public' ) . '/' . $this->getRel();
444 $props = $this->repo->getFileProps( $dstPath );
445 if ( !$props['fileExists'] ) {
446 return false;
447 }
448
449 $commentFields = CommentStore::getStore()->insert( $dbw, 'oi_description', $comment );
450 $actorFields = ActorMigration::newMigration()->getInsertValues( $dbw, 'oi_user', $user );
451 $dbw->insert( 'oldimage',
452 [
453 'oi_name' => $this->getName(),
454 'oi_archive_name' => $archiveName,
455 'oi_size' => $props['size'],
456 'oi_width' => intval( $props['width'] ),
457 'oi_height' => intval( $props['height'] ),
458 'oi_bits' => $props['bits'],
459 'oi_timestamp' => $dbw->timestamp( $timestamp ),
460 'oi_metadata' => $props['metadata'],
461 'oi_media_type' => $props['media_type'],
462 'oi_major_mime' => $props['major_mime'],
463 'oi_minor_mime' => $props['minor_mime'],
464 'oi_sha1' => $props['sha1'],
465 ] + $commentFields + $actorFields, __METHOD__
466 );
467
468 return true;
469 }
470
478 public function exists() {
479 $archiveName = $this->getArchiveName();
480 if ( $archiveName === '' || !is_string( $archiveName ) ) {
481 return false;
482 }
483 return parent::exists();
484 }
485}
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.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
getName()
Return the name of this file.
Definition File.php:297
string $name
The name of a file from its title object.
Definition File.php:123
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
Definition File.php:96
const DELETED_FILE
Definition File.php:53
static splitMime( $mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
Definition File.php:273
Title string bool $title
Definition File.php:99
getHashPath()
Get the filename hash component of the directory including trailing slash, e.g.
Definition File.php:1517
Class to represent a local file in the wiki's own database.
Definition LocalFile.php:46
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.
loadFromFile()
Load metadata from the file itself.
string $timestamp
Upload timestamp.
publishTo( $src, $dstRel, $flags=0, array $options=[])
Move or copy a file to a specified location.
unlock()
Decrement the lock reference count and end the atomic section if it reaches zero.
User $user
Uploader.
string $sha1
SHA-1 base 36 content hash.
Definition LocalFile.php:76
unprefixRow( $row, $prefix='img_')
int $deleted
Bitfield akin to rev_deleted.
Definition LocalFile.php:85
MediaWiki exception.
Class to represent a file in the oldimage table.
const MAX_CACHE_ROWS
static newFromArchiveName( $title, $repo, $archiveName)
upgradeRow()
Fix assorted version-related problems with the image row by reloading it from the file.
recordOldUpload( $srcPath, $archiveName, $timestamp, $comment, $user)
Record a file upload in the oldimage table, without adding log entries.
static newFromRow( $row, $repo)
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new oldlocalfile object.
const CACHE_VERSION
__construct( $title, $repo, $time, $archiveName)
loadFromDB( $flags=0)
Load file metadata from the DB.
static newFromKey( $sha1, $repo, $timestamp=false)
Create a OldLocalFile from a SHA-1 key Do not call this except from inside a repo class.
getVisibility()
Returns bitfield value.
static newFromTitle( $title, $repo, $time=null)
string $archive_name
Archive name.
userCan( $field, User $user=null)
Determine if the current user is allowed to view a particular field of this image file,...
static selectFields()
Fields in the oldimage table.
exists()
If archive name is an empty string, then file does not "exist".
getCacheFields( $prefix='img_')
@inheritDoc
uploadOld( $srcPath, $archiveName, $timestamp, $comment, $user)
Upload a file directly into archive.
string int $requestedTime
Timestamp.
isDeleted( $field)
loadExtraFromDB()
Load lazy file metadata from the DB.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:53
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const NS_FILE
Definition Defines.php:80
const MIGRATION_WRITE_BOTH
Definition Defines.php:303
const MIGRATION_OLD
Definition Defines.php:302
the array() calling protocol came about after MediaWiki 1.4rc1.
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition hooks.txt:1795
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2005
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1255
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
MediaWiki has optional support for a high distributed memory object caching system For general information on but for a larger site with heavy load
Definition memcached.txt:6
width