MediaWiki REL1_32
TextContent.php
Go to the documentation of this file.
1<?php
29
38
42 protected $mText;
43
49 public function __construct( $text, $model_id = CONTENT_MODEL_TEXT ) {
50 parent::__construct( $model_id );
51
52 if ( $text === null || $text === false ) {
53 wfWarn( "TextContent constructed with \$text = " . var_export( $text, true ) . "! "
54 . "This may indicate an error in the caller's scope.", 2 );
55
56 $text = '';
57 }
58
59 if ( !is_string( $text ) ) {
60 throw new MWException( "TextContent expects a string in the constructor." );
61 }
62
63 $this->mText = $text;
64 }
65
71 public function copy() {
72 return $this; # NOTE: this is ok since TextContent are immutable.
73 }
74
75 public function getTextForSummary( $maxlength = 250 ) {
76 $text = $this->getNativeData();
77
78 $truncatedtext = MediaWikiServices::getInstance()->getContentLanguage()->
79 truncateForDatabase( preg_replace( "/[\n\r]/", ' ', $text ), max( 0, $maxlength ) );
80
81 return $truncatedtext;
82 }
83
89 public function getSize() {
90 $text = $this->getNativeData();
91
92 return strlen( $text );
93 }
94
104 public function isCountable( $hasLinks = null ) {
106
107 if ( $this->isRedirect() ) {
108 return false;
109 }
110
111 if ( $wgArticleCountMethod === 'any' ) {
112 return true;
113 }
114
115 return false;
116 }
117
123 public function getNativeData() {
124 return $this->mText;
125 }
126
132 public function getTextForSearchIndex() {
133 return $this->getNativeData();
134 }
135
144 public function getWikitextForTransclusion() {
145 $wikitext = $this->convert( CONTENT_MODEL_WIKITEXT, 'lossy' );
146
147 if ( $wikitext ) {
148 return $wikitext->getNativeData();
149 } else {
150 return false;
151 }
152 }
153
167 public static function normalizeLineEndings( $text ) {
168 return str_replace( [ "\r\n", "\r" ], "\n", rtrim( $text ) );
169 }
170
183 public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
184 $text = $this->getNativeData();
185 $pst = self::normalizeLineEndings( $text );
186
187 return ( $text === $pst ) ? $this : new static( $pst, $this->getModel() );
188 }
189
202 public function diff( Content $that, Language $lang = null ) {
203 $this->checkModelID( $that->getModel() );
204
205 // @todo could implement this in DifferenceEngine and just delegate here?
206
207 if ( !$lang ) {
208 $lang = MediaWikiServices::getInstance()->getContentLanguage();
209 }
210
211 $otext = $this->getNativeData();
212 $ntext = $that->getNativeData();
213
214 # Note: Use native PHP diff, external engines don't give us abstract output
215 $ota = explode( "\n", $lang->segmentForDiff( $otext ) );
216 $nta = explode( "\n", $lang->segmentForDiff( $ntext ) );
217
218 $diff = new Diff( $ota, $nta );
219
220 return $diff;
221 }
222
240 protected function fillParserOutput( Title $title, $revId,
242 ) {
244
245 if ( in_array( $this->getModel(), $wgTextModelsToParse ) ) {
246 // parse just to get links etc into the database, HTML is replaced below.
247 $output = $wgParser->parse( $this->getNativeData(), $title, $options, true, true, $revId );
248 }
249
250 if ( $generateHtml ) {
251 $html = $this->getHtml();
252 } else {
253 $html = '';
254 }
255
256 $output->clearWrapperDivClass();
257 $output->setText( $html );
258 }
259
273 protected function getHtml() {
274 return $this->getHighlightHtml();
275 }
276
293 protected function getHighlightHtml() {
294 return htmlspecialchars( $this->getNativeData() );
295 }
296
310 public function convert( $toModel, $lossy = '' ) {
311 $converted = parent::convert( $toModel, $lossy );
312
313 if ( $converted !== false ) {
314 return $converted;
315 }
316
317 $toHandler = ContentHandler::getForModelID( $toModel );
318
319 if ( $toHandler instanceof TextContentHandler ) {
320 // NOTE: ignore content serialization format - it's just text anyway.
321 $text = $this->getNativeData();
322 $converted = $toHandler->unserializeContent( $text );
323 }
324
325 return $converted;
326 }
327
328}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgArticleCountMethod
Method used to determine if a page in a content namespace should be counted as a valid article.
$wgTextModelsToParse
Determines which types of text are parsed as wikitext.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
$wgParser
Definition Setup.php:921
Base implementation for content objects.
checkModelID( $modelId)
$model_id
Name of the content model this Content object represents.
Class representing a 'diff' between two sequences of strings.
Internationalisation code.
Definition Language.php:35
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Set options of the Parser.
Base content handler implementation for flat text contents.
Content object implementation for representing flat text.
fillParserOutput(Title $title, $revId, ParserOptions $options, $generateHtml, ParserOutput &$output)
Fills the provided ParserOutput object with information derived from the content.
isCountable( $hasLinks=null)
Returns true if this content is not a redirect, and $wgArticleCountMethod is "any".
getSize()
Returns the text's size in bytes.
__construct( $text, $model_id=CONTENT_MODEL_TEXT)
preSaveTransform(Title $title, User $user, ParserOptions $popts)
Returns a Content object with pre-save transformations applied.
getWikitextForTransclusion()
Returns attempts to convert this content object to wikitext, and then returns the text string.
convert( $toModel, $lossy='')
This implementation provides lossless conversion between content models based on TextContent.
getHighlightHtml()
Generates an HTML version of the content, for display.
string $mText
getHtml()
Generates an HTML version of the content, for display.
getNativeData()
Returns the text represented by this Content object, as a string.
diff(Content $that, Language $lang=null)
Diff this content object with another content object.
getTextForSearchIndex()
Returns the text represented by this Content object, as a string.
getTextForSummary( $maxlength=250)
Returns a textual representation of the content suitable for use in edit summaries and log messages.
static normalizeLineEndings( $text)
Do a "\\r\\n" -> "\\n" and "\\r" -> "\\n" transformation as well as trim trailing whitespace.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:47
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types are
const CONTENT_MODEL_WIKITEXT
Definition Defines.php:235
const CONTENT_MODEL_TEXT
Definition Defines.php:238
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2050
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:994
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:2062
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2317
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Base interface for content objects.
Definition Content.php:34
getNativeData()
Returns native representation of the data.
getModel()
Returns the ID of the content model used by this Content object.
In both all secondary updates will be triggered handle like object that caches derived data representing a and can trigger updates of cached copies of that e g in the links the and the CDN layer DerivedPageDataUpdater is used by PageUpdater when creating new but can also be used independently when performing meta data updates during or when puring a page It s a stepping stone on the way to a more complete refactoring of WikiPage NOTE
This document provides an overview of the usage of PageUpdater and that is
if(!isset( $args[0])) $lang