48 private const VERSION =
"2.1";
53 private const IMAGE_INFO_PROPS = [
58 protected $fileFactory = [ ForeignAPIFile::class,
'newFromTitle' ];
88 $localFileRepo = MediaWikiServices::getInstance()->getMainConfig()
89 ->get( MainConfigNames::LocalFileRepo );
90 parent::__construct( $info );
93 $this->mApiBase = $info[
'apibase'] ??
null;
95 if ( isset( $info[
'apiThumbCacheExpiry'] ) ) {
96 $this->apiThumbCacheExpiry = $info[
'apiThumbCacheExpiry'];
98 if ( isset( $info[
'fileCacheExpiry'] ) ) {
99 $this->fileCacheExpiry = $info[
'fileCacheExpiry'];
101 if ( isset( $info[
'apiMetadataExpiry'] ) ) {
102 $this->apiMetadataExpiry = $info[
'apiMetadataExpiry'];
104 if ( !$this->scriptDirUrl ) {
106 $this->scriptDirUrl = dirname( $this->mApiBase );
110 $this->url = $localFileRepo[
'url'];
113 $this->thumbUrl = $this->url .
'/thumb';
120 private function getApiUrl() {
121 return $this->mApiBase;
137 return parent::newFile(
$title, $time );
146 foreach ( $files as $k => $f ) {
147 if ( isset( $this->mFileExists[$f] ) ) {
148 $results[$k] = $this->mFileExists[$f];
150 } elseif ( self::isVirtualUrl( $f ) ) {
151 # @todo FIXME: We need to be able to handle virtual
152 # URLs better, at least when we know they refer to the
154 $results[$k] =
false;
157 $results[$k] =
false;
159 wfWarn(
"Got mwstore:// path '$f'." );
164 'titles' => implode(
'|', $files ),
165 'prop' =>
'imageinfo' ]
168 if ( isset( $data[
'query'][
'pages'] ) ) {
169 # First, get results from the query. Note we only care whether the image exists,
170 # not whether it has a description page.
171 foreach ( $data[
'query'][
'pages'] as $p ) {
172 $this->mFileExists[$p[
'title']] = ( $p[
'imagerepository'] !==
'' );
174 # Second, copy the results to any redirects that were queried
175 if ( isset( $data[
'query'][
'redirects'] ) ) {
176 foreach ( $data[
'query'][
'redirects'] as $r ) {
177 $this->mFileExists[$r[
'from']] = $this->mFileExists[$r[
'to']];
180 # Third, copy the results to any non-normalized titles that were queried
181 if ( isset( $data[
'query'][
'normalized'] ) ) {
182 foreach ( $data[
'query'][
'normalized'] as $n ) {
183 $this->mFileExists[$n[
'from']] = $this->mFileExists[$n[
'to']];
186 # Finally, copy the results to the output
187 foreach ( $files as $key =>
$file ) {
188 $results[$key] = $this->mFileExists[
$file];
210 $languageCode = MediaWikiServices::getInstance()->getMainConfig()
211 ->get( MainConfigNames::LanguageCode );
213 $query = array_merge( $query,
217 'redirects' =>
'true'
220 if ( !isset( $query[
'uselang'] ) ) {
221 $query[
'uselang'] = $languageCode;
224 $data = $this->
httpGetCached(
'Metadata', $query, $this->apiMetadataExpiry );
227 return FormatJson::decode( $data,
true );
238 if ( $data && isset( $data[
'query'][
'pages'] ) ) {
239 foreach ( $data[
'query'][
'pages'] as $info ) {
240 if ( isset( $info[
'imageinfo'][0] ) ) {
241 $return = $info[
'imageinfo'][0];
242 if ( isset( $info[
'pageid'] ) ) {
243 $return[
'pageid'] = $info[
'pageid'];
259 'aisha1base36' => $hash,
261 'list' =>
'allimages',
264 if ( isset( $results[
'query'][
'allimages'] ) ) {
265 foreach ( $results[
'query'][
'allimages'] as $img ) {
267 if ( !isset( $img[
'name'] ) ) {
286 private function getThumbUrl(
287 $name, $width = -1, $height = -1, &$result =
null, $otherParams =
''
290 'titles' =>
'File:' .
$name,
291 'iiprop' => self::getIIProps(),
292 'iiurlwidth' => $width,
293 'iiurlheight' => $height,
294 'iiurlparam' => $otherParams,
295 'prop' =>
'imageinfo' ] );
298 if ( $data && $info && isset( $info[
'thumburl'] ) ) {
299 wfDebug( __METHOD__ .
" got remote thumb " . $info[
'thumburl'] );
302 return $info[
'thumburl'];
318 $name, $width = -1, $height = -1, $otherParams =
'',
$lang =
null
321 'titles' =>
'File:' .
$name,
322 'iiprop' => self::getIIProps(),
323 'iiurlwidth' => $width,
324 'iiurlheight' => $height,
325 'iiurlparam' => $otherParams,
326 'prop' =>
'imageinfo',
331 if ( $data && $info && isset( $info[
'thumberror'] ) ) {
332 wfDebug( __METHOD__ .
" got remote thumb error " . $info[
'thumberror'] );
335 'thumbnail_error_remote',
367 return $this->getThumbUrl(
$name, $width, $height, $result, $params );
371 $sizekey =
"$width:$height:$params";
374 $knownThumbUrls = $this->wanCache->get( $key );
375 if ( !$knownThumbUrls ) {
377 $knownThumbUrls = [];
378 } elseif ( isset( $knownThumbUrls[$sizekey] ) ) {
379 wfDebug( __METHOD__ .
': Got thumburl from local cache: ' .
380 "{$knownThumbUrls[$sizekey]}" );
382 return $knownThumbUrls[$sizekey];
386 $foreignUrl = $this->getThumbUrl(
$name, $width, $height, $metadata, $params );
388 if ( !$foreignUrl ) {
389 wfDebug( __METHOD__ .
" Could not find thumburl" );
395 $fileName = rawurldecode( pathinfo( $foreignUrl, PATHINFO_BASENAME ) );
397 wfDebug( __METHOD__ .
" The deduced filename $fileName is not safe" );
402 $localFilename = $localPath .
"/" . $fileName;
404 rawurlencode(
$name ) .
"/" . rawurlencode( $fileName );
407 && isset( $metadata[
'timestamp'] )
409 wfDebug( __METHOD__ .
" Thumbnail was already downloaded before" );
411 $remoteModified = (int)
wfTimestamp( TS_UNIX, $metadata[
'timestamp'] );
413 $diff = abs( $modified - $current );
414 if ( $remoteModified < $modified && $diff < $this->fileCacheExpiry ) {
416 $knownThumbUrls[$sizekey] = $localUrl;
417 $this->wanCache->set( $key, $knownThumbUrls, $this->apiThumbCacheExpiry );
424 $thumb =
self::httpGet( $foreignUrl,
'default', [], $mtime );
426 wfDebug( __METHOD__ .
" Could not download thumb" );
431 # @todo FIXME: Delete old thumbs that aren't being used. Maintenance script?
433 $params = [
'dst' => $localFilename,
'content' => $thumb ];
435 wfDebug( __METHOD__ .
" could not write to thumb path '$localFilename'" );
439 $knownThumbUrls[$sizekey] = $localUrl;
442 ? $this->wanCache->adaptiveTTL( $mtime, $this->apiThumbCacheExpiry )
444 $this->wanCache->set( $key, $knownThumbUrls, $ttl );
445 wfDebug( __METHOD__ .
" got local thumb $localUrl, saving to cache" );
463 return parent::getZoneUrl( $zone,
$ext );
473 $supported = [
'public',
'thumb' ];
474 if ( in_array( $zone, $supported ) ) {
475 return parent::getZonePath( $zone );
486 return ( $this->apiThumbCacheExpiry > 0 );
494 return MediaWikiServices::getInstance()->getHttpRequestFactory()->getUserAgent() .
495 " ForeignAPIRepo/" . self::VERSION;
505 $info = parent::getInfo();
506 $info[
'apiurl'] = $this->getApiUrl();
511 'meta' =>
'siteinfo',
512 'siprop' =>
'general',
518 $siteInfo = FormatJson::decode( $data,
true );
519 $general = $siteInfo[
'query'][
'general'];
521 $info[
'articlepath'] = $general[
'articlepath'];
522 $info[
'server'] = $general[
'server'];
523 if ( !isset( $info[
'favicon'] ) && isset( $general[
'favicon'] ) ) {
524 $info[
'favicon'] = $general[
'favicon'];
539 $url, $timeout =
'default', $options = [], &$mtime =
false
541 $options[
'timeout'] = $timeout;
542 $url = MediaWikiServices::getInstance()->getUrlUtils()
544 wfDebug(
"ForeignAPIRepo: HTTP GET: $url" );
548 $options[
'method'] =
"GET";
550 if ( !isset( $options[
'timeout'] ) ) {
551 $options[
'timeout'] =
'default';
556 $req = MediaWikiServices::getInstance()->getHttpRequestFactory()
557 ->create(
$url, $options, __METHOD__ );
558 $status = $req->execute();
560 if ( $status->isOK() ) {
561 $lmod = $req->getResponseHeader(
'Last-Modified' );
562 $mtime = $lmod ? (int)
wfTimestamp( TS_UNIX, $lmod ) :
false;
564 return $req->getContent();
566 $logger = LoggerFactory::getInstance(
'http' );
568 $status->getWikiText(
false,
false,
'en' ),
569 [
'caller' =>
'ForeignAPIRepo::httpGet' ]
581 return implode(
'|', self::IMAGE_INFO_PROPS );
592 if ( $this->mApiBase ) {
598 return $this->wanCache->getWithSetCallback(
602 $this->wanCache->makeGlobalKey(
"filerepo-$attribute", sha1(
$url ) ),
604 function ( $curValue, &$ttl ) use (
$url ) {
608 if ( $html !==
false ) {
609 $ttl = $mtime ? $this->wanCache->adaptiveTTL( $mtime, $ttl ) : $ttl;
611 $ttl = $this->wanCache->adaptiveTTL( $mtime, $ttl );
617 [
'pcGroup' =>
'http-get:3',
'pcTTL' => WANObjectCache::TTL_PROC_LONG ]
627 throw new MWException(
'enumFiles is not supported by ' . static::class );
634 throw new MWException( static::class .
': write operations are not supported.' );
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static isStoragePath( $path)
Check if a given path is a "mwstore://" path.
quickCreate(array $params, array $opts=[])
Performs a single quick create operation.
fileExists(array $params)
Check if a file exists at a storage path in the backend.
getFileTimestamp(array $params)
Get the last-modified timestamp of the file at a storage path.
prepare(array $params)
Prepare a storage directory for usage.
Base class for file repositories.
getDisplayName()
Get the human-readable name of the repo.
getLocalCacheKey( $kClassSuffix,... $components)
Get a site-local, repository-qualified, WAN cache key.
makeUrl( $query='', $entry='index')
Make an url to this repo.
string false $url
Public zone URL.
validateFilename( $filename)
Determine if a relative path is valid, i.e.
string false $thumbUrl
The base thumbnail URL.
getHashPath( $name)
Get a relative path including trailing slash, e.g.
getBackend()
Get the file backend instance.
Foreign file accessible through api.php requests.
static getProps()
Get the property string for iiprop and aiprop.
A foreign repository for a remote MediaWiki accessible through api.php requests.
int $fileCacheExpiry
Redownload thumbnail files after this expiry.
newFile( $title, $time=false)
Per docs in FileRepo, this needs to return false if we don't support versioned files.
int $apiMetadataExpiry
API metadata cache time.
static httpGet( $url, $timeout='default', $options=[], &$mtime=false)
getInfo()
Get information about the repo - overrides/extends the parent class's information.
static getUserAgent()
The user agent the ForeignAPIRepo will use.
fetchImageQuery( $query)
Make an API query in the foreign repo, caching results.
getThumbError( $name, $width=-1, $height=-1, $otherParams='', $lang=null)
canCacheThumbs()
Are we locally caching the thumbnails?
int $apiThumbCacheExpiry
Check back with Commons after this expiry.
getFileProps( $virtualUrl)
getThumbUrlFromCache( $name, $width, $height, $params="")
Return the imageurl from cache if possible.
fileExistsBatch(array $files)
getZoneUrl( $zone, $ext=null)
getZonePath( $zone)
Get the local directory corresponding to one of the basic zones.
httpGetCached( $attribute, $query, $cacheTTL=3600)
HTTP GET request to a mediawiki API (with caching)
A class containing constants representing the names of configuration variables.
A foreign repo that implement support for API queries.
Interface for objects (potentially) representing an editable wiki page.
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
if(!is_readable( $file)) $ext
if(!isset( $args[0])) $lang