Merge "Avoid INSERT..SELECT in doArticleDeleteReal()"
[mediawiki.git] / includes / parser / ParserOptions.php
blob891c4dde6cc43366c33847f03011c349cc29957f
1 <?php
2 /**
3 * Options for the PHP parser
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 * @file
21 * @ingroup Parser
24 /**
25 * @brief Set options of the Parser
27 * All member variables are supposed to be private in theory, although in
28 * practice this is not the case.
30 * @ingroup Parser
32 class ParserOptions {
34 /**
35 * Interlanguage links are removed and returned in an array
37 private $mInterwikiMagic;
39 /**
40 * Allow external images inline?
42 private $mAllowExternalImages;
44 /**
45 * If not, any exception?
47 private $mAllowExternalImagesFrom;
49 /**
50 * If not or it doesn't match, should we check an on-wiki whitelist?
52 private $mEnableImageWhitelist;
54 /**
55 * Date format index
57 private $mDateFormat = null;
59 /**
60 * Create "edit section" links?
62 private $mEditSection = true;
64 /**
65 * Allow inclusion of special pages?
67 private $mAllowSpecialInclusion;
69 /**
70 * Use tidy to cleanup output HTML?
72 private $mTidy = false;
74 /**
75 * Which lang to call for PLURAL and GRAMMAR
77 private $mInterfaceMessage = false;
79 /**
80 * Overrides $mInterfaceMessage with arbitrary language
82 private $mTargetLanguage = null;
84 /**
85 * Maximum size of template expansions, in bytes
87 private $mMaxIncludeSize;
89 /**
90 * Maximum number of nodes touched by PPFrame::expand()
92 private $mMaxPPNodeCount;
94 /**
95 * Maximum number of nodes generated by Preprocessor::preprocessToObj()
97 private $mMaxGeneratedPPNodeCount;
99 /**
100 * Maximum recursion depth in PPFrame::expand()
102 private $mMaxPPExpandDepth;
105 * Maximum recursion depth for templates within templates
107 private $mMaxTemplateDepth;
110 * Maximum number of calls per parse to expensive parser functions
112 private $mExpensiveParserFunctionLimit;
115 * Remove HTML comments. ONLY APPLIES TO PREPROCESS OPERATIONS
117 private $mRemoveComments = true;
120 * @var callable Callback for current revision fetching; first argument to call_user_func().
122 private $mCurrentRevisionCallback =
123 [ 'Parser', 'statelessFetchRevision' ];
126 * @var callable Callback for template fetching; first argument to call_user_func().
128 private $mTemplateCallback =
129 [ 'Parser', 'statelessFetchTemplate' ];
132 * @var callable|null Callback to generate a guess for {{REVISIONID}}
134 private $mSpeculativeRevIdCallback;
137 * Enable limit report in an HTML comment on output
139 private $mEnableLimitReport = false;
142 * Timestamp used for {{CURRENTDAY}} etc.
144 private $mTimestamp;
147 * Target attribute for external links
149 private $mExternalLinkTarget;
152 * Clean up signature texts?
153 * @see Parser::cleanSig
155 private $mCleanSignatures;
158 * Transform wiki markup when saving the page?
160 private $mPreSaveTransform = true;
163 * Whether content conversion should be disabled
165 private $mDisableContentConversion;
168 * Whether title conversion should be disabled
170 private $mDisableTitleConversion;
173 * Automatically number headings?
175 private $mNumberHeadings;
178 * Thumb size preferred by the user.
180 private $mThumbSize;
183 * Maximum article size of an article to be marked as "stub"
185 private $mStubThreshold;
188 * Language object of the User language.
190 private $mUserLang;
193 * @var User
194 * Stored user object
196 private $mUser;
199 * Parsing the page for a "preview" operation?
201 private $mIsPreview = false;
204 * Parsing the page for a "preview" operation on a single section?
206 private $mIsSectionPreview = false;
209 * Parsing the printable version of the page?
211 private $mIsPrintable = false;
214 * Extra key that should be present in the caching key.
216 private $mExtraKey = '';
219 * Function to be called when an option is accessed.
221 private $onAccessCallback = null;
224 * If the page being parsed is a redirect, this should hold the redirect
225 * target.
226 * @var Title|null
228 private $redirectTarget = null;
230 public function getInterwikiMagic() {
231 return $this->mInterwikiMagic;
234 public function getAllowExternalImages() {
235 return $this->mAllowExternalImages;
238 public function getAllowExternalImagesFrom() {
239 return $this->mAllowExternalImagesFrom;
242 public function getEnableImageWhitelist() {
243 return $this->mEnableImageWhitelist;
246 public function getEditSection() {
247 return $this->mEditSection;
250 public function getNumberHeadings() {
251 $this->optionUsed( 'numberheadings' );
253 return $this->mNumberHeadings;
256 public function getAllowSpecialInclusion() {
257 return $this->mAllowSpecialInclusion;
260 public function getTidy() {
261 return $this->mTidy;
264 public function getInterfaceMessage() {
265 return $this->mInterfaceMessage;
268 public function getTargetLanguage() {
269 return $this->mTargetLanguage;
272 public function getMaxIncludeSize() {
273 return $this->mMaxIncludeSize;
276 public function getMaxPPNodeCount() {
277 return $this->mMaxPPNodeCount;
280 public function getMaxGeneratedPPNodeCount() {
281 return $this->mMaxGeneratedPPNodeCount;
284 public function getMaxPPExpandDepth() {
285 return $this->mMaxPPExpandDepth;
288 public function getMaxTemplateDepth() {
289 return $this->mMaxTemplateDepth;
292 /* @since 1.20 */
293 public function getExpensiveParserFunctionLimit() {
294 return $this->mExpensiveParserFunctionLimit;
297 public function getRemoveComments() {
298 return $this->mRemoveComments;
301 /* @since 1.24 */
302 public function getCurrentRevisionCallback() {
303 return $this->mCurrentRevisionCallback;
306 public function getTemplateCallback() {
307 return $this->mTemplateCallback;
310 /** @since 1.28 */
311 public function getSpeculativeRevIdCallback() {
312 return $this->mSpeculativeRevIdCallback;
315 public function getEnableLimitReport() {
316 return $this->mEnableLimitReport;
319 public function getCleanSignatures() {
320 return $this->mCleanSignatures;
323 public function getExternalLinkTarget() {
324 return $this->mExternalLinkTarget;
327 public function getDisableContentConversion() {
328 return $this->mDisableContentConversion;
331 public function getDisableTitleConversion() {
332 return $this->mDisableTitleConversion;
335 public function getThumbSize() {
336 $this->optionUsed( 'thumbsize' );
338 return $this->mThumbSize;
341 public function getStubThreshold() {
342 $this->optionUsed( 'stubthreshold' );
344 return $this->mStubThreshold;
347 public function getIsPreview() {
348 return $this->mIsPreview;
351 public function getIsSectionPreview() {
352 return $this->mIsSectionPreview;
355 public function getIsPrintable() {
356 $this->optionUsed( 'printable' );
358 return $this->mIsPrintable;
361 public function getUser() {
362 return $this->mUser;
365 public function getPreSaveTransform() {
366 return $this->mPreSaveTransform;
369 public function getDateFormat() {
370 $this->optionUsed( 'dateformat' );
371 if ( !isset( $this->mDateFormat ) ) {
372 $this->mDateFormat = $this->mUser->getDatePreference();
374 return $this->mDateFormat;
377 public function getTimestamp() {
378 if ( !isset( $this->mTimestamp ) ) {
379 $this->mTimestamp = wfTimestampNow();
381 return $this->mTimestamp;
385 * Get the user language used by the parser for this page and split the parser cache.
387 * @warning: Calling this causes the parser cache to be fragmented by user language!
388 * To avoid cache fragmentation, output should not depend on the user language.
389 * Use Parser::getFunctionLang() or Parser::getTargetLanguage() instead!
391 * @note This function will trigger a cache fragmentation by recording the
392 * 'userlang' option, see optionUsed(). This is done to avoid cache pollution
393 * when the page is rendered based on the language of the user.
395 * @note When saving, this will return the default language instead of the user's.
396 * {{int: }} uses this which used to produce inconsistent link tables (bug 14404).
398 * @return Language
399 * @since 1.19
401 public function getUserLangObj() {
402 $this->optionUsed( 'userlang' );
403 return $this->mUserLang;
407 * Same as getUserLangObj() but returns a string instead.
409 * @warning: Calling this causes the parser cache to be fragmented by user language!
410 * To avoid cache fragmentation, output should not depend on the user language.
411 * Use Parser::getFunctionLang() or Parser::getTargetLanguage() instead!
413 * @see getUserLangObj()
415 * @return string Language code
416 * @since 1.17
418 public function getUserLang() {
419 return $this->getUserLangObj()->getCode();
422 public function setInterwikiMagic( $x ) {
423 return wfSetVar( $this->mInterwikiMagic, $x );
426 public function setAllowExternalImages( $x ) {
427 return wfSetVar( $this->mAllowExternalImages, $x );
430 public function setAllowExternalImagesFrom( $x ) {
431 return wfSetVar( $this->mAllowExternalImagesFrom, $x );
434 public function setEnableImageWhitelist( $x ) {
435 return wfSetVar( $this->mEnableImageWhitelist, $x );
438 public function setDateFormat( $x ) {
439 return wfSetVar( $this->mDateFormat, $x );
442 public function setEditSection( $x ) {
443 return wfSetVar( $this->mEditSection, $x );
446 public function setNumberHeadings( $x ) {
447 return wfSetVar( $this->mNumberHeadings, $x );
450 public function setAllowSpecialInclusion( $x ) {
451 return wfSetVar( $this->mAllowSpecialInclusion, $x );
454 public function setTidy( $x ) {
455 return wfSetVar( $this->mTidy, $x );
458 public function setInterfaceMessage( $x ) {
459 return wfSetVar( $this->mInterfaceMessage, $x );
462 public function setTargetLanguage( $x ) {
463 return wfSetVar( $this->mTargetLanguage, $x, true );
466 public function setMaxIncludeSize( $x ) {
467 return wfSetVar( $this->mMaxIncludeSize, $x );
470 public function setMaxPPNodeCount( $x ) {
471 return wfSetVar( $this->mMaxPPNodeCount, $x );
474 public function setMaxGeneratedPPNodeCount( $x ) {
475 return wfSetVar( $this->mMaxGeneratedPPNodeCount, $x );
478 public function setMaxTemplateDepth( $x ) {
479 return wfSetVar( $this->mMaxTemplateDepth, $x );
482 /* @since 1.20 */
483 public function setExpensiveParserFunctionLimit( $x ) {
484 return wfSetVar( $this->mExpensiveParserFunctionLimit, $x );
487 public function setRemoveComments( $x ) {
488 return wfSetVar( $this->mRemoveComments, $x );
491 /* @since 1.24 */
492 public function setCurrentRevisionCallback( $x ) {
493 return wfSetVar( $this->mCurrentRevisionCallback, $x );
496 /** @since 1.28 */
497 public function setSpeculativeRevIdCallback( $x ) {
498 return wfSetVar( $this->mSpeculativeRevIdCallback, $x );
501 public function setTemplateCallback( $x ) {
502 return wfSetVar( $this->mTemplateCallback, $x );
505 public function enableLimitReport( $x = true ) {
506 return wfSetVar( $this->mEnableLimitReport, $x );
509 public function setTimestamp( $x ) {
510 return wfSetVar( $this->mTimestamp, $x );
513 public function setCleanSignatures( $x ) {
514 return wfSetVar( $this->mCleanSignatures, $x );
517 public function setExternalLinkTarget( $x ) {
518 return wfSetVar( $this->mExternalLinkTarget, $x );
521 public function disableContentConversion( $x = true ) {
522 return wfSetVar( $this->mDisableContentConversion, $x );
525 public function disableTitleConversion( $x = true ) {
526 return wfSetVar( $this->mDisableTitleConversion, $x );
529 public function setUserLang( $x ) {
530 if ( is_string( $x ) ) {
531 $x = Language::factory( $x );
534 return wfSetVar( $this->mUserLang, $x );
537 public function setThumbSize( $x ) {
538 return wfSetVar( $this->mThumbSize, $x );
541 public function setStubThreshold( $x ) {
542 return wfSetVar( $this->mStubThreshold, $x );
545 public function setPreSaveTransform( $x ) {
546 return wfSetVar( $this->mPreSaveTransform, $x );
549 public function setIsPreview( $x ) {
550 return wfSetVar( $this->mIsPreview, $x );
553 public function setIsSectionPreview( $x ) {
554 return wfSetVar( $this->mIsSectionPreview, $x );
557 public function setIsPrintable( $x ) {
558 return wfSetVar( $this->mIsPrintable, $x );
562 * Set the redirect target.
564 * Note that setting or changing this does not *make* the page a redirect
565 * or change its target, it merely records the information for reference
566 * during the parse.
568 * @since 1.24
569 * @param Title|null $title
571 function setRedirectTarget( $title ) {
572 $this->redirectTarget = $title;
576 * Get the previously-set redirect target.
578 * @since 1.24
579 * @return Title|null
581 function getRedirectTarget() {
582 return $this->redirectTarget;
586 * Extra key that should be present in the parser cache key.
587 * @param string $key
589 public function addExtraKey( $key ) {
590 $this->mExtraKey .= '!' . $key;
594 * Constructor
595 * @param User $user
596 * @param Language $lang
598 public function __construct( $user = null, $lang = null ) {
599 if ( $user === null ) {
600 global $wgUser;
601 if ( $wgUser === null ) {
602 $user = new User;
603 } else {
604 $user = $wgUser;
607 if ( $lang === null ) {
608 global $wgLang;
609 if ( !StubObject::isRealObject( $wgLang ) ) {
610 $wgLang->_unstub();
612 $lang = $wgLang;
614 $this->initialiseFromUser( $user, $lang );
618 * Get a ParserOptions object for an anonymous user
619 * @since 1.27
620 * @return ParserOptions
622 public static function newFromAnon() {
623 global $wgContLang;
624 return new ParserOptions( new User, $wgContLang );
628 * Get a ParserOptions object from a given user.
629 * Language will be taken from $wgLang.
631 * @param User $user
632 * @return ParserOptions
634 public static function newFromUser( $user ) {
635 return new ParserOptions( $user );
639 * Get a ParserOptions object from a given user and language
641 * @param User $user
642 * @param Language $lang
643 * @return ParserOptions
645 public static function newFromUserAndLang( User $user, Language $lang ) {
646 return new ParserOptions( $user, $lang );
650 * Get a ParserOptions object from a IContextSource object
652 * @param IContextSource $context
653 * @return ParserOptions
655 public static function newFromContext( IContextSource $context ) {
656 return new ParserOptions( $context->getUser(), $context->getLanguage() );
660 * Get user options
662 * @param User $user
663 * @param Language $lang
665 private function initialiseFromUser( $user, $lang ) {
666 global $wgInterwikiMagic, $wgAllowExternalImages,
667 $wgAllowExternalImagesFrom, $wgEnableImageWhitelist, $wgAllowSpecialInclusion,
668 $wgMaxArticleSize, $wgMaxPPNodeCount, $wgMaxTemplateDepth, $wgMaxPPExpandDepth,
669 $wgCleanSignatures, $wgExternalLinkTarget, $wgExpensiveParserFunctionLimit,
670 $wgMaxGeneratedPPNodeCount, $wgDisableLangConversion, $wgDisableTitleConversion;
672 // *UPDATE* ParserOptions::matches() if any of this changes as needed
673 $this->mInterwikiMagic = $wgInterwikiMagic;
674 $this->mAllowExternalImages = $wgAllowExternalImages;
675 $this->mAllowExternalImagesFrom = $wgAllowExternalImagesFrom;
676 $this->mEnableImageWhitelist = $wgEnableImageWhitelist;
677 $this->mAllowSpecialInclusion = $wgAllowSpecialInclusion;
678 $this->mMaxIncludeSize = $wgMaxArticleSize * 1024;
679 $this->mMaxPPNodeCount = $wgMaxPPNodeCount;
680 $this->mMaxGeneratedPPNodeCount = $wgMaxGeneratedPPNodeCount;
681 $this->mMaxPPExpandDepth = $wgMaxPPExpandDepth;
682 $this->mMaxTemplateDepth = $wgMaxTemplateDepth;
683 $this->mExpensiveParserFunctionLimit = $wgExpensiveParserFunctionLimit;
684 $this->mCleanSignatures = $wgCleanSignatures;
685 $this->mExternalLinkTarget = $wgExternalLinkTarget;
686 $this->mDisableContentConversion = $wgDisableLangConversion;
687 $this->mDisableTitleConversion = $wgDisableLangConversion || $wgDisableTitleConversion;
689 $this->mUser = $user;
690 $this->mNumberHeadings = $user->getOption( 'numberheadings' );
691 $this->mThumbSize = $user->getOption( 'thumbsize' );
692 $this->mStubThreshold = $user->getStubThreshold();
693 $this->mUserLang = $lang;
698 * Check if these options match that of another options set
700 * This ignores report limit settings that only affect HTML comments
702 * @param ParserOptions $other
703 * @return bool
704 * @since 1.25
706 public function matches( ParserOptions $other ) {
707 $fields = array_keys( get_class_vars( __CLASS__ ) );
708 $fields = array_diff( $fields, [
709 'mEnableLimitReport', // only effects HTML comments
710 'onAccessCallback', // only used for ParserOutput option tracking
711 ] );
712 foreach ( $fields as $field ) {
713 if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
714 return false;
717 // Check the object and lazy-loaded options
718 return (
719 $this->mUserLang->equals( $other->mUserLang ) &&
720 $this->getDateFormat() === $other->getDateFormat()
725 * Registers a callback for tracking which ParserOptions which are used.
726 * This is a private API with the parser.
727 * @param callable $callback
729 public function registerWatcher( $callback ) {
730 $this->onAccessCallback = $callback;
734 * Called when an option is accessed.
735 * Calls the watcher that was set using registerWatcher().
736 * Typically, the watcher callback is ParserOutput::registerOption().
737 * The information registered that way will be used by ParserCache::save().
739 * @param string $optionName Name of the option
741 public function optionUsed( $optionName ) {
742 if ( $this->onAccessCallback ) {
743 call_user_func( $this->onAccessCallback, $optionName );
748 * Returns the full array of options that would have been used by
749 * in 1.16.
750 * Used to get the old parser cache entries when available.
751 * @return array
753 public static function legacyOptions() {
754 return [
755 'stubthreshold',
756 'numberheadings',
757 'userlang',
758 'thumbsize',
759 'editsection',
760 'printable'
765 * Generate a hash string with the values set on these ParserOptions
766 * for the keys given in the array.
767 * This will be used as part of the hash key for the parser cache,
768 * so users sharing the options with vary for the same page share
769 * the same cached data safely.
771 * Extensions which require it should install 'PageRenderingHash' hook,
772 * which will give them a chance to modify this key based on their own
773 * settings.
775 * @since 1.17
776 * @param array $forOptions
777 * @param Title $title Used to get the content language of the page (since r97636)
778 * @return string Page rendering hash
780 public function optionsHash( $forOptions, $title = null ) {
781 global $wgRenderHashAppend;
783 // FIXME: Once the cache key is reorganized this argument
784 // can be dropped. It was used when the math extension was
785 // part of core.
786 $confstr = '*';
788 // Space assigned for the stubthreshold but unused
789 // since it disables the parser cache, its value will always
790 // be 0 when this function is called by parsercache.
791 if ( in_array( 'stubthreshold', $forOptions ) ) {
792 $confstr .= '!' . $this->mStubThreshold;
793 } else {
794 $confstr .= '!*';
797 if ( in_array( 'dateformat', $forOptions ) ) {
798 $confstr .= '!' . $this->getDateFormat();
801 if ( in_array( 'numberheadings', $forOptions ) ) {
802 $confstr .= '!' . ( $this->mNumberHeadings ? '1' : '' );
803 } else {
804 $confstr .= '!*';
807 if ( in_array( 'userlang', $forOptions ) ) {
808 $confstr .= '!' . $this->mUserLang->getCode();
809 } else {
810 $confstr .= '!*';
813 if ( in_array( 'thumbsize', $forOptions ) ) {
814 $confstr .= '!' . $this->mThumbSize;
815 } else {
816 $confstr .= '!*';
819 // add in language specific options, if any
820 // @todo FIXME: This is just a way of retrieving the url/user preferred variant
821 if ( !is_null( $title ) ) {
822 $confstr .= $title->getPageLanguage()->getExtraHashOptions();
823 } else {
824 global $wgContLang;
825 $confstr .= $wgContLang->getExtraHashOptions();
828 $confstr .= $wgRenderHashAppend;
830 // @note: as of Feb 2015, core never sets the editsection flag, since it uses
831 // <mw:editsection> tags to inject editsections on the fly. However, extensions
832 // may be using it by calling ParserOption::optionUsed resp. ParserOutput::registerOption
833 // directly. At least Wikibase does at this point in time.
834 if ( !in_array( 'editsection', $forOptions ) ) {
835 $confstr .= '!*';
836 } elseif ( !$this->mEditSection ) {
837 $confstr .= '!edit=0';
840 if ( $this->mIsPrintable && in_array( 'printable', $forOptions ) ) {
841 $confstr .= '!printable=1';
844 if ( $this->mExtraKey != '' ) {
845 $confstr .= $this->mExtraKey;
848 // Give a chance for extensions to modify the hash, if they have
849 // extra options or other effects on the parser cache.
850 Hooks::run( 'PageRenderingHash', [ &$confstr, $this->getUser(), &$forOptions ] );
852 // Make it a valid memcached key fragment
853 $confstr = str_replace( ' ', '_', $confstr );
855 return $confstr;
859 * Sets a hook to force that a page exists, and sets a current revision callback to return
860 * a revision with custom content when the current revision of the page is requested.
862 * @since 1.25
863 * @param Title $title
864 * @param Content $content
865 * @param User $user The user that the fake revision is attributed to
866 * @return ScopedCallback to unset the hook
868 public function setupFakeRevision( $title, $content, $user ) {
869 $oldCallback = $this->setCurrentRevisionCallback(
870 function (
871 $titleToCheck, $parser = false ) use ( $title, $content, $user, &$oldCallback
873 if ( $titleToCheck->equals( $title ) ) {
874 return new Revision( [
875 'page' => $title->getArticleID(),
876 'user_text' => $user->getName(),
877 'user' => $user->getId(),
878 'parent_id' => $title->getLatestRevID(),
879 'title' => $title,
880 'content' => $content
881 ] );
882 } else {
883 return call_user_func( $oldCallback, $titleToCheck, $parser );
888 global $wgHooks;
889 $wgHooks['TitleExists'][] =
890 function ( $titleToCheck, &$exists ) use ( $title ) {
891 if ( $titleToCheck->equals( $title ) ) {
892 $exists = true;
895 end( $wgHooks['TitleExists'] );
896 $key = key( $wgHooks['TitleExists'] );
897 LinkCache::singleton()->clearBadLink( $title->getPrefixedDBkey() );
898 return new ScopedCallback( function () use ( $title, $key ) {
899 global $wgHooks;
900 unset( $wgHooks['TitleExists'][$key] );
901 LinkCache::singleton()->clearLink( $title );
902 } );