Merge "Begin exposing SiteConfiguration via site contexts"
[mediawiki.git] / includes / filerepo / ForeignAPIRepo.php
blob8906834cac6839c593ef0dc825166919ad86eec0
1 <?php
2 /**
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
20 * @file
21 * @ingroup FileRepo
24 /**
25 * A foreign repository with a remote MediaWiki with an API thingy
27 * Example config:
29 * $wgForeignFileRepos[] = array(
30 * 'class' => 'ForeignAPIRepo',
31 * 'name' => 'shared',
32 * 'apibase' => 'http://en.wikipedia.org/w/api.php',
33 * 'fetchDescription' => true, // Optional
34 * 'descriptionCacheExpiry' => 3600,
35 * );
37 * @ingroup FileRepo
39 class ForeignAPIRepo extends FileRepo {
40 /* This version string is used in the user agent for requests and will help
41 * server maintainers in identify ForeignAPI usage.
42 * Update the version every time you make breaking or significant changes. */
43 const VERSION = "2.1";
45 /**
46 * List of iiprop values for the thumbnail fetch queries.
47 * @since 1.23
49 protected static $imageInfoProps = array(
50 'url',
51 'thumbnail',
52 'timestamp',
55 protected $fileFactory = array( 'ForeignAPIFile', 'newFromTitle' );
56 /** @var int Check back with Commons after a day (24*60*60) */
57 protected $apiThumbCacheExpiry = 86400;
59 /** @var int Redownload thumbnail files after a month (86400*30) */
60 protected $fileCacheExpiry = 2592000;
62 /** @var array */
63 protected $mFileExists = array();
65 /** @var array */
66 private $mQueryCache = array();
68 /**
69 * @param $info array|null
71 function __construct( $info ) {
72 global $wgLocalFileRepo;
73 parent::__construct( $info );
75 // http://commons.wikimedia.org/w/api.php
76 $this->mApiBase = isset( $info['apibase'] ) ? $info['apibase'] : null;
78 if ( isset( $info['apiThumbCacheExpiry'] ) ) {
79 $this->apiThumbCacheExpiry = $info['apiThumbCacheExpiry'];
81 if ( isset( $info['fileCacheExpiry'] ) ) {
82 $this->fileCacheExpiry = $info['fileCacheExpiry'];
84 if ( !$this->scriptDirUrl ) {
85 // hack for description fetches
86 $this->scriptDirUrl = dirname( $this->mApiBase );
88 // If we can cache thumbs we can guess sane defaults for these
89 if ( $this->canCacheThumbs() && !$this->url ) {
90 $this->url = $wgLocalFileRepo['url'];
92 if ( $this->canCacheThumbs() && !$this->thumbUrl ) {
93 $this->thumbUrl = $this->url . '/thumb';
97 /**
98 * @return string
99 * @since 1.22
101 function getApiUrl() {
102 return $this->mApiBase;
106 * Per docs in FileRepo, this needs to return false if we don't support versioned
107 * files. Well, we don't.
109 * @param Title $title
110 * @param string|bool $time
111 * @return File
113 function newFile( $title, $time = false ) {
114 if ( $time ) {
115 return false;
118 return parent::newFile( $title, $time );
122 * @param array $files
123 * @return array
125 function fileExistsBatch( array $files ) {
126 $results = array();
127 foreach ( $files as $k => $f ) {
128 if ( isset( $this->mFileExists[$f] ) ) {
129 $results[$k] = $this->mFileExists[$f];
130 unset( $files[$k] );
131 } elseif ( self::isVirtualUrl( $f ) ) {
132 # @todo FIXME: We need to be able to handle virtual
133 # URLs better, at least when we know they refer to the
134 # same repo.
135 $results[$k] = false;
136 unset( $files[$k] );
137 } elseif ( FileBackend::isStoragePath( $f ) ) {
138 $results[$k] = false;
139 unset( $files[$k] );
140 wfWarn( "Got mwstore:// path '$f'." );
144 $data = $this->fetchImageQuery( array(
145 'titles' => implode( $files, '|' ),
146 'prop' => 'imageinfo' )
149 if ( isset( $data['query']['pages'] ) ) {
150 # First, get results from the query. Note we only care whether the image exists,
151 # not whether it has a description page.
152 foreach ( $data['query']['pages'] as $p ) {
153 $this->mFileExists[$p['title']] = ( $p['imagerepository'] !== '' );
155 # Second, copy the results to any redirects that were queried
156 if ( isset( $data['query']['redirects'] ) ) {
157 foreach ( $data['query']['redirects'] as $r ) {
158 $this->mFileExists[$r['from']] = $this->mFileExists[$r['to']];
161 # Third, copy the results to any non-normalized titles that were queried
162 if ( isset( $data['query']['normalized'] ) ) {
163 foreach ( $data['query']['normalized'] as $n ) {
164 $this->mFileExists[$n['from']] = $this->mFileExists[$n['to']];
167 # Finally, copy the results to the output
168 foreach ( $files as $key => $file ) {
169 $results[$key] = $this->mFileExists[$file];
173 return $results;
177 * @param string $virtualUrl
178 * @return bool
180 function getFileProps( $virtualUrl ) {
181 return false;
185 * @param array $query
186 * @return string
188 function fetchImageQuery( $query ) {
189 global $wgLanguageCode;
191 $query = array_merge( $query,
192 array(
193 'format' => 'json',
194 'action' => 'query',
195 'redirects' => 'true'
196 ) );
198 if ( !isset( $query['uselang'] ) ) { // uselang is unset or null
199 $query['uselang'] = $wgLanguageCode;
202 $data = $this->httpGetCached( 'Metadata', $query );
204 if ( $data ) {
205 return FormatJson::decode( $data, true );
206 } else {
207 return null;
212 * @param array $data
213 * @return bool|array
215 function getImageInfo( $data ) {
216 if ( $data && isset( $data['query']['pages'] ) ) {
217 foreach ( $data['query']['pages'] as $info ) {
218 if ( isset( $info['imageinfo'][0] ) ) {
219 return $info['imageinfo'][0];
224 return false;
228 * @param string $hash
229 * @return array
231 function findBySha1( $hash ) {
232 $results = $this->fetchImageQuery( array(
233 'aisha1base36' => $hash,
234 'aiprop' => ForeignAPIFile::getProps(),
235 'list' => 'allimages',
236 ) );
237 $ret = array();
238 if ( isset( $results['query']['allimages'] ) ) {
239 foreach ( $results['query']['allimages'] as $img ) {
240 // 1.14 was broken, doesn't return name attribute
241 if ( !isset( $img['name'] ) ) {
242 continue;
244 $ret[] = new ForeignAPIFile( Title::makeTitle( NS_FILE, $img['name'] ), $this, $img );
248 return $ret;
252 * @param string $name
253 * @param int $width
254 * @param int $height
255 * @param null $result
256 * @param string $otherParams
257 * @return bool
259 function getThumbUrl( $name, $width = -1, $height = -1, &$result = null, $otherParams = '' ) {
260 $data = $this->fetchImageQuery( array(
261 'titles' => 'File:' . $name,
262 'iiprop' => self::getIIProps(),
263 'iiurlwidth' => $width,
264 'iiurlheight' => $height,
265 'iiurlparam' => $otherParams,
266 'prop' => 'imageinfo' ) );
267 $info = $this->getImageInfo( $data );
269 if ( $data && $info && isset( $info['thumburl'] ) ) {
270 wfDebug( __METHOD__ . " got remote thumb " . $info['thumburl'] . "\n" );
271 $result = $info;
273 return $info['thumburl'];
274 } else {
275 return false;
280 * @param string $name
281 * @param int $width
282 * @param int $height
283 * @param string $otherParams
284 * @param string $lang Language code for language of error
285 * @return bool|MediaTransformError
286 * @since 1.22
288 function getThumbError( $name, $width = -1, $height = -1, $otherParams = '', $lang = null ) {
289 $data = $this->fetchImageQuery( array(
290 'titles' => 'File:' . $name,
291 'iiprop' => self::getIIProps(),
292 'iiurlwidth' => $width,
293 'iiurlheight' => $height,
294 'iiurlparam' => $otherParams,
295 'prop' => 'imageinfo',
296 'uselang' => $lang,
297 ) );
298 $info = $this->getImageInfo( $data );
300 if ( $data && $info && isset( $info['thumberror'] ) ) {
301 wfDebug( __METHOD__ . " got remote thumb error " . $info['thumberror'] . "\n" );
303 return new MediaTransformError(
304 'thumbnail_error_remote',
305 $width,
306 $height,
307 $this->getDisplayName(),
308 $info['thumberror'] // already parsed message from foreign repo
310 } else {
311 return false;
316 * Return the imageurl from cache if possible
318 * If the url has been requested today, get it from cache
319 * Otherwise retrieve remote thumb url, check for local file.
321 * @param string $name is a dbkey form of a title
322 * @param int $width
323 * @param int $height
324 * @param string $params Other rendering parameters (page number, etc)
325 * from handler's makeParamString.
326 * @return bool|string
328 function getThumbUrlFromCache( $name, $width, $height, $params = "" ) {
329 global $wgMemc;
330 // We can't check the local cache using FileRepo functions because
331 // we override fileExistsBatch(). We have to use the FileBackend directly.
332 $backend = $this->getBackend(); // convenience
334 if ( !$this->canCacheThumbs() ) {
335 $result = null; // can't pass "null" by reference, but it's ok as default value
336 return $this->getThumbUrl( $name, $width, $height, $result, $params );
338 $key = $this->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $name );
339 $sizekey = "$width:$height:$params";
341 /* Get the array of urls that we already know */
342 $knownThumbUrls = $wgMemc->get( $key );
343 if ( !$knownThumbUrls ) {
344 /* No knownThumbUrls for this file */
345 $knownThumbUrls = array();
346 } else {
347 if ( isset( $knownThumbUrls[$sizekey] ) ) {
348 wfDebug( __METHOD__ . ': Got thumburl from local cache: ' .
349 "{$knownThumbUrls[$sizekey]} \n" );
351 return $knownThumbUrls[$sizekey];
353 /* This size is not yet known */
356 $metadata = null;
357 $foreignUrl = $this->getThumbUrl( $name, $width, $height, $metadata, $params );
359 if ( !$foreignUrl ) {
360 wfDebug( __METHOD__ . " Could not find thumburl\n" );
362 return false;
365 // We need the same filename as the remote one :)
366 $fileName = rawurldecode( pathinfo( $foreignUrl, PATHINFO_BASENAME ) );
367 if ( !$this->validateFilename( $fileName ) ) {
368 wfDebug( __METHOD__ . " The deduced filename $fileName is not safe\n" );
370 return false;
372 $localPath = $this->getZonePath( 'thumb' ) . "/" . $this->getHashPath( $name ) . $name;
373 $localFilename = $localPath . "/" . $fileName;
374 $localUrl = $this->getZoneUrl( 'thumb' ) . "/" . $this->getHashPath( $name ) .
375 rawurlencode( $name ) . "/" . rawurlencode( $fileName );
377 if ( $backend->fileExists( array( 'src' => $localFilename ) )
378 && isset( $metadata['timestamp'] )
380 wfDebug( __METHOD__ . " Thumbnail was already downloaded before\n" );
381 $modified = $backend->getFileTimestamp( array( 'src' => $localFilename ) );
382 $remoteModified = strtotime( $metadata['timestamp'] );
383 $current = time();
384 $diff = abs( $modified - $current );
385 if ( $remoteModified < $modified && $diff < $this->fileCacheExpiry ) {
386 /* Use our current and already downloaded thumbnail */
387 $knownThumbUrls[$sizekey] = $localUrl;
388 $wgMemc->set( $key, $knownThumbUrls, $this->apiThumbCacheExpiry );
390 return $localUrl;
392 /* There is a new Commons file, or existing thumbnail older than a month */
394 $thumb = self::httpGet( $foreignUrl );
395 if ( !$thumb ) {
396 wfDebug( __METHOD__ . " Could not download thumb\n" );
398 return false;
401 # @todo FIXME: Delete old thumbs that aren't being used. Maintenance script?
402 $backend->prepare( array( 'dir' => dirname( $localFilename ) ) );
403 $params = array( 'dst' => $localFilename, 'content' => $thumb );
404 if ( !$backend->quickCreate( $params )->isOK() ) {
405 wfDebug( __METHOD__ . " could not write to thumb path '$localFilename'\n" );
407 return $foreignUrl;
409 $knownThumbUrls[$sizekey] = $localUrl;
410 $wgMemc->set( $key, $knownThumbUrls, $this->apiThumbCacheExpiry );
411 wfDebug( __METHOD__ . " got local thumb $localUrl, saving to cache \n" );
413 return $localUrl;
417 * @see FileRepo::getZoneUrl()
418 * @param string $zone
419 * @param string|null $ext Optional file extension
420 * @return String
422 function getZoneUrl( $zone, $ext = null ) {
423 switch ( $zone ) {
424 case 'public':
425 return $this->url;
426 case 'thumb':
427 return $this->thumbUrl;
428 default:
429 return parent::getZoneUrl( $zone, $ext );
434 * Get the local directory corresponding to one of the basic zones
435 * @param string $zone
436 * @return bool|null|string
438 function getZonePath( $zone ) {
439 $supported = array( 'public', 'thumb' );
440 if ( in_array( $zone, $supported ) ) {
441 return parent::getZonePath( $zone );
444 return false;
448 * Are we locally caching the thumbnails?
449 * @return bool
451 public function canCacheThumbs() {
452 return ( $this->apiThumbCacheExpiry > 0 );
456 * The user agent the ForeignAPIRepo will use.
457 * @return string
459 public static function getUserAgent() {
460 return Http::userAgent() . " ForeignAPIRepo/" . self::VERSION;
464 * Get information about the repo - overrides/extends the parent
465 * class's information.
466 * @return array
467 * @since 1.22
469 function getInfo() {
470 $info = parent::getInfo();
471 $info['apiurl'] = $this->getApiUrl();
473 $query = array(
474 'format' => 'json',
475 'action' => 'query',
476 'meta' => 'siteinfo',
477 'siprop' => 'general',
480 $data = $this->httpGetCached( 'SiteInfo', $query, 7200 );
482 if ( $data ) {
483 $siteInfo = FormatJson::decode( $data, true );
484 $general = $siteInfo['query']['general'];
486 $info['articlepath'] = $general['articlepath'];
487 $info['server'] = $general['server'];
490 return $info;
494 * Like a Http:get request, but with custom User-Agent.
495 * @see Http:get
496 * @param string $url
497 * @param string $timeout
498 * @param array $options
499 * @return bool|String
501 public static function httpGet( $url, $timeout = 'default', $options = array() ) {
502 $options['timeout'] = $timeout;
503 /* Http::get */
504 $url = wfExpandUrl( $url, PROTO_HTTP );
505 wfDebug( "ForeignAPIRepo: HTTP GET: $url\n" );
506 $options['method'] = "GET";
508 if ( !isset( $options['timeout'] ) ) {
509 $options['timeout'] = 'default';
512 $req = MWHttpRequest::factory( $url, $options );
513 $req->setUserAgent( ForeignAPIRepo::getUserAgent() );
514 $status = $req->execute();
516 if ( $status->isOK() ) {
517 return $req->getContent();
518 } else {
519 return false;
524 * @return string
525 * @since 1.23
527 protected static function getIIProps() {
528 return join( '|', self::$imageInfoProps );
532 * HTTP GET request to a mediawiki API (with caching)
533 * @param string $target Used in cache key creation, mostly
534 * @param array $query The query parameters for the API request
535 * @param int $cacheTTL Time to live for the memcached caching
536 * @return null
538 public function httpGetCached( $target, $query, $cacheTTL = 3600 ) {
539 if ( $this->mApiBase ) {
540 $url = wfAppendQuery( $this->mApiBase, $query );
541 } else {
542 $url = $this->makeUrl( $query, 'api' );
545 if ( !isset( $this->mQueryCache[$url] ) ) {
546 global $wgMemc;
548 $key = $this->getLocalCacheKey( get_class( $this ), $target, md5( $url ) );
549 $data = $wgMemc->get( $key );
551 if ( !$data ) {
552 $data = self::httpGet( $url );
554 if ( !$data ) {
555 return null;
558 $wgMemc->set( $key, $data, $cacheTTL );
561 if ( count( $this->mQueryCache ) > 100 ) {
562 // Keep the cache from growing infinitely
563 $this->mQueryCache = array();
566 $this->mQueryCache[$url] = $data;
569 return $this->mQueryCache[$url];
573 * @param array|string $callback
574 * @throws MWException
576 function enumFiles( $callback ) {
577 throw new MWException( 'enumFiles is not supported by ' . get_class( $this ) );
581 * @throws MWException
583 protected function assertWritableRepo() {
584 throw new MWException( get_class( $this ) . ': write operations are not supported.' );