123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- /**
- * Very hacky and inefficient
- * do not use :D
- *
- * @ingroup FileRepo
- */
- class ForeignAPIFile extends File {
-
- private $mExists;
-
- function __construct( $title, $repo, $info, $exists = false ) {
- parent::__construct( $title, $repo );
- $this->mInfo = $info;
- $this->mExists = $exists;
- }
-
- static function newFromTitle( $title, $repo ) {
- $info = $repo->getImageInfo( $title );
- if( $info ) {
- return new ForeignAPIFile( $title, $repo, $info, true );
- } else {
- return null;
- }
- }
-
- // Dummy functions...
- public function exists() {
- return $this->mExists;
- }
-
- public function getPath() {
- return false;
- }
- function transform( $params, $flags = 0 ) {
- if( !$this->canRender() ) {
- // show icon
- return parent::transform( $params, $flags );
- }
- $thumbUrl = $this->repo->getThumbUrlFromCache(
- $this->getName(),
- isset( $params['width'] ) ? $params['width'] : -1,
- isset( $params['height'] ) ? $params['height'] : -1 );
- if( $thumbUrl ) {
- return $this->handler->getTransform( $this, 'bogus', $thumbUrl, $params );;
- }
- return false;
- }
- // Info we can get from API...
- public function getWidth( $page = 1 ) {
- return intval( @$this->mInfo['width'] );
- }
-
- public function getHeight( $page = 1 ) {
- return intval( @$this->mInfo['height'] );
- }
-
- public function getMetadata() {
- if ( isset( $this->mInfo['metadata'] ) ) {
- return serialize( self::parseMetadata( $this->mInfo['metadata'] ) );
- }
- return null;
- }
-
- public static function parseMetadata( $metadata ) {
- if( !is_array( $metadata ) ) {
- return $metadata;
- }
- $ret = array();
- foreach( $metadata as $meta ) {
- $ret[ $meta['name'] ] = self::parseMetadata( $meta['value'] );
- }
- return $ret;
- }
-
- public function getSize() {
- return intval( @$this->mInfo['size'] );
- }
-
- public function getUrl() {
- return strval( @$this->mInfo['url'] );
- }
- public function getUser( $method='text' ) {
- return strval( @$this->mInfo['user'] );
- }
-
- public function getDescription() {
- return strval( @$this->mInfo['comment'] );
- }
- function getSha1() {
- return wfBaseConvert( strval( @$this->mInfo['sha1'] ), 16, 36, 31 );
- }
-
- function getTimestamp() {
- return wfTimestamp( TS_MW, strval( @$this->mInfo['timestamp'] ) );
- }
-
- function getMimeType() {
- if( !isset( $this->mInfo['mime'] ) ) {
- $magic = MimeMagic::singleton();
- $this->mInfo['mime'] = $magic->guessTypesForExtension( $this->getExtension() );
- }
- return $this->mInfo['mime'];
- }
-
- /// @fixme May guess wrong on file types that can be eg audio or video
- function getMediaType() {
- $magic = MimeMagic::singleton();
- return $magic->getMediaType( null, $this->getMimeType() );
- }
-
- function getDescriptionUrl() {
- return isset( $this->mInfo['descriptionurl'] )
- ? $this->mInfo['descriptionurl']
- : false;
- }
-
- /**
- * Only useful if we're locally caching thumbs anyway...
- */
- function getThumbPath( $suffix = '' ) {
- if ( $this->repo->canCacheThumbs() ) {
- global $wgUploadDirectory;
- $path = $wgUploadDirectory . '/thumb/' . $this->getHashPath( $this->getName() );
- if ( $suffix ) {
- $path = $path . $suffix . '/';
- }
- return $path;
- }
- else {
- return null;
- }
- }
-
- function getThumbnails() {
- $files = array();
- $dir = $this->getThumbPath( $this->getName() );
- if ( is_dir( $dir ) ) {
- $handle = opendir( $dir );
- if ( $handle ) {
- while ( false !== ( $file = readdir($handle) ) ) {
- if ( $file{0} != '.' ) {
- $files[] = $file;
- }
- }
- closedir( $handle );
- }
- }
- return $files;
- }
-
- function purgeCache() {
- $this->purgeThumbnails();
- $this->purgeDescriptionPage();
- }
-
- function purgeDescriptionPage() {
- global $wgMemc, $wgContLang;
- $url = $this->repo->getDescriptionRenderUrl( $this->getName(), $wgContLang->getCode() );
- $key = wfMemcKey( 'RemoteFileDescription', 'url', md5($url) );
- $wgMemc->delete( $key );
- }
-
- function purgeThumbnails() {
- global $wgMemc;
- $key = wfMemcKey( 'ForeignAPIRepo', 'ThumbUrl', $this->getName() );
- $wgMemc->delete( $key );
- $files = $this->getThumbnails();
- $dir = $this->getThumbPath( $this->getName() );
- foreach ( $files as $file ) {
- unlink( $dir . $file );
- }
- if ( is_dir( $dir ) ) {
- rmdir( $dir ); // Might have already gone away, spews errors if we don't.
- }
- }
- }
|