Merge "SpecialMovepage: Convert form to use OOUI controls"
[lhc/web/wiklou.git] / includes / WikiMap.php
1 <?php
2 /**
3 * Tools for dealing with other locally-hosted wikis.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 /**
24 * Helper tools for dealing with other locally-hosted wikis
25 */
26 class WikiMap {
27
28 /**
29 * Get a WikiReference object for $wikiID
30 *
31 * @param string $wikiID Wiki'd id (generally database name)
32 * @return WikiReference|null WikiReference object or null if the wiki was not found
33 */
34 public static function getWiki( $wikiID ) {
35 global $wgConf;
36
37 $wgConf->loadFullData();
38
39 list( $major, $minor ) = $wgConf->siteFromDB( $wikiID );
40 if ( $major === null ) {
41 return null;
42 }
43 $server = $wgConf->get( 'wgServer', $wikiID, $major,
44 array( 'lang' => $minor, 'site' => $major ) );
45
46 $canonicalServer = $wgConf->get( 'wgCanonicalServer', $wikiID, $major,
47 array( 'lang' => $minor, 'site' => $major ) );
48 if ( $canonicalServer === false || $canonicalServer === null ) {
49 $canonicalServer = $server;
50 }
51
52 $path = $wgConf->get( 'wgArticlePath', $wikiID, $major,
53 array( 'lang' => $minor, 'site' => $major ) );
54 return new WikiReference( $major, $minor, $canonicalServer, $path, $server );
55 }
56
57 /**
58 * Convenience to get the wiki's display name
59 *
60 * @todo We can give more info than just the wiki id!
61 * @param string $wikiID Wiki'd id (generally database name)
62 * @return string|int Wiki's name or $wiki_id if the wiki was not found
63 */
64 public static function getWikiName( $wikiID ) {
65 $wiki = WikiMap::getWiki( $wikiID );
66
67 if ( $wiki ) {
68 return $wiki->getDisplayName();
69 }
70 return $wikiID;
71 }
72
73 /**
74 * Convenience to get a link to a user page on a foreign wiki
75 *
76 * @param string $wikiID Wiki'd id (generally database name)
77 * @param string $user User name (must be normalised before calling this function!)
78 * @param string $text Link's text; optional, default to "User:$user"
79 * @return string HTML link or false if the wiki was not found
80 */
81 public static function foreignUserLink( $wikiID, $user, $text = null ) {
82 return self::makeForeignLink( $wikiID, "User:$user", $text );
83 }
84
85 /**
86 * Convenience to get a link to a page on a foreign wiki
87 *
88 * @param string $wikiID Wiki'd id (generally database name)
89 * @param string $page Page name (must be normalised before calling this function!)
90 * @param string $text Link's text; optional, default to $page
91 * @return string HTML link or false if the wiki was not found
92 */
93 public static function makeForeignLink( $wikiID, $page, $text = null ) {
94 if ( !$text ) {
95 $text = $page;
96 }
97
98 $url = self::getForeignURL( $wikiID, $page );
99 if ( $url === false ) {
100 return false;
101 }
102
103 return Linker::makeExternalLink( $url, $text );
104 }
105
106 /**
107 * Convenience to get a url to a page on a foreign wiki
108 *
109 * @param string $wikiID Wiki'd id (generally database name)
110 * @param string $page Page name (must be normalised before calling this function!)
111 * @param string|null $fragmentId
112 *
113 * @return string|bool URL or false if the wiki was not found
114 */
115 public static function getForeignURL( $wikiID, $page, $fragmentId = null ) {
116 $wiki = WikiMap::getWiki( $wikiID );
117
118 if ( $wiki ) {
119 return $wiki->getFullUrl( $page, $fragmentId );
120 }
121
122 return false;
123 }
124 }
125
126 /**
127 * Reference to a locally-hosted wiki
128 */
129 class WikiReference {
130 private $mMinor; ///< 'en', 'meta', 'mediawiki', etc
131 private $mMajor; ///< 'wiki', 'wiktionary', etc
132 private $mCanonicalServer; ///< canonical server URL, e.g. 'https://www.mediawiki.org'
133 private $mServer; ///< server URL, may be protocol-relative, e.g. '//www.mediawiki.org'
134 private $mPath; ///< path, '/wiki/$1'
135
136 /**
137 * @param string $major
138 * @param string $minor
139 * @param string $canonicalServer
140 * @param string $path
141 * @param null|string $server
142 */
143 public function __construct( $major, $minor, $canonicalServer, $path, $server = null ) {
144 $this->mMajor = $major;
145 $this->mMinor = $minor;
146 $this->mCanonicalServer = $canonicalServer;
147 $this->mPath = $path;
148 $this->mServer = $server === null ? $canonicalServer : $server;
149 }
150
151 /**
152 * Get the URL in a way to be displayed to the user
153 * More or less Wikimedia specific
154 *
155 * @return string
156 */
157 public function getDisplayName() {
158 $parsed = wfParseUrl( $this->mCanonicalServer );
159 if ( $parsed ) {
160 return $parsed['host'];
161 } else {
162 // Invalid server spec. There's no sane thing to do here, so just return the canonical server name in full
163 return $this->mCanonicalServer;
164 }
165 }
166
167 /**
168 * Helper function for getUrl()
169 *
170 * @todo FIXME: This may be generalized...
171 *
172 * @param string $page Page name (must be normalised before calling this function! May contain a section part.)
173 * @param string|null $fragmentId
174 *
175 * @return string relative URL, without the server part.
176 */
177 private function getLocalUrl( $page, $fragmentId = null ) {
178 $page = wfUrlEncode( str_replace( ' ', '_', $page ) );
179
180 if ( is_string( $fragmentId ) && $fragmentId !== '' ) {
181 $page .= '#' . wfUrlEncode( $fragmentId );
182 }
183
184 return str_replace( '$1', $page, $this->mPath );
185 }
186
187 /**
188 * Get a canonical (i.e. based on $wgCanonicalServer) URL to a page on this foreign wiki
189 *
190 * @param string $page Page name (must be normalised before calling this function!)
191 * @param string|null $fragmentId
192 *
193 * @return string Url
194 */
195 public function getCanonicalUrl( $page, $fragmentId = null ) {
196 return $this->mCanonicalServer . $this->getLocalUrl( $page, $fragmentId );
197 }
198
199 /**
200 * Get a canonical server URL
201 * @return string
202 */
203 public function getCanonicalServer() {
204 return $this->mCanonicalServer;
205 }
206
207 /**
208 * Alias for getCanonicalUrl(), for backwards compatibility.
209 * @param string $page
210 * @param string|null $fragmentId
211 *
212 * @return string
213 */
214 public function getUrl( $page, $fragmentId = null ) {
215 return $this->getCanonicalUrl( $page, $fragmentId );
216 }
217
218 /**
219 * Get a URL based on $wgServer, like Title::getFullURL() would produce
220 * when called locally on the wiki.
221 *
222 * @param string $page Page name (must be normalized before calling this function!)
223 * @param string|null $fragmentId
224 *
225 * @return string URL
226 */
227 public function getFullUrl( $page, $fragmentId = null ) {
228 return $this->mServer .
229 $this->getLocalUrl( $page, $fragmentId );
230 }
231 }