Merge "jquery.suggestions: Hide the suggestions list asynchronously"
[mediawiki.git] / includes / content / TextContent.php
blobb772f176d35fc45839f4783f5abd4353ffa3233d
1 <?php
2 /**
3 * Content object implementation for representing flat text.
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.
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.
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
20 * @since 1.21
22 * @file
23 * @ingroup Content
25 * @author Daniel Kinzler
28 /**
29 * Content object implementation for representing flat text.
31 * TextContent instances are immutable
33 * @ingroup Content
35 class TextContent extends AbstractContent {
37 /**
38 * @param string $text
39 * @param string $model_id
41 public function __construct( $text, $model_id = CONTENT_MODEL_TEXT ) {
42 parent::__construct( $model_id );
44 if ( $text === null || $text === false ) {
45 wfWarn( "TextContent constructed with \$text = " . var_export( $text, true ) . "! "
46 . "This may indicate an error in the caller's scope.", 2 );
48 $text = '';
51 if ( !is_string( $text ) ) {
52 throw new MWException( "TextContent expects a string in the constructor." );
55 $this->mText = $text;
58 /**
59 * @note Mutable subclasses MUST override this to return a copy!
61 * @return Content $this
63 public function copy() {
64 return $this; # NOTE: this is ok since TextContent are immutable.
67 public function getTextForSummary( $maxlength = 250 ) {
68 global $wgContLang;
70 $text = $this->getNativeData();
72 $truncatedtext = $wgContLang->truncate(
73 preg_replace( "/[\n\r]/", ' ', $text ),
74 max( 0, $maxlength ) );
76 return $truncatedtext;
79 /**
80 * Returns the text's size in bytes.
82 * @return int
84 public function getSize() {
85 $text = $this->getNativeData();
87 return strlen( $text );
90 /**
91 * Returns true if this content is not a redirect, and $wgArticleCountMethod
92 * is "any".
94 * @param bool $hasLinks If it is known whether this content contains links,
95 * provide this information here, to avoid redundant parsing to find out.
97 * @return bool
99 public function isCountable( $hasLinks = null ) {
100 global $wgArticleCountMethod;
102 if ( $this->isRedirect() ) {
103 return false;
106 if ( $wgArticleCountMethod === 'any' ) {
107 return true;
110 return false;
114 * Returns the text represented by this Content object, as a string.
116 * @return string The raw text.
118 public function getNativeData() {
119 $text = $this->mText;
121 return $text;
125 * Returns the text represented by this Content object, as a string.
127 * @return string The raw text.
129 public function getTextForSearchIndex() {
130 return $this->getNativeData();
134 * Returns attempts to convert this content object to wikitext,
135 * and then returns the text string. The conversion may be lossy.
137 * @note: this allows any text-based content to be transcluded as if it was wikitext.
139 * @return string|bool The raw text, or false if the conversion failed.
141 public function getWikitextForTransclusion() {
142 $wikitext = $this->convert( CONTENT_MODEL_WIKITEXT, 'lossy' );
144 if ( $wikitext ) {
145 return $wikitext->getNativeData();
146 } else {
147 return false;
152 * Returns a Content object with pre-save transformations applied.
153 * This implementation just trims trailing whitespace.
155 * @param Title $title
156 * @param User $user
157 * @param ParserOptions $popts
159 * @return Content
161 public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
162 $text = $this->getNativeData();
163 $pst = rtrim( $text );
165 return ( $text === $pst ) ? $this : new static( $pst );
169 * Diff this content object with another content object.
171 * @since 1.21
173 * @param Content $that The other content object to compare this content object to.
174 * @param Language $lang The language object to use for text segmentation.
175 * If not given, $wgContentLang is used.
177 * @return Diff A diff representing the changes that would have to be
178 * made to this content object to make it equal to $that.
180 public function diff( Content $that, Language $lang = null ) {
181 global $wgContLang;
183 $this->checkModelID( $that->getModel() );
185 // @todo could implement this in DifferenceEngine and just delegate here?
187 if ( !$lang ) {
188 $lang = $wgContLang;
191 $otext = $this->getNativeData();
192 $ntext = $that->getNativeData();
194 # Note: Use native PHP diff, external engines don't give us abstract output
195 $ota = explode( "\n", $lang->segmentForDiff( $otext ) );
196 $nta = explode( "\n", $lang->segmentForDiff( $ntext ) );
198 $diff = new Diff( $ota, $nta );
200 return $diff;
204 * Fills the provided ParserOutput object with information derived from the content.
205 * Unless $generateHtml was false, this includes an HTML representation of the content
206 * provided by getHtml().
208 * For content models listed in $wgTextModelsToParse, this method will call the MediaWiki
209 * wikitext parser on the text to extract any (wikitext) links, magic words, etc.
211 * Subclasses may override this to provide custom content processing.
212 * For custom HTML generation alone, it is sufficient to override getHtml().
214 * @param Title $title Context title for parsing
215 * @param int $revId Revision ID (for {{REVISIONID}})
216 * @param ParserOptions $options Parser options
217 * @param bool $generateHtml Whether or not to generate HTML
218 * @param ParserOutput $output The output object to fill (reference).
220 protected function fillParserOutput( Title $title, $revId,
221 ParserOptions $options, $generateHtml, ParserOutput &$output
223 global $wgParser, $wgTextModelsToParse;
225 if ( in_array( $this->getModel(), $wgTextModelsToParse ) ) {
226 // parse just to get links etc into the database, HTML is replaced below.
227 $output = $wgParser->parse( $this->getNativeData(), $title, $options, true, true, $revId );
230 if ( $generateHtml ) {
231 $html = $this->getHtml();
232 } else {
233 $html = '';
236 $output->setText( $html );
240 * Generates an HTML version of the content, for display. Used by
241 * fillParserOutput() to provide HTML for the ParserOutput object.
243 * Subclasses may override this to provide a custom HTML rendering.
244 * If further information is to be derived from the content (such as
245 * categories), the fillParserOutput() method can be overridden instead.
247 * For backwards-compatibility, this default implementation just calls
248 * getHighlightHtml().
250 * @return string An HTML representation of the content
252 protected function getHtml() {
253 return $this->getHighlightHtml();
257 * Generates an HTML version of the content, for display.
259 * This default implementation returns an HTML-escaped version
260 * of the raw text content.
262 * @note: The functionality of this method should really be implemented
263 * in getHtml(), and subclasses should override getHtml() if needed.
264 * getHighlightHtml() is kept around for backward compatibility with
265 * extensions that already override it.
267 * @deprecated since 1.24. Use getHtml() instead. In particular, subclasses overriding
268 * getHighlightHtml() should override getHtml() instead.
270 * @return string An HTML representation of the content
272 protected function getHighlightHtml() {
273 return htmlspecialchars( $this->getNativeData() );
277 * This implementation provides lossless conversion between content models based
278 * on TextContent.
280 * @param string $toModel The desired content model, use the CONTENT_MODEL_XXX flags.
281 * @param string $lossy Flag, set to "lossy" to allow lossy conversion. If lossy conversion is not
282 * allowed, full round-trip conversion is expected to work without losing information.
284 * @return Content|bool A content object with the content model $toModel, or false if that
285 * conversion is not supported.
287 * @see Content::convert()
289 public function convert( $toModel, $lossy = '' ) {
290 $converted = parent::convert( $toModel, $lossy );
292 if ( $converted !== false ) {
293 return $converted;
296 $toHandler = ContentHandler::getForModelID( $toModel );
298 if ( $toHandler instanceof TextContentHandler ) {
299 // NOTE: ignore content serialization format - it's just text anyway.
300 $text = $this->getNativeData();
301 $converted = $toHandler->unserializeContent( $text );
304 return $converted;