a8d37a1569ab0284769867f4002d5236963ccd5e
[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 use MediaWiki\Logger\LoggerFactory;
25
26 /**
27 * A foreign repository with a remote MediaWiki with an API thingy
28 *
29 * Example config:
30 *
31 * $wgForeignFileRepos[] = array(
32 * 'class' => 'ForeignAPIRepo',
33 * 'name' => 'shared',
34 * 'apibase' => 'https://en.wikipedia.org/w/api.php',
35 * 'fetchDescription' => true, // Optional
36 * 'descriptionCacheExpiry' => 3600,
37 * );
38 *
39 * @ingroup FileRepo
40 */
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";
46
47 /**
48 * List of iiprop values for the thumbnail fetch queries.
49 * @since 1.23
50 */
51 protected static $imageInfoProps = array(
52 'url',
53 'thumbnail',
54 'timestamp',
55 );
56
57 protected $fileFactory = array( 'ForeignAPIFile', 'newFromTitle' );
58 /** @var int Check back with Commons after this expiry */
59 protected $apiThumbCacheExpiry = 86400; // 1 day (24*3600)
60
61 /** @var int Redownload thumbnail files after this expiry */
62 protected $fileCacheExpiry = 2592000; // 1 month (30*24*3600)
63
64 /** @var array */
65 protected $mFileExists = array();
66
67 /** @var array */
68 private $mQueryCache = array();
69
70 /**
71 * @param array|null $info
72 */
73 function __construct( $info ) {
74 global $wgLocalFileRepo;
75 parent::__construct( $info );
76
77 // https://commons.wikimedia.org/w/api.php
78 $this->mApiBase = isset( $info['apibase'] ) ? $info['apibase'] : null;
79
80 if ( isset( $info['apiThumbCacheExpiry'] ) ) {
81 $this->apiThumbCacheExpiry = $info['apiThumbCacheExpiry'];
82 }
83 if ( isset( $info['fileCacheExpiry'] ) ) {
84 $this->fileCacheExpiry = $info['fileCacheExpiry'];
85 }
86 if ( !$this->scriptDirUrl ) {
87 // hack for description fetches
88 $this->scriptDirUrl = dirname( $this->mApiBase );
89 }
90 // If we can cache thumbs we can guess sane defaults for these
91 if ( $this->canCacheThumbs() && !$this->url ) {
92 $this->url = $wgLocalFileRepo['url'];
93 }
94 if ( $this->canCacheThumbs() && !$this->thumbUrl ) {
95 $this->thumbUrl = $this->url . '/thumb';
96 }
97 }
98
99 /**
100 * @return string
101 * @since 1.22
102 */
103 function getApiUrl() {
104 return $this->mApiBase;
105 }
106
107 /**
108 * Per docs in FileRepo, this needs to return false if we don't support versioned
109 * files. Well, we don't.
110 *
111 * @param Title $title
112 * @param string|bool $time
113 * @return File
114 */
115 function newFile( $title, $time = false ) {
116 if ( $time ) {
117 return false;
118 }
119
120 return parent::newFile( $title, $time );
121 }
122
123 /**
124 * @param array $files
125 * @return array
126 */
127 function fileExistsBatch( array $files ) {
128 $results = array();
129 foreach ( $files as $k => $f ) {
130 if ( isset( $this->mFileExists[$f] ) ) {
131 $results[$k] = $this->mFileExists[$f];
132 unset( $files[$k] );
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
136 # same repo.
137 $results[$k] = false;
138 unset( $files[$k] );
139 } elseif ( FileBackend::isStoragePath( $f ) ) {
140 $results[$k] = false;
141 unset( $files[$k] );
142 wfWarn( "Got mwstore:// path '$f'." );
143 }
144 }
145
146 $data = $this->fetchImageQuery( array(
147 'titles' => implode( $files, '|' ),
148 'prop' => 'imageinfo' )
149 );
150
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'] !== '' );
156 }
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']];
161 }
162 }
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']];
167 }
168 }
169 # Finally, copy the results to the output
170 foreach ( $files as $key => $file ) {
171 $results[$key] = $this->mFileExists[$file];
172 }
173 }
174
175 return $results;
176 }
177
178 /**
179 * @param string $virtualUrl
180 * @return bool
181 */
182 function getFileProps( $virtualUrl ) {
183 return false;
184 }
185
186 /**
187 * @param array $query
188 * @return string
189 */
190 function fetchImageQuery( $query ) {
191 global $wgLanguageCode;
192
193 $query = array_merge( $query,
194 array(
195 'format' => 'json',
196 'action' => 'query',
197 'redirects' => 'true'
198 ) );
199
200 if ( !isset( $query['uselang'] ) ) { // uselang is unset or null
201 $query['uselang'] = $wgLanguageCode;
202 }
203
204 $data = $this->httpGetCached( 'Metadata', $query );
205
206 if ( $data ) {
207 return FormatJson::decode( $data, true );
208 } else {
209 return null;
210 }
211 }
212
213 /**
214 * @param array $data
215 * @return bool|array
216 */
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'];
224 }
225 return $return;
226 }
227 }
228 }
229
230 return false;
231 }
232
233 /**
234 * @param string $hash
235 * @return array
236 */
237 function findBySha1( $hash ) {
238 $results = $this->fetchImageQuery( array(
239 'aisha1base36' => $hash,
240 'aiprop' => ForeignAPIFile::getProps(),
241 'list' => 'allimages',
242 ) );
243 $ret = array();
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'] ) ) {
248 continue;
249 }
250 $ret[] = new ForeignAPIFile( Title::makeTitle( NS_FILE, $img['name'] ), $this, $img );
251 }
252 }
253
254 return $ret;
255 }
256
257 /**
258 * @param string $name
259 * @param int $width
260 * @param int $height
261 * @param array $result Out parameter that will be changed by the function.
262 * @param string $otherParams
263 *
264 * @return bool
265 */
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 );
275
276 if ( $data && $info && isset( $info['thumburl'] ) ) {
277 wfDebug( __METHOD__ . " got remote thumb " . $info['thumburl'] . "\n" );
278 $result = $info;
279
280 return $info['thumburl'];
281 } else {
282 return false;
283 }
284 }
285
286 /**
287 * @param string $name
288 * @param int $width
289 * @param int $height
290 * @param string $otherParams
291 * @param string $lang Language code for language of error
292 * @return bool|MediaTransformError
293 * @since 1.22
294 */
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',
303 'uselang' => $lang,
304 ) );
305 $info = $this->getImageInfo( $data );
306
307 if ( $data && $info && isset( $info['thumberror'] ) ) {
308 wfDebug( __METHOD__ . " got remote thumb error " . $info['thumberror'] . "\n" );
309
310 return new MediaTransformError(
311 'thumbnail_error_remote',
312 $width,
313 $height,
314 $this->getDisplayName(),
315 $info['thumberror'] // already parsed message from foreign repo
316 );
317 } else {
318 return false;
319 }
320 }
321
322 /**
323 * Return the imageurl from cache if possible
324 *
325 * If the url has been requested today, get it from cache
326 * Otherwise retrieve remote thumb url, check for local file.
327 *
328 * @param string $name Is a dbkey form of a title
329 * @param int $width
330 * @param int $height
331 * @param string $params Other rendering parameters (page number, etc)
332 * from handler's makeParamString.
333 * @return bool|string
334 */
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
340
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 );
344 }
345 $key = $this->getLocalCacheKey( 'ForeignAPIRepo', 'ThumbUrl', $name );
346 $sizekey = "$width:$height:$params";
347
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();
353 } else {
354 if ( isset( $knownThumbUrls[$sizekey] ) ) {
355 wfDebug( __METHOD__ . ': Got thumburl from local cache: ' .
356 "{$knownThumbUrls[$sizekey]} \n" );
357
358 return $knownThumbUrls[$sizekey];
359 }
360 /* This size is not yet known */
361 }
362
363 $metadata = null;
364 $foreignUrl = $this->getThumbUrl( $name, $width, $height, $metadata, $params );
365
366 if ( !$foreignUrl ) {
367 wfDebug( __METHOD__ . " Could not find thumburl\n" );
368
369 return false;
370 }
371
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" );
376
377 return false;
378 }
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 );
383
384 if ( $backend->fileExists( array( 'src' => $localFilename ) )
385 && isset( $metadata['timestamp'] )
386 ) {
387 wfDebug( __METHOD__ . " Thumbnail was already downloaded before\n" );
388 $modified = $backend->getFileTimestamp( array( 'src' => $localFilename ) );
389 $remoteModified = strtotime( $metadata['timestamp'] );
390 $current = time();
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 );
396
397 return $localUrl;
398 }
399 /* There is a new Commons file, or existing thumbnail older than a month */
400 }
401 $thumb = self::httpGet( $foreignUrl );
402 if ( !$thumb ) {
403 wfDebug( __METHOD__ . " Could not download thumb\n" );
404
405 return false;
406 }
407
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" );
413
414 return $foreignUrl;
415 }
416 $knownThumbUrls[$sizekey] = $localUrl;
417 $cache->set( $key, $knownThumbUrls, $this->apiThumbCacheExpiry );
418 wfDebug( __METHOD__ . " got local thumb $localUrl, saving to cache \n" );
419
420 return $localUrl;
421 }
422
423 /**
424 * @see FileRepo::getZoneUrl()
425 * @param string $zone
426 * @param string|null $ext Optional file extension
427 * @return string
428 */
429 function getZoneUrl( $zone, $ext = null ) {
430 switch ( $zone ) {
431 case 'public':
432 return $this->url;
433 case 'thumb':
434 return $this->thumbUrl;
435 default:
436 return parent::getZoneUrl( $zone, $ext );
437 }
438 }
439
440 /**
441 * Get the local directory corresponding to one of the basic zones
442 * @param string $zone
443 * @return bool|null|string
444 */
445 function getZonePath( $zone ) {
446 $supported = array( 'public', 'thumb' );
447 if ( in_array( $zone, $supported ) ) {
448 return parent::getZonePath( $zone );
449 }
450
451 return false;
452 }
453
454 /**
455 * Are we locally caching the thumbnails?
456 * @return bool
457 */
458 public function canCacheThumbs() {
459 return ( $this->apiThumbCacheExpiry > 0 );
460 }
461
462 /**
463 * The user agent the ForeignAPIRepo will use.
464 * @return string
465 */
466 public static function getUserAgent() {
467 return Http::userAgent() . " ForeignAPIRepo/" . self::VERSION;
468 }
469
470 /**
471 * Get information about the repo - overrides/extends the parent
472 * class's information.
473 * @return array
474 * @since 1.22
475 */
476 function getInfo() {
477 $info = parent::getInfo();
478 $info['apiurl'] = $this->getApiUrl();
479
480 $query = array(
481 'format' => 'json',
482 'action' => 'query',
483 'meta' => 'siteinfo',
484 'siprop' => 'general',
485 );
486
487 $data = $this->httpGetCached( 'SiteInfo', $query, 7200 );
488
489 if ( $data ) {
490 $siteInfo = FormatJson::decode( $data, true );
491 $general = $siteInfo['query']['general'];
492
493 $info['articlepath'] = $general['articlepath'];
494 $info['server'] = $general['server'];
495
496 if ( isset( $general['favicon'] ) ) {
497 $info['favicon'] = $general['favicon'];
498 }
499 }
500
501 return $info;
502 }
503
504 /**
505 * Like a Http:get request, but with custom User-Agent.
506 * @see Http::get
507 * @param string $url
508 * @param string $timeout
509 * @param array $options
510 * @return bool|string
511 */
512 public static function httpGet( $url, $timeout = 'default', $options = array() ) {
513 $options['timeout'] = $timeout;
514 /* Http::get */
515 $url = wfExpandUrl( $url, PROTO_HTTP );
516 wfDebug( "ForeignAPIRepo: HTTP GET: $url\n" );
517 $options['method'] = "GET";
518
519 if ( !isset( $options['timeout'] ) ) {
520 $options['timeout'] = 'default';
521 }
522
523 $req = MWHttpRequest::factory( $url, $options, __METHOD__ );
524 $req->setUserAgent( ForeignAPIRepo::getUserAgent() );
525 $status = $req->execute();
526
527 if ( $status->isOK() ) {
528 return $req->getContent();
529 } else {
530 $logger = LoggerFactory::getInstance( 'http' );
531 $logger->warning( $status->getWikiText(), array( 'caller' => 'ForeignAPIRepo::httpGet' ) );
532 return false;
533 }
534 }
535
536 /**
537 * @return string
538 * @since 1.23
539 */
540 protected static function getIIProps() {
541 return join( '|', self::$imageInfoProps );
542 }
543
544 /**
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
549 * @return null
550 */
551 public function httpGetCached( $target, $query, $cacheTTL = 3600 ) {
552 if ( $this->mApiBase ) {
553 $url = wfAppendQuery( $this->mApiBase, $query );
554 } else {
555 $url = $this->makeUrl( $query, 'api' );
556 }
557
558 if ( !isset( $this->mQueryCache[$url] ) ) {
559 $data = ObjectCache::getMainWANInstance()->getWithSetCallback(
560 $this->getLocalCacheKey( get_class( $this ), $target, md5( $url ) ),
561 $cacheTTL,
562 function () use ( $url ) {
563 return ForeignAPIRepo::httpGet( $url );
564 }
565 );
566
567 if ( !$data ) {
568 return null;
569 }
570
571 if ( count( $this->mQueryCache ) > 100 ) {
572 // Keep the cache from growing infinitely
573 $this->mQueryCache = array();
574 }
575
576 $this->mQueryCache[$url] = $data;
577 }
578
579 return $this->mQueryCache[$url];
580 }
581
582 /**
583 * @param callable $callback
584 * @throws MWException
585 */
586 function enumFiles( $callback ) {
587 throw new MWException( 'enumFiles is not supported by ' . get_class( $this ) );
588 }
589
590 /**
591 * @throws MWException
592 */
593 protected function assertWritableRepo() {
594 throw new MWException( get_class( $this ) . ': write operations are not supported.' );
595 }
596 }