3 * Foreign repository accessible through api.php requests.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 use MediaWiki\Logger\LoggerFactory
;
27 * A foreign repository with a remote MediaWiki with an API thingy
31 * $wgForeignFileRepos[] = array(
32 * 'class' => 'ForeignAPIRepo',
34 * 'apibase' => 'https://en.wikipedia.org/w/api.php',
35 * 'fetchDescription' => true, // Optional
36 * 'descriptionCacheExpiry' => 3600,
41 class ForeignAPIRepo
extends FileRepo
{
42 /* This version string is used in the user agent for requests and will help
43 * server maintainers in identify ForeignAPI usage.
44 * Update the version every time you make breaking or significant changes. */
45 const VERSION
= "2.1";
48 * List of iiprop values for the thumbnail fetch queries.
51 protected static $imageInfoProps = array(
57 protected $fileFactory = array( 'ForeignAPIFile', 'newFromTitle' );
58 /** @var int Check back with Commons after this expiry */
59 protected $apiThumbCacheExpiry = 86400; // 1 day (24*3600)
61 /** @var int Redownload thumbnail files after this expiry */
62 protected $fileCacheExpiry = 2592000; // 1 month (30*24*3600)
65 protected $mFileExists = array();
68 private $mQueryCache = array();
71 * @param array|null $info
73 function __construct( $info ) {
74 global $wgLocalFileRepo;
75 parent
::__construct( $info );
77 // https://commons.wikimedia.org/w/api.php
78 $this->mApiBase
= isset( $info['apibase'] ) ?
$info['apibase'] : null;
80 if ( isset( $info['apiThumbCacheExpiry'] ) ) {
81 $this->apiThumbCacheExpiry
= $info['apiThumbCacheExpiry'];
83 if ( isset( $info['fileCacheExpiry'] ) ) {
84 $this->fileCacheExpiry
= $info['fileCacheExpiry'];
86 if ( !$this->scriptDirUrl
) {
87 // hack for description fetches
88 $this->scriptDirUrl
= dirname( $this->mApiBase
);
90 // If we can cache thumbs we can guess sane defaults for these
91 if ( $this->canCacheThumbs() && !$this->url
) {
92 $this->url
= $wgLocalFileRepo['url'];
94 if ( $this->canCacheThumbs() && !$this->thumbUrl
) {
95 $this->thumbUrl
= $this->url
. '/thumb';
103 function getApiUrl() {
104 return $this->mApiBase
;
108 * Per docs in FileRepo, this needs to return false if we don't support versioned
109 * files. Well, we don't.
111 * @param Title $title
112 * @param string|bool $time
115 function newFile( $title, $time = false ) {
120 return parent
::newFile( $title, $time );
124 * @param array $files
127 function fileExistsBatch( array $files ) {
129 foreach ( $files as $k => $f ) {
130 if ( isset( $this->mFileExists
[$f] ) ) {
131 $results[$k] = $this->mFileExists
[$f];
133 } elseif ( self
::isVirtualUrl( $f ) ) {
134 # @todo FIXME: We need to be able to handle virtual
135 # URLs better, at least when we know they refer to the
137 $results[$k] = false;
139 } elseif ( FileBackend
::isStoragePath( $f ) ) {
140 $results[$k] = false;
142 wfWarn( "Got mwstore:// path '$f'." );
146 $data = $this->fetchImageQuery( array(
147 'titles' => implode( $files, '|' ),
148 'prop' => 'imageinfo' )
151 if ( isset( $data['query']['pages'] ) ) {
152 # First, get results from the query. Note we only care whether the image exists,
153 # not whether it has a description page.
154 foreach ( $data['query']['pages'] as $p ) {
155 $this->mFileExists
[$p['title']] = ( $p['imagerepository'] !== '' );
157 # Second, copy the results to any redirects that were queried
158 if ( isset( $data['query']['redirects'] ) ) {
159 foreach ( $data['query']['redirects'] as $r ) {
160 $this->mFileExists
[$r['from']] = $this->mFileExists
[$r['to']];
163 # Third, copy the results to any non-normalized titles that were queried
164 if ( isset( $data['query']['normalized'] ) ) {
165 foreach ( $data['query']['normalized'] as $n ) {
166 $this->mFileExists
[$n['from']] = $this->mFileExists
[$n['to']];
169 # Finally, copy the results to the output
170 foreach ( $files as $key => $file ) {
171 $results[$key] = $this->mFileExists
[$file];
179 * @param string $virtualUrl
182 function getFileProps( $virtualUrl ) {
187 * @param array $query
190 function fetchImageQuery( $query ) {
191 global $wgLanguageCode;
193 $query = array_merge( $query,
197 'redirects' => 'true'
200 if ( !isset( $query['uselang'] ) ) { // uselang is unset or null
201 $query['uselang'] = $wgLanguageCode;
204 $data = $this->httpGetCached( 'Metadata', $query );
207 return FormatJson
::decode( $data, true );
217 function getImageInfo( $data ) {
218 if ( $data && isset( $data['query']['pages'] ) ) {
219 foreach ( $data['query']['pages'] as $info ) {
220 if ( isset( $info['imageinfo'][0] ) ) {
221 $return = $info['imageinfo'][0];
222 if ( isset( $info['pageid'] ) ) {
223 $return['pageid'] = $info['pageid'];
234 * @param string $hash
237 function findBySha1( $hash ) {
238 $results = $this->fetchImageQuery( array(
239 'aisha1base36' => $hash,
240 'aiprop' => ForeignAPIFile
::getProps(),
241 'list' => 'allimages',
244 if ( isset( $results['query']['allimages'] ) ) {
245 foreach ( $results['query']['allimages'] as $img ) {
246 // 1.14 was broken, doesn't return name attribute
247 if ( !isset( $img['name'] ) ) {
250 $ret[] = new ForeignAPIFile( Title
::makeTitle( NS_FILE
, $img['name'] ), $this, $img );
258 * @param string $name
261 * @param array $result Out parameter that will be changed by the function.
262 * @param string $otherParams
266 function getThumbUrl( $name, $width = -1, $height = -1, &$result = null, $otherParams = '' ) {
267 $data = $this->fetchImageQuery( array(
268 'titles' => 'File:' . $name,
269 'iiprop' => self
::getIIProps(),
270 'iiurlwidth' => $width,
271 'iiurlheight' => $height,
272 'iiurlparam' => $otherParams,
273 'prop' => 'imageinfo' ) );
274 $info = $this->getImageInfo( $data );
276 if ( $data && $info && isset( $info['thumburl'] ) ) {
277 wfDebug( __METHOD__
. " got remote thumb " . $info['thumburl'] . "\n" );
280 return $info['thumburl'];
287 * @param string $name
290 * @param string $otherParams
291 * @param string $lang Language code for language of error
292 * @return bool|MediaTransformError
295 function getThumbError( $name, $width = -1, $height = -1, $otherParams = '', $lang = null ) {
296 $data = $this->fetchImageQuery( array(
297 'titles' => 'File:' . $name,
298 'iiprop' => self
::getIIProps(),
299 'iiurlwidth' => $width,
300 'iiurlheight' => $height,
301 'iiurlparam' => $otherParams,
302 'prop' => 'imageinfo',
305 $info = $this->getImageInfo( $data );
307 if ( $data && $info && isset( $info['thumberror'] ) ) {
308 wfDebug( __METHOD__
. " got remote thumb error " . $info['thumberror'] . "\n" );
310 return new MediaTransformError(
311 'thumbnail_error_remote',
314 $this->getDisplayName(),
315 $info['thumberror'] // already parsed message from foreign repo
323 * Return the imageurl from cache if possible
325 * If the url has been requested today, get it from cache
326 * Otherwise retrieve remote thumb url, check for local file.
328 * @param string $name Is a dbkey form of a title
331 * @param string $params Other rendering parameters (page number, etc)
332 * from handler's makeParamString.
333 * @return bool|string
335 function getThumbUrlFromCache( $name, $width, $height, $params = "" ) {
336 $cache = ObjectCache
::getMainWANInstance();
337 // We can't check the local cache using FileRepo functions because
338 // we override fileExistsBatch(). We have to use the FileBackend directly.
339 $backend = $this->getBackend(); // convenience
341 if ( !$this->canCacheThumbs() ) {
342 $result = null; // can't pass "null" by reference, but it's ok as default value
343 return $this->getThumbUrl( $name, $width, $height, $result, $params );
345 $key = $this->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $name );
346 $sizekey = "$width:$height:$params";
348 /* Get the array of urls that we already know */
349 $knownThumbUrls = $cache->get( $key );
350 if ( !$knownThumbUrls ) {
351 /* No knownThumbUrls for this file */
352 $knownThumbUrls = array();
354 if ( isset( $knownThumbUrls[$sizekey] ) ) {
355 wfDebug( __METHOD__
. ': Got thumburl from local cache: ' .
356 "{$knownThumbUrls[$sizekey]} \n" );
358 return $knownThumbUrls[$sizekey];
360 /* This size is not yet known */
364 $foreignUrl = $this->getThumbUrl( $name, $width, $height, $metadata, $params );
366 if ( !$foreignUrl ) {
367 wfDebug( __METHOD__
. " Could not find thumburl\n" );
372 // We need the same filename as the remote one :)
373 $fileName = rawurldecode( pathinfo( $foreignUrl, PATHINFO_BASENAME
) );
374 if ( !$this->validateFilename( $fileName ) ) {
375 wfDebug( __METHOD__
. " The deduced filename $fileName is not safe\n" );
379 $localPath = $this->getZonePath( 'thumb' ) . "/" . $this->getHashPath( $name ) . $name;
380 $localFilename = $localPath . "/" . $fileName;
381 $localUrl = $this->getZoneUrl( 'thumb' ) . "/" . $this->getHashPath( $name ) .
382 rawurlencode( $name ) . "/" . rawurlencode( $fileName );
384 if ( $backend->fileExists( array( 'src' => $localFilename ) )
385 && isset( $metadata['timestamp'] )
387 wfDebug( __METHOD__
. " Thumbnail was already downloaded before\n" );
388 $modified = $backend->getFileTimestamp( array( 'src' => $localFilename ) );
389 $remoteModified = strtotime( $metadata['timestamp'] );
391 $diff = abs( $modified - $current );
392 if ( $remoteModified < $modified && $diff < $this->fileCacheExpiry
) {
393 /* Use our current and already downloaded thumbnail */
394 $knownThumbUrls[$sizekey] = $localUrl;
395 $cache->set( $key, $knownThumbUrls, $this->apiThumbCacheExpiry
);
399 /* There is a new Commons file, or existing thumbnail older than a month */
401 $thumb = self
::httpGet( $foreignUrl );
403 wfDebug( __METHOD__
. " Could not download thumb\n" );
408 # @todo FIXME: Delete old thumbs that aren't being used. Maintenance script?
409 $backend->prepare( array( 'dir' => dirname( $localFilename ) ) );
410 $params = array( 'dst' => $localFilename, 'content' => $thumb );
411 if ( !$backend->quickCreate( $params )->isOK() ) {
412 wfDebug( __METHOD__
. " could not write to thumb path '$localFilename'\n" );
416 $knownThumbUrls[$sizekey] = $localUrl;
417 $cache->set( $key, $knownThumbUrls, $this->apiThumbCacheExpiry
);
418 wfDebug( __METHOD__
. " got local thumb $localUrl, saving to cache \n" );
424 * @see FileRepo::getZoneUrl()
425 * @param string $zone
426 * @param string|null $ext Optional file extension
429 function getZoneUrl( $zone, $ext = null ) {
434 return $this->thumbUrl
;
436 return parent
::getZoneUrl( $zone, $ext );
441 * Get the local directory corresponding to one of the basic zones
442 * @param string $zone
443 * @return bool|null|string
445 function getZonePath( $zone ) {
446 $supported = array( 'public', 'thumb' );
447 if ( in_array( $zone, $supported ) ) {
448 return parent
::getZonePath( $zone );
455 * Are we locally caching the thumbnails?
458 public function canCacheThumbs() {
459 return ( $this->apiThumbCacheExpiry
> 0 );
463 * The user agent the ForeignAPIRepo will use.
466 public static function getUserAgent() {
467 return Http
::userAgent() . " ForeignAPIRepo/" . self
::VERSION
;
471 * Get information about the repo - overrides/extends the parent
472 * class's information.
477 $info = parent
::getInfo();
478 $info['apiurl'] = $this->getApiUrl();
483 'meta' => 'siteinfo',
484 'siprop' => 'general',
487 $data = $this->httpGetCached( 'SiteInfo', $query, 7200 );
490 $siteInfo = FormatJson
::decode( $data, true );
491 $general = $siteInfo['query']['general'];
493 $info['articlepath'] = $general['articlepath'];
494 $info['server'] = $general['server'];
496 if ( isset( $general['favicon'] ) ) {
497 $info['favicon'] = $general['favicon'];
505 * Like a Http:get request, but with custom User-Agent.
508 * @param string $timeout
509 * @param array $options
510 * @return bool|string
512 public static function httpGet( $url, $timeout = 'default', $options = array() ) {
513 $options['timeout'] = $timeout;
515 $url = wfExpandUrl( $url, PROTO_HTTP
);
516 wfDebug( "ForeignAPIRepo: HTTP GET: $url\n" );
517 $options['method'] = "GET";
519 if ( !isset( $options['timeout'] ) ) {
520 $options['timeout'] = 'default';
523 $req = MWHttpRequest
::factory( $url, $options, __METHOD__
);
524 $req->setUserAgent( ForeignAPIRepo
::getUserAgent() );
525 $status = $req->execute();
527 if ( $status->isOK() ) {
528 return $req->getContent();
530 $logger = LoggerFactory
::getInstance( 'http' );
531 $logger->warning( $status->getWikiText(), array( 'caller' => 'ForeignAPIRepo::httpGet' ) );
540 protected static function getIIProps() {
541 return join( '|', self
::$imageInfoProps );
545 * HTTP GET request to a mediawiki API (with caching)
546 * @param string $target Used in cache key creation, mostly
547 * @param array $query The query parameters for the API request
548 * @param int $cacheTTL Time to live for the memcached caching
551 public function httpGetCached( $target, $query, $cacheTTL = 3600 ) {
552 if ( $this->mApiBase
) {
553 $url = wfAppendQuery( $this->mApiBase
, $query );
555 $url = $this->makeUrl( $query, 'api' );
558 if ( !isset( $this->mQueryCache
[$url] ) ) {
559 $data = ObjectCache
::getMainWANInstance()->getWithSetCallback(
560 $this->getLocalCacheKey( get_class( $this ), $target, md5( $url ) ),
562 function () use ( $url ) {
563 return ForeignAPIRepo
::httpGet( $url );
571 if ( count( $this->mQueryCache
) > 100 ) {
572 // Keep the cache from growing infinitely
573 $this->mQueryCache
= array();
576 $this->mQueryCache
[$url] = $data;
579 return $this->mQueryCache
[$url];
583 * @param callable $callback
584 * @throws MWException
586 function enumFiles( $callback ) {
587 throw new MWException( 'enumFiles is not supported by ' . get_class( $this ) );
591 * @throws MWException
593 protected function assertWritableRepo() {
594 throw new MWException( get_class( $this ) . ': write operations are not supported.' );