8e832ececa4999dd4efda7723c25c715b3fd8a63
[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 * @param 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 * @param 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 * @param 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 object to
141 * @param $lang Language the language object to use for text segmentation.
142 * If not given, $wgContentLang is used.
143 *
144 * @return DiffResult a diff representing the changes that would have to be
145 * made to this content object to make it equal to $that.
146 */
147 public function diff( Content $that, Language $lang = null ) {
148 global $wgContLang;
149
150 $this->checkModelID( $that->getModel() );
151
152 # @todo: could implement this in DifferenceEngine and just delegate here?
153
154 if ( !$lang ) $lang = $wgContLang;
155
156 $otext = $this->getNativeData();
157 $ntext = $this->getNativeData();
158
159 # Note: Use native PHP diff, external engines don't give us abstract output
160 $ota = explode( "\n", $wgContLang->segmentForDiff( $otext ) );
161 $nta = explode( "\n", $wgContLang->segmentForDiff( $ntext ) );
162
163 $diff = new Diff( $ota, $nta );
164 return $diff;
165 }
166
167
168 /**
169 * Returns a generic ParserOutput object, wrapping the HTML returned by
170 * getHtml().
171 *
172 * @param $title Title Context title for parsing
173 * @param $revId int|null Revision ID (for {{REVISIONID}})
174 * @param $options ParserOptions|null Parser options
175 * @param $generateHtml bool Whether or not to generate HTML
176 *
177 * @return ParserOutput representing the HTML form of the text
178 */
179 public function getParserOutput( Title $title,
180 $revId = null,
181 ParserOptions $options = null, $generateHtml = true
182 ) {
183 global $wgParser, $wgTextModelsToParse;
184
185 if ( !$options ) {
186 //NOTE: use canonical options per default to produce cacheable output
187 $options = $this->getContentHandler()->makeParserOptions( 'canonical' );
188 }
189
190 if ( in_array( $this->getModel(), $wgTextModelsToParse ) ) {
191 // parse just to get links etc into the database
192 $po = $wgParser->parse( $this->getNativeData(), $title, $options, true, true, $revId );
193 } else {
194 $po = new ParserOutput();
195 }
196
197 if ( $generateHtml ) {
198 $html = $this->getHtml();
199 } else {
200 $html = '';
201 }
202
203 $po->setText( $html );
204 return $po;
205 }
206
207 /**
208 * Generates an HTML version of the content, for display. Used by
209 * getParserOutput() to construct a ParserOutput object.
210 *
211 * This default implementation just calls getHighlightHtml(). Content
212 * models that have another mapping to HTML (as is the case for markup
213 * languages like wikitext) should override this method to generate the
214 * appropriate HTML.
215 *
216 * @return string An HTML representation of the content
217 */
218 protected function getHtml() {
219 return $this->getHighlightHtml();
220 }
221
222 /**
223 * Generates a syntax-highlighted version of the content, as HTML.
224 * Used by the default implementation of getHtml().
225 *
226 * @return string an HTML representation of the content's markup
227 */
228 protected function getHighlightHtml( ) {
229 # TODO: make Highlighter interface, use highlighter here, if available
230 return htmlspecialchars( $this->getNativeData() );
231 }
232 }