Update documentation for file repo related classes
[lhc/web/wiklou.git] / includes / filerepo / ForeignAPIRepo.php
1 <?php
2 /**
3 * Foreign repository accessible through api.php requests.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup FileRepo
22 */
23
24 /**
25 * A foreign repository with a remote MediaWiki with an API thingy
26 *
27 * Example config:
28 *
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 * );
36 *
37 * @ingroup FileRepo
38 */
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";
44
45 /**
46 * List of iiprop values for the thumbnail fetch queries.
47 * @since 1.23
48 */
49 protected static $imageInfoProps = array(
50 'url',
51 'thumbnail',
52 'timestamp',
53 );
54
55 protected $fileFactory = array( 'ForeignAPIFile', 'newFromTitle' );
56 /** @var int Check back with Commons after a day (24*60*60) */
57 protected $apiThumbCacheExpiry = 86400;
58
59 /** @var int Redownload thumbnail files after a month (86400*30) */
60 protected $fileCacheExpiry = 2592000;
61
62 /** @var array */
63 private $mQueryCache = array();
64
65 /** @var array */
66 protected $mFileExists = array();
67
68 /**
69 * @param $info array|null
70 */
71 function __construct( $info ) {
72 global $wgLocalFileRepo;
73 parent::__construct( $info );
74
75 // http://commons.wikimedia.org/w/api.php
76 $this->mApiBase = isset( $info['apibase'] ) ? $info['apibase'] : null;
77
78 if ( isset( $info['apiThumbCacheExpiry'] ) ) {
79 $this->apiThumbCacheExpiry = $info['apiThumbCacheExpiry'];
80 }
81 if ( isset( $info['fileCacheExpiry'] ) ) {
82 $this->fileCacheExpiry = $info['fileCacheExpiry'];
83 }
84 if ( !$this->scriptDirUrl ) {
85 // hack for description fetches
86 $this->scriptDirUrl = dirname( $this->mApiBase );
87 }
88 // If we can cache thumbs we can guess sane defaults for these
89 if ( $this->canCacheThumbs() && !$this->url ) {
90 $this->url = $wgLocalFileRepo['url'];
91 }
92 if ( $this->canCacheThumbs() && !$this->thumbUrl ) {
93 $this->thumbUrl = $this->url . '/thumb';
94 }
95 }
96
97 /**
98 * @return string
99 * @since 1.22
100 */
101 function getApiUrl() {
102 return $this->mApiBase;
103 }
104
105 /**
106 * Per docs in FileRepo, this needs to return false if we don't support versioned
107 * files. Well, we don't.
108 *
109 * @param Title $title
110 * @param string|bool $time
111 * @return File
112 */
113 function newFile( $title, $time = false ) {
114 if ( $time ) {
115 return false;
116 }
117
118 return parent::newFile( $title, $time );
119 }
120
121 /**
122 * @param array $files
123 * @return array
124 */
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'." );
141 }
142 }
143
144 $data = $this->fetchImageQuery( array(
145 'titles' => implode( $files, '|' ),
146 'prop' => 'imageinfo' )
147 );
148
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'] !== '' );
154 }
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']];
159 }
160 }
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']];
165 }
166 }
167 # Finally, copy the results to the output
168 foreach ( $files as $key => $file ) {
169 $results[$key] = $this->mFileExists[$file];
170 }
171 }
172
173 return $results;
174 }
175
176 /**
177 * @param string $virtualUrl
178 * @return bool
179 */
180 function getFileProps( $virtualUrl ) {
181 return false;
182 }
183
184 /**
185 * @param array $query
186 * @return string
187 */
188 function fetchImageQuery( $query ) {
189 global $wgLanguageCode;
190
191 $query = array_merge( $query,
192 array(
193 'format' => 'json',
194 'action' => 'query',
195 'redirects' => 'true'
196 ) );
197
198 if ( !isset( $query['uselang'] ) ) { // uselang is unset or null
199 $query['uselang'] = $wgLanguageCode;
200 }
201
202 $data = $this->httpGetCached( 'Metadata', $query );
203
204 if ( $data ) {
205 return FormatJson::decode( $data, true );
206 } else {
207 return null;
208 }
209 }
210
211 /**
212 * @param array $data
213 * @return bool|array
214 */
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];
220 }
221 }
222 }
223
224 return false;
225 }
226
227 /**
228 * @param string $hash
229 * @return array
230 */
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;
243 }
244 $ret[] = new ForeignAPIFile( Title::makeTitle( NS_FILE, $img['name'] ), $this, $img );
245 }
246 }
247
248 return $ret;
249 }
250
251 /**
252 * @param string $name
253 * @param int $width
254 * @param int $height
255 * @param null $result
256 * @param string $otherParams
257 * @return bool
258 */
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 );
268
269 if ( $data && $info && isset( $info['thumburl'] ) ) {
270 wfDebug( __METHOD__ . " got remote thumb " . $info['thumburl'] . "\n" );
271 $result = $info;
272
273 return $info['thumburl'];
274 } else {
275 return false;
276 }
277 }
278
279 /**
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
287 */
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 );
299
300 if ( $data && $info && isset( $info['thumberror'] ) ) {
301 wfDebug( __METHOD__ . " got remote thumb error " . $info['thumberror'] . "\n" );
302
303 return new MediaTransformError(
304 'thumbnail_error_remote',
305 $width,
306 $height,
307 $this->getDisplayName(),
308 $info['thumberror'] // already parsed message from foreign repo
309 );
310 } else {
311 return false;
312 }
313 }
314
315 /**
316 * Return the imageurl from cache if possible
317 *
318 * If the url has been requested today, get it from cache
319 * Otherwise retrieve remote thumb url, check for local file.
320 *
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
327 */
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
333
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 );
337 }
338 $key = $this->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $name );
339 $sizekey = "$width:$height:$params";
340
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" );
350
351 return $knownThumbUrls[$sizekey];
352 }
353 /* This size is not yet known */
354 }
355
356 $metadata = null;
357 $foreignUrl = $this->getThumbUrl( $name, $width, $height, $metadata, $params );
358
359 if ( !$foreignUrl ) {
360 wfDebug( __METHOD__ . " Could not find thumburl\n" );
361
362 return false;
363 }
364
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" );
369
370 return false;
371 }
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 );
376
377 if ( $backend->fileExists( array( 'src' => $localFilename ) )
378 && isset( $metadata['timestamp'] )
379 ) {
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 );
389
390 return $localUrl;
391 }
392 /* There is a new Commons file, or existing thumbnail older than a month */
393 }
394 $thumb = self::httpGet( $foreignUrl );
395 if ( !$thumb ) {
396 wfDebug( __METHOD__ . " Could not download thumb\n" );
397
398 return false;
399 }
400
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" );
406
407 return $foreignUrl;
408 }
409 $knownThumbUrls[$sizekey] = $localUrl;
410 $wgMemc->set( $key, $knownThumbUrls, $this->apiThumbCacheExpiry );
411 wfDebug( __METHOD__ . " got local thumb $localUrl, saving to cache \n" );
412
413 return $localUrl;
414 }
415
416 /**
417 * @see FileRepo::getZoneUrl()
418 * @param string $zone
419 * @param string|null $ext Optional file extension
420 * @return String
421 */
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 );
430 }
431 }
432
433 /**
434 * Get the local directory corresponding to one of the basic zones
435 * @param string $zone
436 * @return bool|null|string
437 */
438 function getZonePath( $zone ) {
439 $supported = array( 'public', 'thumb' );
440 if ( in_array( $zone, $supported ) ) {
441 return parent::getZonePath( $zone );
442 }
443
444 return false;
445 }
446
447 /**
448 * Are we locally caching the thumbnails?
449 * @return bool
450 */
451 public function canCacheThumbs() {
452 return ( $this->apiThumbCacheExpiry > 0 );
453 }
454
455 /**
456 * The user agent the ForeignAPIRepo will use.
457 * @return string
458 */
459 public static function getUserAgent() {
460 return Http::userAgent() . " ForeignAPIRepo/" . self::VERSION;
461 }
462
463 /**
464 * Get information about the repo - overrides/extends the parent
465 * class's information.
466 * @return array
467 * @since 1.22
468 */
469 function getInfo() {
470 $info = parent::getInfo();
471 $info['apiurl'] = $this->getApiUrl();
472
473 $query = array(
474 'format' => 'json',
475 'action' => 'query',
476 'meta' => 'siteinfo',
477 'siprop' => 'general',
478 );
479
480 $data = $this->httpGetCached( 'SiteInfo', $query, 7200 );
481
482 if ( $data ) {
483 $siteInfo = FormatJson::decode( $data, true );
484 $general = $siteInfo['query']['general'];
485
486 $info['articlepath'] = $general['articlepath'];
487 $info['server'] = $general['server'];
488 }
489
490 return $info;
491 }
492
493 /**
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
500 */
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";
507
508 if ( !isset( $options['timeout'] ) ) {
509 $options['timeout'] = 'default';
510 }
511
512 $req = MWHttpRequest::factory( $url, $options );
513 $req->setUserAgent( ForeignAPIRepo::getUserAgent() );
514 $status = $req->execute();
515
516 if ( $status->isOK() ) {
517 return $req->getContent();
518 } else {
519 return false;
520 }
521 }
522
523 /**
524 * @return string
525 * @since 1.23
526 */
527 protected static function getIIProps() {
528 return join( '|', self::$imageInfoProps );
529 }
530
531 /**
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
537 */
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' );
543 }
544
545 if ( !isset( $this->mQueryCache[$url] ) ) {
546 global $wgMemc;
547
548 $key = $this->getLocalCacheKey( get_class( $this ), $target, md5( $url ) );
549 $data = $wgMemc->get( $key );
550
551 if ( !$data ) {
552 $data = self::httpGet( $url );
553
554 if ( !$data ) {
555 return null;
556 }
557
558 $wgMemc->set( $key, $data, $cacheTTL );
559 }
560
561 if ( count( $this->mQueryCache ) > 100 ) {
562 // Keep the cache from growing infinitely
563 $this->mQueryCache = array();
564 }
565
566 $this->mQueryCache[$url] = $data;
567 }
568
569 return $this->mQueryCache[$url];
570 }
571
572 /**
573 * @param array|string $callback
574 * @throws MWException
575 */
576 function enumFiles( $callback ) {
577 throw new MWException( 'enumFiles is not supported by ' . get_class( $this ) );
578 }
579
580 /**
581 * @throws MWException
582 */
583 protected function assertWritableRepo() {
584 throw new MWException( get_class( $this ) . ': write operations are not supported.' );
585 }
586 }