2014-01-31 02:03:08 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the MediaWiki extension MultimediaViewer.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function ( mw, oo, $ ) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets file information.
|
|
|
|
* See https://www.mediawiki.org/wiki/API:Properties#imageinfo_.2F_ii
|
2014-02-19 17:38:55 +00:00
|
|
|
* @class mw.mmv.provider.ImageInfo
|
2014-01-31 02:03:08 +00:00
|
|
|
* @extends mw.mmv.provider.Api
|
2014-02-19 17:38:55 +00:00
|
|
|
* @constructor
|
2014-01-31 02:03:08 +00:00
|
|
|
* @param {mw.Api} api
|
2014-02-03 20:42:17 +00:00
|
|
|
* @param {Object} [options]
|
2014-02-19 17:38:55 +00:00
|
|
|
* @cfg {string} [language=null] image metadata language
|
2014-01-31 02:03:08 +00:00
|
|
|
*/
|
2014-02-03 20:42:17 +00:00
|
|
|
function ImageInfo( api, options ) {
|
|
|
|
options = $.extend( {
|
|
|
|
language: null
|
|
|
|
}, options );
|
|
|
|
|
|
|
|
mw.mmv.provider.Api.call( this, api, options );
|
2014-01-31 02:03:08 +00:00
|
|
|
}
|
|
|
|
oo.inheritClass( ImageInfo, mw.mmv.provider.Api );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of imageinfo API properties which are needed to construct an Image model.
|
2014-02-19 17:38:55 +00:00
|
|
|
* @property {string}
|
2014-01-31 02:03:08 +00:00
|
|
|
*/
|
|
|
|
ImageInfo.prototype.iiprop = [
|
|
|
|
'timestamp',
|
|
|
|
'user',
|
|
|
|
'url',
|
|
|
|
'size',
|
|
|
|
'mime',
|
|
|
|
'mediatype',
|
|
|
|
'extmetadata'
|
2014-02-03 20:42:17 +00:00
|
|
|
].join('|');
|
2014-01-31 02:03:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* List of imageinfo extmetadata fields which are needed to construct an Image model.
|
2014-02-19 17:38:55 +00:00
|
|
|
* @property {string}
|
2014-01-31 02:03:08 +00:00
|
|
|
*/
|
|
|
|
ImageInfo.prototype.iiextmetadatafilter = [
|
|
|
|
'DateTime',
|
|
|
|
'DateTimeOriginal',
|
|
|
|
'ImageDescription',
|
|
|
|
'License',
|
|
|
|
'Credit',
|
|
|
|
'Artist',
|
|
|
|
'GPSLatitude',
|
2014-02-05 01:46:55 +00:00
|
|
|
'GPSLongitude',
|
2014-02-14 00:36:10 +00:00
|
|
|
'Categories',
|
|
|
|
'Permission'
|
2014-02-03 20:42:17 +00:00
|
|
|
].join('|');
|
2014-01-31 02:03:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs an API GET request to get the image info.
|
|
|
|
* @param {mw.Title} file
|
|
|
|
* @return {jQuery.Promise} a promise which resolves to an mw.mmv.model.Image object.
|
|
|
|
*/
|
|
|
|
ImageInfo.prototype.get = function( file ) {
|
|
|
|
var provider = this,
|
2014-02-15 02:15:54 +00:00
|
|
|
cacheKey = file.getPrefixedDb();
|
2014-01-31 02:03:08 +00:00
|
|
|
|
|
|
|
if ( !this.cache[cacheKey] ) {
|
|
|
|
this.cache[cacheKey] = this.api.get( {
|
|
|
|
action: 'query',
|
|
|
|
prop: 'imageinfo',
|
|
|
|
titles: file.getPrefixedDb(),
|
|
|
|
iiprop: this.iiprop,
|
|
|
|
iiextmetadatafilter: this.iiextmetadatafilter,
|
2014-02-03 20:42:17 +00:00
|
|
|
iiextmetadatalanguage: this.options.language,
|
2014-01-31 02:03:08 +00:00
|
|
|
format: 'json'
|
|
|
|
} ).then( function( data ) {
|
|
|
|
return provider.getQueryPage( file, data );
|
|
|
|
} ).then( function( page ) {
|
|
|
|
if ( page.imageinfo && page.imageinfo.length ) {
|
|
|
|
return mw.mmv.model.Image.newFromImageInfo( file, page );
|
|
|
|
} else if ( page.missing === '' && page.imagerepository === '' ) {
|
|
|
|
return $.Deferred().reject( 'file does not exist: ' + file.getPrefixedDb() );
|
|
|
|
} else {
|
|
|
|
return $.Deferred().reject( 'unknown error' );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.cache[cacheKey];
|
|
|
|
};
|
|
|
|
|
|
|
|
mw.mmv.provider.ImageInfo = ImageInfo;
|
|
|
|
}( mediaWiki, OO, jQuery ) );
|