2014-01-23 21:56:13 +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 ) {
|
|
|
|
/**
|
|
|
|
* Represents information about a single image repository
|
2014-02-19 02:27:30 +00:00
|
|
|
* @class mw.mmv.model.Repo
|
2014-01-23 21:56:13 +00:00
|
|
|
* @constructor
|
|
|
|
* @param {string} displayName
|
|
|
|
* @param {string} favIcon URL to the repo's favicon
|
|
|
|
* @param {boolean} isLocal
|
|
|
|
*/
|
|
|
|
function Repo(
|
|
|
|
displayName,
|
|
|
|
favIcon,
|
|
|
|
isLocal
|
|
|
|
) {
|
|
|
|
/** @property {string} displayName Human-readable name of the repository */
|
|
|
|
this.displayName = displayName;
|
|
|
|
|
|
|
|
/** @property {string} favIcon An icon that represents the repository */
|
|
|
|
this.favIcon = favIcon;
|
|
|
|
|
|
|
|
/** @property {boolean} isLocal Whether the repository is the local wiki */
|
|
|
|
this.isLocal = isLocal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new object from repoInfo we found in an API response.
|
2014-02-19 02:27:30 +00:00
|
|
|
* @static
|
2014-01-23 21:56:13 +00:00
|
|
|
* @param {Object} repoInfo
|
|
|
|
* @returns {mw.mmv.model.Repo}
|
|
|
|
*/
|
|
|
|
Repo.newFromRepoInfo = function ( repoInfo ) {
|
|
|
|
if ( repoInfo.apiurl ) {
|
|
|
|
return new ForeignApiRepo(
|
|
|
|
repoInfo.displayname,
|
|
|
|
repoInfo.favicon,
|
|
|
|
false,
|
|
|
|
repoInfo.apiurl,
|
|
|
|
repoInfo.server,
|
|
|
|
repoInfo.articlepath
|
|
|
|
);
|
|
|
|
} else if ( repoInfo.descBaseUrl ) {
|
|
|
|
return new ForeignDbRepo(
|
|
|
|
repoInfo.displayname,
|
|
|
|
repoInfo.favicon,
|
|
|
|
false,
|
|
|
|
repoInfo.descBaseUrl
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return new Repo( repoInfo.displayname, repoInfo.favicon, repoInfo.local );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-02-03 11:13:37 +00:00
|
|
|
/**
|
|
|
|
* Gets the article path for the repository.
|
2014-03-21 01:17:45 +00:00
|
|
|
* @param {boolean} absolute if true, the URL will be absolute (if false, it still might be)
|
2014-02-03 11:13:37 +00:00
|
|
|
* @return {string} Replace $1 with the page name you want to link to.
|
|
|
|
*/
|
2014-03-21 01:17:45 +00:00
|
|
|
Repo.prototype.getArticlePath = function ( absolute ) {
|
|
|
|
var articlePath = mw.config.get( 'wgArticlePath' );
|
|
|
|
if ( absolute ) {
|
|
|
|
articlePath = mw.config.get( 'wgServer' ) + articlePath;
|
|
|
|
}
|
|
|
|
return articlePath;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the a link to the site where the image was uploaded to.
|
|
|
|
* This is a hack and might break for wikis with exotic config; unfortunately no
|
|
|
|
* better data is provided currently.
|
|
|
|
* @return {string}
|
|
|
|
*/
|
|
|
|
Repo.prototype.getSiteLink = function () {
|
|
|
|
return this.getArticlePath( true ).replace( '$1', '' );
|
|
|
|
};
|
2014-02-03 11:13:37 +00:00
|
|
|
|
2014-01-23 21:56:13 +00:00
|
|
|
/**
|
|
|
|
* Represents information about a foreign API repository
|
2014-02-19 02:27:30 +00:00
|
|
|
* @class mw.mmv.model.ForeignApiRepo
|
2014-01-23 21:56:13 +00:00
|
|
|
* @extends mw.mmv.model.Repo
|
|
|
|
* @constructor
|
|
|
|
* @inheritdoc
|
|
|
|
* @param {string} apiUrl URL to the wiki's api.php
|
|
|
|
* @param {string} server Hostname for the wiki
|
|
|
|
* @param {string} articlePath Path to articles on the wiki, relative to the hostname.
|
|
|
|
*/
|
|
|
|
function ForeignApiRepo(
|
|
|
|
displayName,
|
|
|
|
favIcon,
|
|
|
|
isLocal,
|
|
|
|
apiUrl,
|
|
|
|
server,
|
|
|
|
articlePath
|
|
|
|
) {
|
|
|
|
Repo.call( this, displayName, favIcon, isLocal );
|
|
|
|
|
|
|
|
/** @property {string} apiUrl URL to the wiki's api.php */
|
|
|
|
this.apiUrl = apiUrl;
|
|
|
|
|
|
|
|
/** @property {string} server Hostname for the wiki */
|
|
|
|
this.server = server;
|
|
|
|
|
|
|
|
/** @property {string} articlePath Path to articles on the wiki, relative to the hostname */
|
|
|
|
this.articlePath = articlePath;
|
|
|
|
|
|
|
|
/** @property {string} absoluteArticlePath Path to articles on the wiki, relative to nothing */
|
|
|
|
this.absoluteArticlePath = server + articlePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
oo.inheritClass( ForeignApiRepo, Repo );
|
|
|
|
|
2014-02-03 11:13:37 +00:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ForeignApiRepo.prototype.getArticlePath = function () {
|
|
|
|
return this.absoluteArticlePath;
|
|
|
|
};
|
|
|
|
|
2014-01-23 21:56:13 +00:00
|
|
|
/**
|
|
|
|
* Represents information about a foreign, shared DB repository
|
2014-02-19 02:27:30 +00:00
|
|
|
* @class mw.mmv.model.ForeignDbRepo
|
2014-01-23 21:56:13 +00:00
|
|
|
* @extends mw.mmv.model.Repo
|
|
|
|
* @constructor
|
|
|
|
* @inheritdoc
|
2014-02-03 11:13:37 +00:00
|
|
|
* @param {string} descBaseUrl Base URL for description pages - should include the "File:" prefix or similar.
|
2014-01-23 21:56:13 +00:00
|
|
|
*/
|
|
|
|
function ForeignDbRepo(
|
|
|
|
displayName,
|
|
|
|
favIcon,
|
|
|
|
isLocal,
|
|
|
|
descBaseUrl
|
|
|
|
) {
|
|
|
|
Repo.call( this, displayName, favIcon, isLocal );
|
|
|
|
|
|
|
|
/** @property {string} descBaseUrl Base URL for descriptions on the wiki - append a file's title to this to get the description page */
|
|
|
|
this.descBaseUrl = descBaseUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
oo.inheritClass( ForeignDbRepo, Repo );
|
|
|
|
|
2014-02-03 11:13:37 +00:00
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ForeignDbRepo.prototype.getArticlePath = function () {
|
|
|
|
return this.descBaseUrl.replace( /[^\/:]*:$/, '$1' );
|
|
|
|
};
|
|
|
|
|
2014-01-23 21:56:13 +00:00
|
|
|
mw.mmv.model.Repo = Repo;
|
|
|
|
mw.mmv.model.ForeignApiRepo = ForeignApiRepo;
|
|
|
|
mw.mmv.model.ForeignDbRepo = ForeignDbRepo;
|
|
|
|
}( mediaWiki, OO ) );
|