3 use MediaWiki\Site\MediaWikiPageNameNormalizer
;
6 * Class representing a MediaWiki site.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
25 * @license GNU GPL v2+
26 * @author John Erling Blad < jeblad@gmail.com >
27 * @author Daniel Kinzler
28 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
32 * Class representing a MediaWiki site.
38 class MediaWikiSite
extends Site
{
39 const PATH_FILE
= 'file_path';
40 const PATH_PAGE
= 'page_path';
44 * @deprecated since 1.21 Just use the constructor or the factory Site::newForType
46 * @param int $globalId
48 * @return MediaWikiSite
50 public static function newFromGlobalId( $globalId ) {
52 $site->setGlobalId( $globalId );
63 public function __construct( $type = self
::TYPE_MEDIAWIKI
) {
64 parent
::__construct( $type );
68 * Returns the database form of the given title.
72 * @param string $title The target page's title, in normalized form.
76 public function toDBKey( $title ) {
77 return str_replace( ' ', '_', $title );
81 * Returns the normalized form of the given page title, using the
82 * normalization rules of the given site. If the given title is a redirect,
83 * the redirect weill be resolved and the redirect target is returned.
85 * @note This actually makes an API request to the remote site, so beware
86 * that this function is slow and depends on an external service.
88 * @note If MW_PHPUNIT_TEST is defined, the call to the external site is
89 * skipped, and the title is normalized using the local normalization
90 * rules as implemented by the Title class.
92 * @see Site::normalizePageName
96 * @param string $pageName
101 public function normalizePageName( $pageName ) {
102 if ( defined( 'MW_PHPUNIT_TEST' ) ) {
103 // If the code is under test, don't call out to other sites, just
104 // normalize locally.
105 // Note: this may cause results to be inconsistent with the actual
106 // normalization used by the respective remote site!
108 $t = Title
::newFromText( $pageName );
109 return $t->getPrefixedText();
111 static $mediaWikiPageNameNormalizer = null;
113 if ( $mediaWikiPageNameNormalizer === null ) {
114 $mediaWikiPageNameNormalizer = new MediaWikiPageNameNormalizer();
117 return $mediaWikiPageNameNormalizer->normalizePageName(
119 $this->getFileUrl( 'api.php' )
125 * @see Site::getLinkPathType
126 * Returns Site::PATH_PAGE
132 public function getLinkPathType() {
133 return self
::PATH_PAGE
;
137 * Returns the relative page path.
143 public function getRelativePagePath() {
144 return parse_url( $this->getPath( self
::PATH_PAGE
), PHP_URL_PATH
);
148 * Returns the relative file path.
154 public function getRelativeFilePath() {
155 return parse_url( $this->getPath( self
::PATH_FILE
), PHP_URL_PATH
);
159 * Sets the relative page path.
163 * @param string $path
165 public function setPagePath( $path ) {
166 $this->setPath( self
::PATH_PAGE
, $path );
170 * Sets the relative file path.
174 * @param string $path
176 public function setFilePath( $path ) {
177 $this->setPath( self
::PATH_FILE
, $path );
181 * @see Site::getPageUrl
183 * This implementation returns a URL constructed using the path returned by getLinkPath().
184 * In addition to the default behavior implemented by Site::getPageUrl(), this
185 * method converts the $pageName to DBKey-format by replacing spaces with underscores
186 * before using it in the URL.
190 * @param string|bool $pageName Page name or false (default: false)
194 public function getPageUrl( $pageName = false ) {
195 $url = $this->getLinkPath();
197 if ( $url === false ) {
201 if ( $pageName !== false ) {
202 $pageName = $this->toDBKey( trim( $pageName ) );
203 $url = str_replace( '$1', wfUrlencode( $pageName ), $url );
210 * Returns the full file path (ie site url + relative file path).
211 * The path should go at the $1 marker. If the $path
212 * argument is provided, the marker will be replaced by it's value.
216 * @param string|bool $path
220 public function getFileUrl( $path = false ) {
221 $filePath = $this->getPath( self
::PATH_FILE
);
223 if ( $filePath !== false ) {
224 $filePath = str_replace( '$1', $path, $filePath );