45 parent::__construct( $title,
$repo );
48 $this->mExists = $exists;
59 $data =
$repo->fetchImageQuery( [
60 'titles' =>
'File:' . $title->getDBkey(),
61 'iiprop' => self::getProps(),
62 'prop' =>
'imageinfo',
66 'iiextmetadatamultilang' => 1,
69 $info =
$repo->getImageInfo( $data );
72 $lastRedirect = isset( $data[
'query'][
'redirects'] )
73 ? count( $data[
'query'][
'redirects'] ) - 1
75 if ( $lastRedirect >= 0 ) {
76 $newtitle = Title::newFromText( $data[
'query'][
'redirects'][$lastRedirect][
'to'] );
77 $img =
new self( $newtitle,
$repo, $info,
true );
79 $img->redirectedFrom( $title->getDBkey() );
96 return 'timestamp|user|comment|url|size|sha1|metadata|mime|mediatype|extmetadata';
123 return parent::transform(
$params, $flags );
132 $thumbUrl = $this->repo->getThumbUrlFromCache(
138 if ( $thumbUrl ===
false ) {
141 return $this->repo->getThumbError(
150 return $this->
handler->getTransform( $this,
'bogus', $thumbUrl,
$params );
160 return isset( $this->mInfo[
'width'] ) ? intval( $this->mInfo[
'width'] ) : 0;
168 return isset( $this->mInfo[
'height'] ) ? intval( $this->mInfo[
'height'] ) : 0;
175 if ( isset( $this->mInfo[
'metadata'] ) ) {
176 return serialize( self::parseMetadata( $this->mInfo[
'metadata'] ) );
187 if ( isset( $this->mInfo[
'extmetadata'] ) ) {
188 return $this->mInfo[
'extmetadata'];
199 if ( !is_array( $metadata ) ) {
203 foreach ( $metadata as $meta ) {
214 return isset( $this->mInfo[
'size'] ) ? intval( $this->mInfo[
'size'] ) :
null;
221 return isset( $this->mInfo[
'url'] ) ? strval( $this->mInfo[
'url'] ) :
null;
232 if ( isset( $this->mInfo[
'descriptionshorturl'] ) ) {
233 return $this->mInfo[
'descriptionshorturl'];
234 } elseif ( isset( $this->mInfo[
'pageid'] ) ) {
235 $url = $this->repo->makeUrl( [
'curid' => $this->mInfo[
'pageid'] ] );
236 if (
$url !==
false ) {
248 if (
$type ==
'text' ) {
249 return isset( $this->mInfo[
'user'] ) ? strval( $this->mInfo[
'user'] ) :
null;
261 return isset( $this->mInfo[
'comment'] ) ? strval( $this->mInfo[
'comment'] ) :
null;
268 return isset( $this->mInfo[
'sha1'] )
269 ? Wikimedia\base_convert( strval( $this->mInfo[
'sha1'] ), 16, 36, 31 )
278 isset( $this->mInfo[
'timestamp'] )
279 ? strval( $this->mInfo[
'timestamp'] )
288 if ( !isset( $this->mInfo[
'mime'] ) ) {
289 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
290 $this->mInfo[
'mime'] = $magic->guessTypesForExtension( $this->
getExtension() );
293 return $this->mInfo[
'mime'];
300 if ( isset( $this->mInfo[
'mediatype'] ) ) {
301 return $this->mInfo[
'mediatype'];
303 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
305 return $magic->getMediaType(
null, $this->
getMimeType() );
312 return isset( $this->mInfo[
'descriptionurl'] )
313 ? $this->mInfo[
'descriptionurl']
323 if ( $this->repo->canCacheThumbs() ) {
324 $path = $this->repo->getZonePath(
'thumb' ) .
'/' . $this->
getHashPath( $this->
getName() );
326 $path = $path . $suffix .
'/';
340 $iter = $this->repo->getBackend()->getFileList( [
'dir' => $dir ] );
344 foreach ( $iter as $file ) {
360 $url = $this->repo->getDescriptionRenderUrl( $this->
getName(), $wgContLang->getCode() );
361 $key = $this->repo->getLocalCacheKey(
'RemoteFileDescription',
'url', md5(
$url ) );
363 ObjectCache::getMainWANInstance()->delete( $key );
370 $key = $this->repo->getLocalCacheKey(
'ForeignAPIRepo',
'ThumbUrl', $this->
getName() );
371 ObjectCache::getMainWANInstance()->delete( $key );
382 foreach ( $files as $file ) {
383 $purgeList[] =
"{$dir}{$file}";
386 # Delete the thumbnails
387 $this->repo->quickPurgeBatch( $purgeList );
388 # Clear out the thumbnail directory if empty
389 $this->repo->quickCleanDir( $dir );
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
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.
assertRepoDefined()
Assert that $this->repo is set to a valid FileRepo instance.
getName()
Return the name of this file.
canRender()
Checks if the output of transform() for this file is likely to be valid.
getExtension()
Get the file extension, e.g.
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
string $path
The storage path corresponding to one of the zones.
getHandler()
Get a MediaHandler instance for this file.
getHashPath()
Get the filename hash component of the directory including trailing slash, e.g.
Foreign file accessible through api.php requests.
getThumbPath( $suffix='')
Only useful if we're locally caching thumbs anyway...
__construct( $title, $repo, $info, $exists=false)
purgeCache( $options=[])
Purge shared caches such as thumbnails and DB data caching STUB Overridden by LocalFile.
isTransformedLocally()
The thumbnail is created on the foreign server and fetched over internet.
static parseMetadata( $metadata)
static newFromTitle(Title $title, $repo)
purgeThumbnails( $options=[])
getDescription( $audience=self::FOR_PUBLIC, User $user=null)
transform( $params, $flags=0)
getDescriptionShortUrl()
Get short description URL for a file based on the foreign API response, or if unavailable,...
static getProps()
Get the property string for iiprop and aiprop.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves set to a MediaTransformOutput the error message to be returned in an array you should do so by altering $wgNamespaceProtection and $wgNamespaceContentModels outside the handler
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
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