]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - includes/content/CssContent.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / includes / content / CssContent.php
1 <?php
2 /**
3  * Content object for CSS pages.
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  * @since 1.21
21  *
22  * @file
23  * @ingroup Content
24  *
25  * @author Daniel Kinzler
26  */
27
28 /**
29  * Content object for CSS pages.
30  *
31  * @ingroup Content
32  */
33 class CssContent extends TextContent {
34
35         /**
36          * @var bool|Title|null
37          */
38         private $redirectTarget = false;
39
40         /**
41          * @param string $text CSS code.
42          * @param string $modelId the content content model
43          */
44         public function __construct( $text, $modelId = CONTENT_MODEL_CSS ) {
45                 parent::__construct( $text, $modelId );
46         }
47
48         /**
49          * Returns a Content object with pre-save transformations applied using
50          * Parser::preSaveTransform().
51          *
52          * @param Title $title
53          * @param User $user
54          * @param ParserOptions $popts
55          *
56          * @return CssContent
57          *
58          * @see TextContent::preSaveTransform
59          */
60         public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
61                 global $wgParser;
62                 // @todo Make pre-save transformation optional for script pages
63
64                 $text = $this->getNativeData();
65                 $pst = $wgParser->preSaveTransform( $text, $title, $user, $popts );
66
67                 return new static( $pst );
68         }
69
70         /**
71          * @return string CSS wrapped in a <pre> tag.
72          */
73         protected function getHtml() {
74                 $html = "";
75                 $html .= "<pre class=\"mw-code mw-css\" dir=\"ltr\">\n";
76                 $html .= htmlspecialchars( $this->getNativeData() );
77                 $html .= "\n</pre>\n";
78
79                 return $html;
80         }
81
82         /**
83          * @param Title $target
84          * @return CssContent
85          */
86         public function updateRedirect( Title $target ) {
87                 if ( !$this->isRedirect() ) {
88                         return $this;
89                 }
90
91                 return $this->getContentHandler()->makeRedirectContent( $target );
92         }
93
94         /**
95          * @return Title|null
96          */
97         public function getRedirectTarget() {
98                 if ( $this->redirectTarget !== false ) {
99                         return $this->redirectTarget;
100                 }
101                 $this->redirectTarget = null;
102                 $text = $this->getNativeData();
103                 if ( strpos( $text, '/* #REDIRECT */' ) === 0 ) {
104                         // Extract the title from the url
105                         preg_match( '/title=(.*?)&action=raw/', $text, $matches );
106                         if ( isset( $matches[1] ) ) {
107                                 $title = Title::newFromText( $matches[1] );
108                                 if ( $title ) {
109                                         // Have a title, check that the current content equals what
110                                         // the redirect content should be
111                                         if ( $this->equals( $this->getContentHandler()->makeRedirectContent( $title ) ) ) {
112                                                 $this->redirectTarget = $title;
113                                         }
114                                 }
115                         }
116                 }
117
118                 return $this->redirectTarget;
119         }
120
121 }