PHPSessionHandler: Implement SessionHandlerInterface
[mediawiki.git] / includes / site / MediaWikiSite.php
blob0f7e5d7e7c519689512e541ec2b0c37580c990f2
1 <?php
3 use MediaWiki\Site\MediaWikiPageNameNormalizer;
5 /**
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
23 * @file
24 * @ingroup Site
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 >
31 /**
32 * Class representing a MediaWiki site.
34 * @since 1.21
36 * @ingroup Site
38 class MediaWikiSite extends Site {
39 const PATH_FILE = 'file_path';
40 const PATH_PAGE = 'page_path';
42 /**
43 * @since 1.21
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 ) {
51 $site = new static();
52 $site->setGlobalId( $globalId );
53 return $site;
56 /**
57 * Constructor.
59 * @since 1.21
61 * @param string $type
63 public function __construct( $type = self::TYPE_MEDIAWIKI ) {
64 parent::__construct( $type );
67 /**
68 * Returns the database form of the given title.
70 * @since 1.21
72 * @param string $title The target page's title, in normalized form.
74 * @return string
76 public function toDBKey( $title ) {
77 return str_replace( ' ', '_', $title );
80 /**
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
94 * @since 1.21
96 * @param string $pageName
98 * @return string
99 * @throws MWException
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();
110 } else {
111 static $mediaWikiPageNameNormalizer = null;
113 if ( $mediaWikiPageNameNormalizer === null ) {
114 $mediaWikiPageNameNormalizer = new MediaWikiPageNameNormalizer();
117 return $mediaWikiPageNameNormalizer->normalizePageName(
118 $pageName,
119 $this->getFileUrl( 'api.php' )
125 * @see Site::getLinkPathType
126 * Returns Site::PATH_PAGE
128 * @since 1.21
130 * @return string
132 public function getLinkPathType() {
133 return self::PATH_PAGE;
137 * Returns the relative page path.
139 * @since 1.21
141 * @return string
143 public function getRelativePagePath() {
144 return parse_url( $this->getPath( self::PATH_PAGE ), PHP_URL_PATH );
148 * Returns the relative file path.
150 * @since 1.21
152 * @return string
154 public function getRelativeFilePath() {
155 return parse_url( $this->getPath( self::PATH_FILE ), PHP_URL_PATH );
159 * Sets the relative page path.
161 * @since 1.21
163 * @param string $path
165 public function setPagePath( $path ) {
166 $this->setPath( self::PATH_PAGE, $path );
170 * Sets the relative file path.
172 * @since 1.21
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.
188 * @since 1.21
190 * @param string|bool $pageName Page name or false (default: false)
192 * @return string
194 public function getPageUrl( $pageName = false ) {
195 $url = $this->getLinkPath();
197 if ( $url === false ) {
198 return false;
201 if ( $pageName !== false ) {
202 $pageName = $this->toDBKey( trim( $pageName ) );
203 $url = str_replace( '$1', wfUrlencode( $pageName ), $url );
206 return $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.
214 * @since 1.21
216 * @param string|bool $path
218 * @return string
220 public function getFileUrl( $path = false ) {
221 $filePath = $this->getPath( self::PATH_FILE );
223 if ( $filePath !== false ) {
224 $filePath = str_replace( '$1', $path, $filePath );
227 return $filePath;