74c5a882cda8852079d1fc108fa4c346f4ff11bb
[lhc/web/wiklou.git] / includes / content / TextContent.php
1 <?php
2
3 /**
4 * Content object implementation for representing flat text.
5 *
6 * TextContent instances are immutable
7 *
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.
12 *
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.
17 *
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
22 *
23 * @since 1.21
24 *
25 * @file
26 * @ingroup Content
27 *
28 * @author Daniel Kinzler
29 */
30 class TextContent extends AbstractContent {
31
32 public function __construct( $text, $model_id = CONTENT_MODEL_TEXT ) {
33 parent::__construct( $model_id );
34
35 if ( !is_string( $text ) ) {
36 throw new MWException( "TextContent expects a string in the constructor." );
37 }
38
39 $this->mText = $text;
40 }
41
42 public function copy() {
43 return $this; # NOTE: this is ok since TextContent are immutable.
44 }
45
46 public function getTextForSummary( $maxlength = 250 ) {
47 global $wgContLang;
48
49 $text = $this->getNativeData();
50
51 $truncatedtext = $wgContLang->truncate(
52 preg_replace( "/[\n\r]/", ' ', $text ),
53 max( 0, $maxlength ) );
54
55 return $truncatedtext;
56 }
57
58 /**
59 * returns the text's size in bytes.
60 *
61 * @return int The size
62 */
63 public function getSize( ) {
64 $text = $this->getNativeData( );
65 return strlen( $text );
66 }
67
68 /**
69 * Returns true if this content is not a redirect, and $wgArticleCountMethod
70 * is "any".
71 *
72 * @param $hasLinks Bool: if it is known whether this content contains links,
73 * provide this information here, to avoid redundant parsing to find out.
74 *
75 * @return bool True if the content is countable
76 */
77 public function isCountable( $hasLinks = null ) {
78 global $wgArticleCountMethod;
79
80 if ( $this->isRedirect( ) ) {
81 return false;
82 }
83
84 if ( $wgArticleCountMethod === 'any' ) {
85 return true;
86 }
87
88 return false;
89 }
90
91 /**
92 * Returns the text represented by this Content object, as a string.
93 *
94 * @return string: the raw text
95 */
96 public function getNativeData( ) {
97 $text = $this->mText;
98 return $text;
99 }
100
101 /**
102 * Returns the text represented by this Content object, as a string.
103 *
104 * @return string: the raw text
105 */
106 public function getTextForSearchIndex( ) {
107 return $this->getNativeData();
108 }
109
110 /**
111 * Returns the text represented by this Content object, as a string.
112 *
113 * @return string: the raw text
114 */
115 public function getWikitextForTransclusion( ) {
116 return $this->getNativeData();
117 }
118
119 /**
120 * Returns a Content object with pre-save transformations applied.
121 * This implementation just trims trailing whitespace.
122 *
123 * @param $title Title
124 * @param $user User
125 * @param $popts ParserOptions
126 * @return Content
127 */
128 public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
129 $text = $this->getNativeData();
130 $pst = rtrim( $text );
131
132 return ( $text === $pst ) ? $this : new WikitextContent( $pst );
133 }
134
135 /**
136 * Diff this content object with another content object.
137 *
138 * @since 1.21diff
139 *
140 * @param $that Content: The other content object to compare this content
141 * object to.
142 * @param $lang Language: The language object to use for text segmentation.
143 * If not given, $wgContentLang is used.
144 *
145 * @return DiffResult: A diff representing the changes that would have to be
146 * made to this content object to make it equal to $that.
147 */
148 public function diff( Content $that, Language $lang = null ) {
149 global $wgContLang;
150
151 $this->checkModelID( $that->getModel() );
152
153 # @todo: could implement this in DifferenceEngine and just delegate here?
154
155 if ( !$lang ) $lang = $wgContLang;
156
157 $otext = $this->getNativeData();
158 $ntext = $this->getNativeData();
159
160 # Note: Use native PHP diff, external engines don't give us abstract output
161 $ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
162 $nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
163
164 $diff = new Diff( $ota, $nta );
165 return $diff;
166 }
167
168
169 /**
170 * Returns a generic ParserOutput object, wrapping the HTML returned by
171 * getHtml().
172 *
173 * @param $title Title Context title for parsing
174 * @param $revId int|null Revision ID (for {{REVISIONID}})
175 * @param $options ParserOptions|null Parser options
176 * @param $generateHtml bool Whether or not to generate HTML
177 *
178 * @return ParserOutput representing the HTML form of the text
179 */
180 public function getParserOutput( Title $title,
181 $revId = null,
182 ParserOptions $options = null, $generateHtml = true
183 ) {
184 global $wgParser, $wgTextModelsToParse;
185
186 if ( !$options ) {
187 //NOTE: use canonical options per default to produce cacheable output
188 $options = $this->getContentHandler()->makeParserOptions( 'canonical' );
189 }
190
191 if ( in_array( $this->getModel(), $wgTextModelsToParse ) ) {
192 // parse just to get links etc into the database
193 $po = $wgParser->parse( $this->getNativeData(), $title, $options, true, true, $revId );
194 } else {
195 $po = new ParserOutput();
196 }
197
198 if ( $generateHtml ) {
199 $html = $this->getHtml();
200 } else {
201 $html = '';
202 }
203
204 $po->setText( $html );
205 return $po;
206 }
207
208 /**
209 * Generates an HTML version of the content, for display. Used by
210 * getParserOutput() to construct a ParserOutput object.
211 *
212 * This default implementation just calls getHighlightHtml(). Content
213 * models that have another mapping to HTML (as is the case for markup
214 * languages like wikitext) should override this method to generate the
215 * appropriate HTML.
216 *
217 * @return string An HTML representation of the content
218 */
219 protected function getHtml() {
220 return $this->getHighlightHtml();
221 }
222
223 /**
224 * Generates a syntax-highlighted version of the content, as HTML.
225 * Used by the default implementation of getHtml().
226 *
227 * @return string an HTML representation of the content's markup
228 */
229 protected function getHighlightHtml( ) {
230 # TODO: make Highlighter interface, use highlighter here, if available
231 return htmlspecialchars( $this->getNativeData() );
232 }
233 }