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 repo information.
|
2016-07-18 13:49:27 +00:00
|
|
|
*
|
2014-02-19 17:38:55 +00:00
|
|
|
* @class mw.mmv.provider.FileRepoInfo
|
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-04-19 01:59:17 +00:00
|
|
|
* @param {Object} [options]
|
|
|
|
* @cfg {number} [maxage] cache expiration time, in seconds
|
|
|
|
* Will be used for both client-side cache (maxage) and reverse proxies (s-maxage)
|
2014-01-31 02:03:08 +00:00
|
|
|
*/
|
2014-04-19 01:59:17 +00:00
|
|
|
function FileRepoInfo( api, options ) {
|
|
|
|
mw.mmv.provider.Api.call( this, api, options );
|
2014-01-31 02:03:08 +00:00
|
|
|
}
|
|
|
|
oo.inheritClass( FileRepoInfo, mw.mmv.provider.Api );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs an API GET request to get the repo info.
|
2016-07-18 13:49:27 +00:00
|
|
|
*
|
2014-02-03 23:20:54 +00:00
|
|
|
* @return {jQuery.Promise.<Object.<string, mw.mmv.model.Repo>>} a promise which resolves to
|
2014-02-03 20:42:17 +00:00
|
|
|
* a hash of mw.mmv.model.Repo objects, indexed by repo names.
|
2014-01-31 02:03:08 +00:00
|
|
|
*/
|
2015-01-23 12:48:27 +00:00
|
|
|
FileRepoInfo.prototype.get = function () {
|
2014-02-15 02:15:54 +00:00
|
|
|
var provider = this;
|
2014-01-31 02:03:08 +00:00
|
|
|
|
2014-03-03 19:04:01 +00:00
|
|
|
return this.getCachedPromise( '*', function () {
|
2014-04-19 01:59:17 +00:00
|
|
|
return provider.apiGetWithMaxAge( {
|
2014-01-31 02:03:08 +00:00
|
|
|
action: 'query',
|
2015-05-27 23:51:54 +00:00
|
|
|
meta: 'filerepoinfo',
|
|
|
|
uselang: 'content'
|
2015-01-23 12:48:27 +00:00
|
|
|
} ).then( function ( data ) {
|
2014-01-31 02:03:08 +00:00
|
|
|
return provider.getQueryField( 'repos', data );
|
2015-01-23 12:48:27 +00:00
|
|
|
} ).then( function ( reposArray ) {
|
2014-01-31 02:03:08 +00:00
|
|
|
var reposHash = {};
|
|
|
|
$.each( reposArray, function ( i, repo ) {
|
2016-07-18 13:49:27 +00:00
|
|
|
reposHash[ repo.name ] = mw.mmv.model.Repo.newFromRepoInfo( repo );
|
2014-01-31 02:03:08 +00:00
|
|
|
} );
|
|
|
|
return reposHash;
|
|
|
|
} );
|
2014-03-03 19:04:01 +00:00
|
|
|
} );
|
2014-01-31 02:03:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
mw.mmv.provider.FileRepoInfo = FileRepoInfo;
|
|
|
|
}( mediaWiki, OO, jQuery ) );
|