Merge "Preload styles for 'jquery.tablesorter'"
[lhc/web/wiklou.git] / includes / content / Content.php
1 <?php
2 /**
3 * A content object represents page content, e.g. the text to show on a page.
4 * Content objects have no knowledge about how they relate to wiki pages.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @since 1.21
22 *
23 * @file
24 * @ingroup Content
25 *
26 * @author Daniel Kinzler
27 */
28
29 /**
30 * Base interface for content objects.
31 *
32 * @ingroup Content
33 */
34 interface Content {
35
36 /**
37 * @since 1.21
38 *
39 * @return string A string representing the content in a way useful for
40 * building a full text search index. If no useful representation exists,
41 * this method returns an empty string.
42 *
43 * @todo Test that this actually works
44 * @todo Make sure this also works with LuceneSearch / WikiSearch
45 */
46 public function getTextForSearchIndex();
47
48 /**
49 * @since 1.21
50 *
51 * @return string|bool The wikitext to include when another page includes this
52 * content, or false if the content is not includable in a wikitext page.
53 *
54 * @todo Allow native handling, bypassing wikitext representation, like
55 * for includable special pages.
56 * @todo Allow transclusion into other content models than Wikitext!
57 * @todo Used in WikiPage and MessageCache to get message text. Not so
58 * nice. What should we use instead?!
59 */
60 public function getWikitextForTransclusion();
61
62 /**
63 * Returns a textual representation of the content suitable for use in edit
64 * summaries and log messages.
65 *
66 * @since 1.21
67 *
68 * @param int $maxLength Maximum length of the summary text.
69 *
70 * @return string The summary text.
71 */
72 public function getTextForSummary( $maxLength = 250 );
73
74 /**
75 * Returns native representation of the data. Interpretation depends on
76 * the data model used, as given by getDataModel().
77 *
78 * @since 1.21
79 *
80 * @deprecated since 1.33 use getText() for TextContent instances.
81 * For other content models, use specialized getters.
82 *
83 * @return mixed The native representation of the content. Could be a
84 * string, a nested array structure, an object, a binary blob...
85 * anything, really.
86 *
87 * @note Caller must be aware of content model!
88 */
89 public function getNativeData();
90
91 /**
92 * Returns the content's nominal size in "bogo-bytes".
93 *
94 * @return int
95 */
96 public function getSize();
97
98 /**
99 * Returns the ID of the content model used by this Content object.
100 * Corresponds to the CONTENT_MODEL_XXX constants.
101 *
102 * @since 1.21
103 *
104 * @return string The model id
105 */
106 public function getModel();
107
108 /**
109 * Convenience method that returns the ContentHandler singleton for handling
110 * the content model that this Content object uses.
111 *
112 * Shorthand for ContentHandler::getForContent( $this )
113 *
114 * @since 1.21
115 *
116 * @return ContentHandler
117 */
118 public function getContentHandler();
119
120 /**
121 * Convenience method that returns the default serialization format for the
122 * content model that this Content object uses.
123 *
124 * Shorthand for $this->getContentHandler()->getDefaultFormat()
125 *
126 * @since 1.21
127 *
128 * @return string
129 */
130 public function getDefaultFormat();
131
132 /**
133 * Convenience method that returns the list of serialization formats
134 * supported for the content model that this Content object uses.
135 *
136 * Shorthand for $this->getContentHandler()->getSupportedFormats()
137 *
138 * @since 1.21
139 *
140 * @return string[] List of supported serialization formats
141 */
142 public function getSupportedFormats();
143
144 /**
145 * Returns true if $format is a supported serialization format for this
146 * Content object, false if it isn't.
147 *
148 * Note that this should always return true if $format is null, because null
149 * stands for the default serialization.
150 *
151 * Shorthand for $this->getContentHandler()->isSupportedFormat( $format )
152 *
153 * @since 1.21
154 *
155 * @param string $format The serialization format to check.
156 *
157 * @return bool Whether the format is supported
158 */
159 public function isSupportedFormat( $format );
160
161 /**
162 * Convenience method for serializing this Content object.
163 *
164 * Shorthand for $this->getContentHandler()->serializeContent( $this, $format )
165 *
166 * @since 1.21
167 *
168 * @param string|null $format The desired serialization format, or null for the default format.
169 *
170 * @return string Serialized form of this Content object.
171 */
172 public function serialize( $format = null );
173
174 /**
175 * Returns true if this Content object represents empty content.
176 *
177 * @since 1.21
178 *
179 * @return bool Whether this Content object is empty
180 */
181 public function isEmpty();
182
183 /**
184 * Returns whether the content is valid. This is intended for local validity
185 * checks, not considering global consistency.
186 *
187 * Content needs to be valid before it can be saved.
188 *
189 * This default implementation always returns true.
190 *
191 * @since 1.21
192 *
193 * @return bool
194 */
195 public function isValid();
196
197 /**
198 * Returns true if this Content objects is conceptually equivalent to the
199 * given Content object.
200 *
201 * Contract:
202 *
203 * - Will return false if $that is null.
204 * - Will return true if $that === $this.
205 * - Will return false if $that->getModel() !== $this->getModel().
206 * - Will return false if get_class( $that ) !== get_class( $this )
207 * - Should return false if $that->getModel() == $this->getModel() and
208 * $that is not semantically equivalent to $this, according to
209 * the data model defined by $this->getModel().
210 *
211 * Implementations should be careful to make equals() transitive and reflexive:
212 *
213 * - $a->equals( $b ) <=> $b->equals( $a )
214 * - $a->equals( $b ) && $b->equals( $c ) ==> $a->equals( $c )
215 *
216 * @since 1.21
217 *
218 * @param Content|null $that The Content object to compare to.
219 *
220 * @return bool True if this Content object is equal to $that, false otherwise.
221 */
222 public function equals( Content $that = null );
223
224 /**
225 * Return a copy of this Content object. The following must be true for the
226 * object returned:
227 *
228 * if $copy = $original->copy()
229 *
230 * - get_class($original) === get_class($copy)
231 * - $original->getModel() === $copy->getModel()
232 * - $original->equals( $copy )
233 *
234 * If and only if the Content object is immutable, the copy() method can and
235 * should return $this. That is, $copy === $original may be true, but only
236 * for immutable content objects.
237 *
238 * @since 1.21
239 *
240 * @return Content A copy of this object
241 */
242 public function copy();
243
244 /**
245 * Returns true if this content is countable as a "real" wiki page, provided
246 * that it's also in a countable location (e.g. a current revision in the
247 * main namespace).
248 *
249 * @see SlotRoleHandler::supportsArticleCount
250 *
251 * @since 1.21
252 *
253 * @param bool|null $hasLinks If it is known whether this content contains
254 * links, provide this information here, to avoid redundant parsing to
255 * find out.
256 *
257 * @return bool
258 */
259 public function isCountable( $hasLinks = null );
260
261 /**
262 * Parse the Content object and generate a ParserOutput from the result.
263 * $result->getText() can be used to obtain the generated HTML. If no HTML
264 * is needed, $generateHtml can be set to false; in that case,
265 * $result->getText() may return null.
266 *
267 * @note To control which options are used in the cache key for the
268 * generated parser output, implementations of this method
269 * may call ParserOutput::recordOption() on the output object.
270 *
271 * @param Title $title The page title to use as a context for rendering.
272 * @param int|null $revId Optional revision ID being rendered.
273 * @param ParserOptions|null $options Any parser options.
274 * @param bool $generateHtml Whether to generate HTML (default: true). If false,
275 * the result of calling getText() on the ParserOutput object returned by
276 * this method is undefined.
277 *
278 * @since 1.21
279 *
280 * @return ParserOutput
281 */
282 public function getParserOutput( Title $title, $revId = null,
283 ParserOptions $options = null, $generateHtml = true );
284
285 // TODO: make RenderOutput and RenderOptions base classes
286
287 /**
288 * Returns a list of DataUpdate objects for recording information about this
289 * Content in some secondary data store. If the optional second argument,
290 * $old, is given, the updates may model only the changes that need to be
291 * made to replace information about the old content with information about
292 * the new content.
293 *
294 * @deprecated since 1.32, call and override
295 * ContentHandler::getSecondaryDataUpdates instead.
296 *
297 * @note Implementations should call the SecondaryDataUpdates hook, like
298 * AbstractContent does.
299 *
300 * @param Title $title The context for determining the necessary updates
301 * @param Content|null $old An optional Content object representing the
302 * previous content, i.e. the content being replaced by this Content
303 * object.
304 * @param bool $recursive Whether to include recursive updates (default:
305 * false).
306 * @param ParserOutput|null $parserOutput Optional ParserOutput object.
307 * Provide if you have one handy, to avoid re-parsing of the content.
308 *
309 * @return DataUpdate[] A list of DataUpdate objects for putting information
310 * about this content object somewhere.
311 *
312 * @since 1.21
313 */
314 public function getSecondaryDataUpdates( Title $title, Content $old = null,
315 $recursive = true, ParserOutput $parserOutput = null );
316
317 /**
318 * Construct the redirect destination from this content and return an
319 * array of Titles, or null if this content doesn't represent a redirect.
320 * The last element in the array is the final destination after all redirects
321 * have been resolved (up to $wgMaxRedirects times).
322 *
323 * @since 1.21
324 *
325 * @return Title[]|null List of Titles, with the destination last.
326 */
327 public function getRedirectChain();
328
329 /**
330 * Construct the redirect destination from this content and return a Title,
331 * or null if this content doesn't represent a redirect.
332 * This will only return the immediate redirect target, useful for
333 * the redirect table and other checks that don't need full recursion.
334 *
335 * @since 1.21
336 *
337 * @return Title|null The corresponding Title.
338 */
339 public function getRedirectTarget();
340
341 /**
342 * Construct the redirect destination from this content and return the
343 * Title, or null if this content doesn't represent a redirect.
344 *
345 * This will recurse down $wgMaxRedirects times or until a non-redirect
346 * target is hit in order to provide (hopefully) the Title of the final
347 * destination instead of another redirect.
348 *
349 * There is usually no need to override the default behavior, subclasses that
350 * want to implement redirects should override getRedirectTarget().
351 *
352 * @since 1.21
353 *
354 * @return Title|null
355 */
356 public function getUltimateRedirectTarget();
357
358 /**
359 * Returns whether this Content represents a redirect.
360 * Shorthand for getRedirectTarget() !== null.
361 *
362 * @see SlotRoleHandler::supportsRedirects
363 *
364 * @since 1.21
365 *
366 * @return bool
367 */
368 public function isRedirect();
369
370 /**
371 * If this Content object is a redirect, this method updates the redirect target.
372 * Otherwise, it does nothing.
373 *
374 * @since 1.21
375 *
376 * @param Title $target The new redirect target
377 *
378 * @return Content A new Content object with the updated redirect (or $this
379 * if this Content object isn't a redirect)
380 */
381 public function updateRedirect( Title $target );
382
383 /**
384 * Returns the section with the given ID.
385 *
386 * @since 1.21
387 *
388 * @param string|int $sectionId Section identifier as a number or string
389 * (e.g. 0, 1 or 'T-1'). The ID "0" retrieves the section before the first heading, "1" the
390 * text between the first heading (included) and the second heading (excluded), etc.
391 *
392 * @return Content|bool|null The section, or false if no such section
393 * exist, or null if sections are not supported.
394 */
395 public function getSection( $sectionId );
396
397 /**
398 * Replaces a section of the content and returns a Content object with the
399 * section replaced.
400 *
401 * @since 1.21
402 *
403 * @param string|int|null|bool $sectionId Section identifier as a number or string
404 * (e.g. 0, 1 or 'T-1'), null/false or an empty string for the whole page
405 * or 'new' for a new section.
406 * @param Content $with New content of the section
407 * @param string $sectionTitle New section's subject, only if $section is 'new'
408 *
409 * @return string|null Complete article text, or null if error
410 */
411 public function replaceSection( $sectionId, Content $with, $sectionTitle = '' );
412
413 /**
414 * Returns a Content object with pre-save transformations applied (or this
415 * object if no transformations apply).
416 *
417 * @since 1.21
418 *
419 * @param Title $title
420 * @param User $user
421 * @param ParserOptions $parserOptions
422 *
423 * @return Content
424 */
425 public function preSaveTransform( Title $title, User $user, ParserOptions $parserOptions );
426
427 /**
428 * Returns a new WikitextContent object with the given section heading
429 * prepended, if supported. The default implementation just returns this
430 * Content object unmodified, ignoring the section header.
431 *
432 * @since 1.21
433 *
434 * @param string $header
435 *
436 * @return Content
437 */
438 public function addSectionHeader( $header );
439
440 /**
441 * Returns a Content object with preload transformations applied (or this
442 * object if no transformations apply).
443 *
444 * @since 1.21
445 *
446 * @param Title $title
447 * @param ParserOptions $parserOptions
448 * @param array $params
449 *
450 * @return Content
451 */
452 public function preloadTransform( Title $title, ParserOptions $parserOptions, $params = [] );
453
454 /**
455 * Prepare Content for saving. Called before Content is saved by WikiPage::doEditContent() and in
456 * similar places.
457 *
458 * This may be used to check the content's consistency with global state. This function should
459 * NOT write any information to the database.
460 *
461 * Note that this method will usually be called inside the same transaction
462 * bracket that will be used to save the new revision.
463 *
464 * Note that this method is called before any update to the page table is
465 * performed. This means that $page may not yet know a page ID.
466 *
467 * @since 1.21
468 *
469 * @param WikiPage $page The page to be saved.
470 * @param int $flags Bitfield for use with EDIT_XXX constants, see WikiPage::doEditContent()
471 * @param int $parentRevId The ID of the current revision
472 * @param User $user
473 *
474 * @return Status A status object indicating whether the content was
475 * successfully prepared for saving. If the returned status indicates
476 * an error, a rollback will be performed and the transaction aborted.
477 *
478 * @see WikiPage::doEditContent()
479 */
480 public function prepareSave( WikiPage $page, $flags, $parentRevId, User $user );
481
482 /**
483 * Returns a list of updates to perform when this content is deleted.
484 * The necessary updates may be taken from the Content object, or depend on
485 * the current state of the database.
486 *
487 * @since 1.21
488 * @deprecated since 1.32, call and override
489 * ContentHandler::getDeletionUpdates instead.
490 *
491 * @param WikiPage $page The page the content was deleted from.
492 * @param ParserOutput|null $parserOutput Optional parser output object
493 * for efficient access to meta-information about the content object.
494 * Provide if you have one handy.
495 *
496 * @return DeferrableUpdate[] A list of DeferrableUpdate instances that will clean up the
497 * database after deletion.
498 */
499 public function getDeletionUpdates( WikiPage $page,
500 ParserOutput $parserOutput = null );
501
502 /**
503 * Returns true if this Content object matches the given magic word.
504 *
505 * @since 1.21
506 *
507 * @param MagicWord $word The magic word to match
508 *
509 * @return bool Whether this Content object matches the given magic word.
510 */
511 public function matchMagicWord( MagicWord $word );
512
513 /**
514 * Converts this content object into another content object with the given content model,
515 * if that is possible.
516 *
517 * @param string $toModel The desired content model, use the CONTENT_MODEL_XXX flags.
518 * @param string $lossy Optional flag, set to "lossy" to allow lossy conversion. If lossy
519 * conversion is not allowed, full round-trip conversion is expected to work without losing
520 * information.
521 *
522 * @return Content|bool A content object with the content model $toModel, or false if
523 * that conversion is not supported.
524 */
525 public function convert( $toModel, $lossy = '' );
526 // @todo ImagePage and CategoryPage interfere with per-content action handlers
527 // @todo nice&sane integration of GeSHi syntax highlighting
528 // [11:59] <vvv> Hooks are ugly; make CodeHighlighter interface and a
529 // config to set the class which handles syntax highlighting
530 // [12:00] <vvv> And default it to a DummyHighlighter
531
532 }