summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/MultimediaViewer/resources/mmv/model/mmv.model.IwTitle.js
blob: 046cbf942fd9944d9209818292e772f1b638ece1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * This file is part of the MediaWiki extension MediaViewer.
 *
 * MediaViewer 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.
 *
 * MediaViewer 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 MediaViewer.  If not, see <http://www.gnu.org/licenses/>.
 */

( function ( mw ) {
	var ITP;

	/**
	 * IwTitle represents a title in a foreign wiki. The long-term goal is to have an interface
	 * largely compatible with mw.Title, but for now we only implement what we actually need.
	 *
	 * @class mw.mmv.model.IwTitle
	 * @param {string} namespaceId namespace number
	 * @param {string} title full title, including namespace name; with underscores (as in mw.Title#getPrefixedDb())
	 * @param {string} domain domain name of the wiki
	 * @param {string} url full URL to the page
	 * @constructor
	 */
	function IwTitle(
		namespaceId,
		title,
		domain,
		url
	) {
		/** @property {number} namespaceId - */
		this.namespaceId = namespaceId;

		/** @property {string} title - */
		this.title = title;

		/** @property {string} domain - */
		this.domain = domain;

		/** @property {string} url - */
		this.url = url;
	}
	ITP = IwTitle.prototype;

	/**
	 * Turn underscores into spaces.
	 * Copy of the private function in mw.Title.
	 *
	 * @param {string} s
	 * @return {string}
	 */
	function text( s ) {
		return s ? s.replace( /_/g, ' ' ) : '';
	}

	ITP.getUrl = function () {
		return this.url;
	};

	ITP.getPrefixedDb = function () {
		return this.title;
	};

	ITP.getPrefixedText = function () {
		return text( this.getPrefixedDb() );
	};

	ITP.getDomain = function () {
		return this.domain;
	};

	mw.mmv.model.IwTitle = IwTitle;
}( mediaWiki ) );