mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-17 12:53:24 +00:00
7afbc5ce92
* more robust method of obtaining URL * decouple performance logging from providers (mostly) * ignore fake XHR object which jQuery returns for JSONP requests * guard for CORS requests - apparently Chrome refuses to return certain information even with an Allow-Origin: * response header. * Resource Timing is limited to 150 results, which causes fake misses in debug mode. There is an API to increase the limit but it is not implemented in Chrome. I am calling it nevertheless, maybe IE understands it (it is present in the MSDN docs at least). This seems to work for AJAX, CORS, JSONP, image AJAX; CORS requests return 0 for a lot of values, per spec a Timing-Allow-Origin: * header might help that. Change-Id: I8353858022f51a7e70774e65513d0fa2554a5064
106 lines
2.9 KiB
JavaScript
106 lines
2.9 KiB
JavaScript
/*
|
|
* 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, $ ) {
|
|
|
|
/**
|
|
* @class mw.mmv.provider.ImageInfo
|
|
* Gets file information.
|
|
* See https://www.mediawiki.org/wiki/API:Properties#imageinfo_.2F_ii
|
|
* @extends mw.mmv.provider.Api
|
|
* @inheritdoc
|
|
* @param {mw.Api} api
|
|
* @param {Object} [options]
|
|
* @param {string} [options.language] image metadata language
|
|
*/
|
|
function ImageInfo( api, options ) {
|
|
options = $.extend( {
|
|
language: null
|
|
}, options );
|
|
|
|
mw.mmv.provider.Api.call( this, api, options );
|
|
}
|
|
oo.inheritClass( ImageInfo, mw.mmv.provider.Api );
|
|
|
|
/**
|
|
* List of imageinfo API properties which are needed to construct an Image model.
|
|
* @type {string}
|
|
*/
|
|
ImageInfo.prototype.iiprop = [
|
|
'timestamp',
|
|
'user',
|
|
'url',
|
|
'size',
|
|
'mime',
|
|
'mediatype',
|
|
'extmetadata'
|
|
].join('|');
|
|
|
|
/**
|
|
* List of imageinfo extmetadata fields which are needed to construct an Image model.
|
|
* @type {string}
|
|
*/
|
|
ImageInfo.prototype.iiextmetadatafilter = [
|
|
'DateTime',
|
|
'DateTimeOriginal',
|
|
'ImageDescription',
|
|
'License',
|
|
'Credit',
|
|
'Artist',
|
|
'GPSLatitude',
|
|
'GPSLongitude',
|
|
'Categories'
|
|
].join('|');
|
|
|
|
/**
|
|
* @method
|
|
* 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,
|
|
cacheKey = file.getPrefixedDb();
|
|
|
|
if ( !this.cache[cacheKey] ) {
|
|
this.cache[cacheKey] = this.api.get( {
|
|
action: 'query',
|
|
prop: 'imageinfo',
|
|
titles: file.getPrefixedDb(),
|
|
iiprop: this.iiprop,
|
|
iiextmetadatafilter: this.iiextmetadatafilter,
|
|
iiextmetadatalanguage: this.options.language,
|
|
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 ) );
|