1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
|
<?php
/**
* Options for the PHP parser
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup Parser
*/
namespace MediaWiki\Parser;
use InvalidArgumentException;
use LogicException;
use MediaWiki\Content\Content;
use MediaWiki\Context\IContextSource;
use MediaWiki\HookContainer\HookRunner;
use MediaWiki\Language\Language;
use MediaWiki\MainConfigNames;
use MediaWiki\MediaWikiServices;
use MediaWiki\Revision\MutableRevisionRecord;
use MediaWiki\Revision\SlotRecord;
use MediaWiki\StubObject\StubObject;
use MediaWiki\Title\Title;
use MediaWiki\User\UserIdentity;
use MediaWiki\User\UserIdentityValue;
use MediaWiki\Utils\MWTimestamp;
use ReflectionClass;
use Wikimedia\IPUtils;
use Wikimedia\ScopedCallback;
/**
* @brief Set options of the Parser
*
* How to add an option in core:
* 1. Add it to one of the arrays in ParserOptions::setDefaults()
* 2. If necessary, add an entry to ParserOptions::$inCacheKey
* 3. Add a getter and setter in the section for that.
*
* How to add an option in an extension:
* 1. Use the 'ParserOptionsRegister' hook to register it.
* 2. Where necessary, use $popt->getOption() and $popt->setOption()
* to access it.
*
* @ingroup Parser
*/
class ParserOptions {
/**
* Default values for all options that are relevant for caching.
* @see self::getDefaults()
* @var array|null
*/
private static $defaults = null;
/**
* Lazy-loaded options
* @var callable[]|null
*/
private static $lazyOptions = null;
/**
* Initial lazy-loaded options (before hook)
* @var callable[]
*/
private static $initialLazyOptions = [
'dateformat' => [ __CLASS__, 'initDateFormat' ],
'speculativeRevId' => [ __CLASS__, 'initSpeculativeRevId' ],
'speculativePageId' => [ __CLASS__, 'initSpeculativePageId' ],
];
/**
* Specify options that are included in the cache key
* @var array|null
*/
private static $cacheVaryingOptionsHash = null;
/**
* Initial inCacheKey options (before hook)
* @var array
*/
private static $initialCacheVaryingOptionsHash = [
'dateformat' => true,
'thumbsize' => true,
'printable' => true,
'userlang' => true,
'useParsoid' => true,
'suppressSectionEditLinks' => true,
'collapsibleSections' => true,
];
/**
* Specify pseudo-options that are actually callbacks.
* These must be ignored when checking for cacheability.
* @var array
*/
private static $callbacks = [
'currentRevisionRecordCallback' => true,
'templateCallback' => true,
'speculativeRevIdCallback' => true,
'speculativePageIdCallback' => true,
];
/**
* Current values for all options that are relevant for caching.
* @var array
*/
private $options;
/**
* Timestamp used for {{CURRENTDAY}} etc.
* @var string|null
* @note Caching based on parse time is handled externally
*/
private $mTimestamp;
/**
* Stored user object
* @var UserIdentity
* @todo Track this for caching somehow without fragmenting the cache
*/
private $mUser;
/**
* Function to be called when an option is accessed.
* @var callable|null
* @note Used for collecting used options, does not affect caching
*/
private $onAccessCallback = null;
/**
* If the page being parsed is a redirect, this should hold the redirect
* target.
* @var Title|null
* @todo Track this for caching somehow
*/
private $redirectTarget = null;
/**
* Appended to the options hash
* @var string
*/
private $mExtraKey = '';
/**
* The reason for rendering the content.
* @var string
*/
private $renderReason = 'unknown';
/**
* Fetch an option and track that is was accessed
* @since 1.30
* @param string $name Option name
* @return mixed
*/
public function getOption( $name ) {
if ( !array_key_exists( $name, $this->options ) ) {
throw new InvalidArgumentException( "Unknown parser option $name" );
}
$this->lazyLoadOption( $name );
$this->optionUsed( $name );
return $this->options[$name];
}
/**
* @param string $name Lazy load option without tracking usage
*/
private function lazyLoadOption( $name ) {
$lazyOptions = self::getLazyOptions();
if ( isset( $lazyOptions[$name] ) && $this->options[$name] === null ) {
$this->options[$name] = call_user_func( $lazyOptions[$name], $this, $name );
}
}
/**
* Resets lazy loaded options to null in the provided $options array
* @param array $options
* @return array
*/
private function nullifyLazyOption( array $options ): array {
return array_fill_keys( array_keys( self::getLazyOptions() ), null ) + $options;
}
/**
* Get lazy-loaded options.
*
* This array should be initialised by the constructor. The return type
* hint is used as an assertion to ensure this has happened and to coerce
* the type for static analysis.
*
* @internal Public for testing only
*
* @return array
*/
public static function getLazyOptions(): array {
// Trigger a call to the 'ParserOptionsRegister' hook if it hasn't
// already been called.
if ( self::$lazyOptions === null ) {
self::getDefaults();
}
return self::$lazyOptions;
}
/**
* Get cache varying options, with the name of the option in the key, and a
* boolean in the value which indicates whether the cache is indeed varied.
*
* @see self::allCacheVaryingOptions()
*
* @return array
*/
private static function getCacheVaryingOptionsHash(): array {
// Trigger a call to the 'ParserOptionsRegister' hook if it hasn't
// already been called.
if ( self::$cacheVaryingOptionsHash === null ) {
self::getDefaults();
}
return self::$cacheVaryingOptionsHash;
}
/**
* Set an option, generically
* @since 1.30
* @param string $name Option name
* @param mixed $value New value. Passing null will set null, unlike many
* of the existing accessors which ignore null for historical reasons.
* @return mixed Old value
*/
public function setOption( $name, $value ) {
if ( !array_key_exists( $name, $this->options ) ) {
throw new InvalidArgumentException( "Unknown parser option $name" );
}
$old = $this->options[$name];
$this->options[$name] = $value;
return $old;
}
/**
* Legacy implementation
* @since 1.30 For implementing legacy setters only. Don't use this in new code.
* @deprecated since 1.30
* @param string $name Option name
* @param mixed $value New value. Passing null does not set the value.
* @return mixed Old value
*/
protected function setOptionLegacy( $name, $value ) {
if ( !array_key_exists( $name, $this->options ) ) {
throw new InvalidArgumentException( "Unknown parser option $name" );
}
return wfSetVar( $this->options[$name], $value );
}
/**
* Whether to extract interlanguage links
*
* When true, interlanguage links will be returned by
* ParserOutput::getLanguageLinks() instead of generating link HTML.
*
* @return bool
*/
public function getInterwikiMagic() {
return $this->getOption( 'interwikiMagic' );
}
/**
* Specify whether to extract interlanguage links
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setInterwikiMagic( $x ) {
return $this->setOptionLegacy( 'interwikiMagic', $x );
}
/**
* Allow all external images inline?
* @return bool
*/
public function getAllowExternalImages() {
return $this->getOption( 'allowExternalImages' );
}
/**
* External images to allow
*
* When self::getAllowExternalImages() is false
*
* @return string|string[] URLs to allow
*/
public function getAllowExternalImagesFrom() {
return $this->getOption( 'allowExternalImagesFrom' );
}
/**
* Use the on-wiki external image whitelist?
* @return bool
*/
public function getEnableImageWhitelist() {
return $this->getOption( 'enableImageWhitelist' );
}
/**
* Allow inclusion of special pages?
* @return bool
*/
public function getAllowSpecialInclusion() {
return $this->getOption( 'allowSpecialInclusion' );
}
/**
* Allow inclusion of special pages?
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setAllowSpecialInclusion( $x ) {
return $this->setOptionLegacy( 'allowSpecialInclusion', $x );
}
/**
* Parsing an interface message?
* @return bool
*/
public function getInterfaceMessage() {
return $this->getOption( 'interfaceMessage' );
}
/**
* Parsing an interface message?
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setInterfaceMessage( $x ) {
return $this->setOptionLegacy( 'interfaceMessage', $x );
}
/**
* Target language for the parse
* @return Language|null
*/
public function getTargetLanguage() {
return $this->getOption( 'targetLanguage' );
}
/**
* Target language for the parse
* @param Language|null $x New value
* @return Language|null Old value
*/
public function setTargetLanguage( $x ) {
return $this->setOption( 'targetLanguage', $x );
}
/**
* Maximum size of template expansions, in bytes
* @return int
*/
public function getMaxIncludeSize() {
return $this->getOption( 'maxIncludeSize' );
}
/**
* Maximum size of template expansions, in bytes
* @param int|null $x New value (null is no change)
* @return int Old value
*/
public function setMaxIncludeSize( $x ) {
return $this->setOptionLegacy( 'maxIncludeSize', $x );
}
/**
* Maximum number of nodes touched by PPFrame::expand()
* @return int
*/
public function getMaxPPNodeCount() {
return $this->getOption( 'maxPPNodeCount' );
}
/**
* Maximum number of nodes touched by PPFrame::expand()
* @param int|null $x New value (null is no change)
* @return int Old value
*/
public function setMaxPPNodeCount( $x ) {
return $this->setOptionLegacy( 'maxPPNodeCount', $x );
}
/**
* Maximum recursion depth in PPFrame::expand()
* @return int
*/
public function getMaxPPExpandDepth() {
return $this->getOption( 'maxPPExpandDepth' );
}
/**
* Maximum recursion depth for templates within templates
* @return int
* @internal Only used by Parser (T318826)
*/
public function getMaxTemplateDepth() {
return $this->getOption( 'maxTemplateDepth' );
}
/**
* Maximum recursion depth for templates within templates
* @param int|null $x New value (null is no change)
* @return int Old value
* @internal Only used by ParserTestRunner (T318826)
*/
public function setMaxTemplateDepth( $x ) {
return $this->setOptionLegacy( 'maxTemplateDepth', $x );
}
/**
* Maximum number of calls per parse to expensive parser functions
* @since 1.20
* @return int
*/
public function getExpensiveParserFunctionLimit() {
return $this->getOption( 'expensiveParserFunctionLimit' );
}
/**
* Maximum number of calls per parse to expensive parser functions
* @since 1.20
* @param int|null $x New value (null is no change)
* @return int Old value
*/
public function setExpensiveParserFunctionLimit( $x ) {
return $this->setOptionLegacy( 'expensiveParserFunctionLimit', $x );
}
/**
* Remove HTML comments
* @warning Only applies to preprocess operations
* @return bool
*/
public function getRemoveComments() {
return $this->getOption( 'removeComments' );
}
/**
* Remove HTML comments
* @warning Only applies to preprocess operations
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setRemoveComments( $x ) {
return $this->setOptionLegacy( 'removeComments', $x );
}
/**
* @deprecated since 1.38. This does nothing now, to control limit reporting
* please provide 'includeDebugInfo' option to ParserOutput::getText.
*
* Enable limit report in an HTML comment on output
* @return bool
*/
public function getEnableLimitReport() {
return false;
}
/**
* @deprecated since 1.38. This does nothing now, to control limit reporting
* please provide 'includeDebugInfo' option to ParserOutput::getText.
*
* Enable limit report in an HTML comment on output
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function enableLimitReport( $x = true ) {
return false;
}
/**
* Clean up signature texts?
* @see Parser::cleanSig
* @return bool
*/
public function getCleanSignatures() {
return $this->getOption( 'cleanSignatures' );
}
/**
* Clean up signature texts?
* @see Parser::cleanSig
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setCleanSignatures( $x ) {
return $this->setOptionLegacy( 'cleanSignatures', $x );
}
/**
* Target attribute for external links
* @return string|false
* @internal Only set by installer (T317647)
*/
public function getExternalLinkTarget() {
return $this->getOption( 'externalLinkTarget' );
}
/**
* Target attribute for external links
* @param string|false|null $x New value (null is no change)
* @return string Old value
* @internal Only used by installer (T317647)
*/
public function setExternalLinkTarget( $x ) {
return $this->setOptionLegacy( 'externalLinkTarget', $x );
}
/**
* Whether content conversion should be disabled
* @return bool
*/
public function getDisableContentConversion() {
return $this->getOption( 'disableContentConversion' );
}
/**
* Whether content conversion should be disabled
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function disableContentConversion( $x = true ) {
return $this->setOptionLegacy( 'disableContentConversion', $x );
}
/**
* Whether title conversion should be disabled
* @return bool
*/
public function getDisableTitleConversion() {
return $this->getOption( 'disableTitleConversion' );
}
/**
* Whether title conversion should be disabled
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function disableTitleConversion( $x = true ) {
return $this->setOptionLegacy( 'disableTitleConversion', $x );
}
/**
* Thumb size preferred by the user.
* @return int
*/
public function getThumbSize() {
return $this->getOption( 'thumbsize' );
}
/**
* Thumb size preferred by the user.
* @param int|null $x New value (null is no change)
* @return int Old value
*/
public function setThumbSize( $x ) {
return $this->setOptionLegacy( 'thumbsize', $x );
}
/**
* Parsing the page for a "preview" operation?
* @return bool
*/
public function getIsPreview() {
return $this->getOption( 'isPreview' );
}
/**
* Parsing the page for a "preview" operation?
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setIsPreview( $x ) {
return $this->setOptionLegacy( 'isPreview', $x );
}
/**
* Parsing the page for a "preview" operation on a single section?
* @return bool
*/
public function getIsSectionPreview() {
return $this->getOption( 'isSectionPreview' );
}
/**
* Parsing the page for a "preview" operation on a single section?
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setIsSectionPreview( $x ) {
return $this->setOptionLegacy( 'isSectionPreview', $x );
}
/**
* Parsing the printable version of the page?
* @return bool
*/
public function getIsPrintable() {
return $this->getOption( 'printable' );
}
/**
* Parsing the printable version of the page?
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setIsPrintable( $x ) {
return $this->setOptionLegacy( 'printable', $x );
}
/**
* Transform wiki markup when saving the page?
* @return bool
*/
public function getPreSaveTransform() {
return $this->getOption( 'preSaveTransform' );
}
/**
* Transform wiki markup when saving the page?
* @param bool|null $x New value (null is no change)
* @return bool Old value
*/
public function setPreSaveTransform( $x ) {
return $this->setOptionLegacy( 'preSaveTransform', $x );
}
/**
* Parsoid-format HTML output, or legacy wikitext parser HTML?
* @see T300191
* @unstable
* @since 1.41
* @return bool
*/
public function getUseParsoid(): bool {
return $this->getOption( 'useParsoid' );
}
/**
* Request Parsoid-format HTML output.
* @see T300191
* @unstable
* @since 1.41
*/
public function setUseParsoid() {
$this->setOption( 'useParsoid', true );
}
/**
* Date format index
* @return string
*/
public function getDateFormat() {
return $this->getOption( 'dateformat' );
}
/**
* Lazy initializer for dateFormat
* @param ParserOptions $popt
* @return string
*/
private static function initDateFormat( ParserOptions $popt ) {
$userFactory = MediaWikiServices::getInstance()->getUserFactory();
return $userFactory->newFromUserIdentity( $popt->getUserIdentity() )->getDatePreference();
}
/**
* Date format index
* @param string|null $x New value (null is no change)
* @return string Old value
*/
public function setDateFormat( $x ) {
return $this->setOptionLegacy( 'dateformat', $x );
}
/**
* Get the user language used by the parser for this page and split the parser cache.
*
* @warning Calling this causes the parser cache to be fragmented by user language!
* To avoid cache fragmentation, output should not depend on the user language.
* Use Parser::getTargetLanguage() instead!
*
* @note This function will trigger a cache fragmentation by recording the
* 'userlang' option, see optionUsed(). This is done to avoid cache pollution
* when the page is rendered based on the language of the user.
*
* @note When saving, this will return the default language instead of the user's.
* {{int: }} uses this which used to produce inconsistent link tables (T16404).
*
* @return Language
* @since 1.19
*/
public function getUserLangObj() {
return $this->getOption( 'userlang' );
}
/**
* Same as getUserLangObj() but returns a string instead.
*
* @warning Calling this causes the parser cache to be fragmented by user language!
* To avoid cache fragmentation, output should not depend on the user language.
* Use Parser::getTargetLanguage() instead!
*
* @see getUserLangObj()
*
* @return string Language code
* @since 1.17
*/
public function getUserLang() {
return $this->getUserLangObj()->getCode();
}
/**
* Set the user language used by the parser for this page and split the parser cache.
* @param string|Language $x New value
* @return Language Old value
*/
public function setUserLang( $x ) {
if ( is_string( $x ) ) {
$x = MediaWikiServices::getInstance()->getLanguageFactory()->getLanguage( $x );
}
return $this->setOptionLegacy( 'userlang', $x );
}
/**
* Are magic ISBN links enabled?
* @since 1.28
* @return bool
*/
public function getMagicISBNLinks() {
return $this->getOption( 'magicISBNLinks' );
}
/**
* Are magic PMID links enabled?
* @since 1.28
* @return bool
*/
public function getMagicPMIDLinks() {
return $this->getOption( 'magicPMIDLinks' );
}
/**
* Are magic RFC links enabled?
* @since 1.28
* @return bool
*/
public function getMagicRFCLinks() {
return $this->getOption( 'magicRFCLinks' );
}
/**
* Should the table of contents be suppressed?
* Used when parsing "code" pages (like JavaScript) as wikitext
* for backlink support and categories, but where we don't want
* other metadata generated (like the table of contents).
* @see T307691
* @since 1.39
* @return bool
*/
public function getSuppressTOC() {
return $this->getOption( 'suppressTOC' );
}
/**
* Suppress generation of the table of contents.
* Used when parsing "code" pages (like JavaScript) as wikitext
* for backlink support and categories, but where we don't want
* other metadata generated (like the table of contents).
* @see T307691
* @since 1.39
* @deprecated since 1.42; just clear the metadata in the final
* parser output
*/
public function setSuppressTOC() {
wfDeprecated( __METHOD__, '1.42' );
$this->setOption( 'suppressTOC', true );
}
/**
* Should section edit links be suppressed?
* Used when parsing wikitext which will be presented in a
* non-interactive context: previews, UX text, etc.
* @since 1.42
* @return bool
*/
public function getSuppressSectionEditLinks() {
return $this->getOption( 'suppressSectionEditLinks' );
}
/**
* Suppress section edit links in the output.
* Used when parsing wikitext which will be presented in a
* non-interactive context: previews, UX text, etc.
* @since 1.42
*/
public function setSuppressSectionEditLinks() {
$this->setOption( 'suppressSectionEditLinks', true );
}
/**
* Should section contents be wrapped in <div> to make them
* collapsible?
* @since 1.42
*/
public function getCollapsibleSections(): bool {
return $this->getOption( 'collapsibleSections' );
}
/**
* Wrap section contents in a <div> to allow client-side code
* to collapse them.
* @since 1.42
*/
public function setCollapsibleSections(): void {
$this->setOption( 'collapsibleSections', true );
}
/**
* If the wiki is configured to allow raw html ($wgRawHtml = true)
* is it allowed in the specific case of parsing this page.
*
* This is meant to disable unsafe parser tags in cases where
* a malicious user may control the input to the parser.
*
* @note This is expected to be true for normal pages even if the
* wiki has $wgRawHtml disabled in general. The setting only
* signifies that raw html would be unsafe in the current context
* provided that raw html is allowed at all.
* @since 1.29
* @return bool
*/
public function getAllowUnsafeRawHtml() {
return $this->getOption( 'allowUnsafeRawHtml' );
}
/**
* If the wiki is configured to allow raw html ($wgRawHtml = true)
* is it allowed in the specific case of parsing this page.
* @see self::getAllowUnsafeRawHtml()
* @since 1.29
* @param bool|null $x Value to set or null to get current value
* @return bool Current value for allowUnsafeRawHtml
*/
public function setAllowUnsafeRawHtml( $x ) {
return $this->setOptionLegacy( 'allowUnsafeRawHtml', $x );
}
/**
* Class to use to wrap output from Parser::parse()
* @since 1.30
* @return string|false
*/
public function getWrapOutputClass() {
return $this->getOption( 'wrapclass' );
}
/**
* CSS class to use to wrap output from Parser::parse()
* @since 1.30
* @param string $className Class name to use for wrapping.
* Passing false to indicate "no wrapping" was deprecated in MediaWiki 1.31.
* @return string|false Current value
*/
public function setWrapOutputClass( $className ) {
if ( $className === true ) { // DWIM, they probably want the default class name
$className = 'mw-parser-output';
}
if ( $className === false ) {
wfDeprecated( __METHOD__ . '( false )', '1.31' );
}
return $this->setOption( 'wrapclass', $className );
}
/**
* Callback for current revision fetching; first argument to call_user_func().
* @internal
* @since 1.35
* @return callable
*/
public function getCurrentRevisionRecordCallback() {
return $this->getOption( 'currentRevisionRecordCallback' );
}
/**
* Callback for current revision fetching; first argument to call_user_func().
* @internal
* @since 1.35
* @param callable|null $x New value
* @return callable Old value
*/
public function setCurrentRevisionRecordCallback( $x ) {
return $this->setOption( 'currentRevisionRecordCallback', $x );
}
/**
* Callback for template fetching; first argument to call_user_func().
* @return callable
*/
public function getTemplateCallback() {
return $this->getOption( 'templateCallback' );
}
/**
* Callback for template fetching; first argument to call_user_func().
* @param callable|null $x New value (null is no change)
* @return callable Old value
*/
public function setTemplateCallback( $x ) {
return $this->setOptionLegacy( 'templateCallback', $x );
}
/**
* A guess for {{REVISIONID}}, calculated using the callback provided via
* setSpeculativeRevIdCallback(). For consistency, the value will be calculated upon the
* first call of this method, and re-used for subsequent calls.
*
* If no callback was defined via setSpeculativeRevIdCallback(), this method will return false.
*
* @since 1.32
* @return int|false
*/
public function getSpeculativeRevId() {
return $this->getOption( 'speculativeRevId' );
}
/**
* A guess for {{PAGEID}}, calculated using the callback provided via
* setSpeculativeRevPageCallback(). For consistency, the value will be calculated upon the
* first call of this method, and re-used for subsequent calls.
*
* If no callback was defined via setSpeculativePageIdCallback(), this method will return false.
*
* @since 1.34
* @return int|false
*/
public function getSpeculativePageId() {
return $this->getOption( 'speculativePageId' );
}
/**
* Callback registered with ParserOptions::$lazyOptions, triggered by getSpeculativeRevId().
*
* @param ParserOptions $popt
* @return int|false
*/
private static function initSpeculativeRevId( ParserOptions $popt ) {
$cb = $popt->getOption( 'speculativeRevIdCallback' );
$id = $cb ? $cb() : null;
// returning null would result in this being re-called every access
return $id ?? false;
}
/**
* Callback registered with ParserOptions::$lazyOptions, triggered by getSpeculativePageId().
*
* @param ParserOptions $popt
* @return int|false
*/
private static function initSpeculativePageId( ParserOptions $popt ) {
$cb = $popt->getOption( 'speculativePageIdCallback' );
$id = $cb ? $cb() : null;
// returning null would result in this being re-called every access
return $id ?? false;
}
/**
* Callback to generate a guess for {{REVISIONID}}
* @param callable|null $x New value
* @return callable|null Old value
* @since 1.28
*/
public function setSpeculativeRevIdCallback( $x ) {
$this->setOption( 'speculativeRevId', null ); // reset
return $this->setOption( 'speculativeRevIdCallback', $x );
}
/**
* Callback to generate a guess for {{PAGEID}}
* @param callable|null $x New value
* @return callable|null Old value
* @since 1.34
*/
public function setSpeculativePageIdCallback( $x ) {
$this->setOption( 'speculativePageId', null ); // reset
return $this->setOption( 'speculativePageIdCallback', $x );
}
/**
* Timestamp used for {{CURRENTDAY}} etc.
* @return string TS_MW timestamp
*/
public function getTimestamp() {
if ( !isset( $this->mTimestamp ) ) {
$this->mTimestamp = wfTimestampNow();
}
return $this->mTimestamp;
}
/**
* Timestamp used for {{CURRENTDAY}} etc.
* @param string|null $x New value (null is no change)
* @return string Old value
*/
public function setTimestamp( $x ) {
return wfSetVar( $this->mTimestamp, $x );
}
/**
* Note that setting or changing this does not *make* the page a redirect
* or change its target, it merely records the information for reference
* during the parse.
*
* @since 1.24
* @param Title|null $title
*/
public function setRedirectTarget( $title ) {
$this->redirectTarget = $title;
}
/**
* Get the previously-set redirect target.
*
* @since 1.24
* @return Title|null
*/
public function getRedirectTarget() {
return $this->redirectTarget;
}
/**
* Extra key that should be present in the parser cache key.
* @warning Consider registering your additional options with the
* ParserOptionsRegister hook instead of using this method.
* @param string $key
*/
public function addExtraKey( $key ) {
$this->mExtraKey .= '!' . $key;
}
/**
* Get the identity of the user for whom the parse is made.
* @since 1.36
* @return UserIdentity
*/
public function getUserIdentity(): UserIdentity {
return $this->mUser;
}
/**
* @param UserIdentity $user
* @param Language|null $lang
*/
public function __construct( UserIdentity $user, $lang = null ) {
if ( $lang === null ) {
global $wgLang;
StubObject::unstub( $wgLang );
$lang = $wgLang;
}
$this->initialiseFromUser( $user, $lang );
}
/**
* Get a ParserOptions object for an anonymous user
* @since 1.27
* @return ParserOptions
*/
public static function newFromAnon() {
return new ParserOptions( MediaWikiServices::getInstance()->getUserFactory()->newAnonymous(),
MediaWikiServices::getInstance()->getContentLanguage() );
}
/**
* Get a ParserOptions object from a given user.
* Language will be taken from $wgLang.
*
* @param UserIdentity $user
* @return ParserOptions
*/
public static function newFromUser( $user ) {
return new ParserOptions( $user );
}
/**
* Get a ParserOptions object from a given user and language
*
* @param UserIdentity $user
* @param Language $lang
* @return ParserOptions
*/
public static function newFromUserAndLang( UserIdentity $user, Language $lang ) {
return new ParserOptions( $user, $lang );
}
/**
* Get a ParserOptions object from a IContextSource object
*
* @param IContextSource $context
* @return ParserOptions
*/
public static function newFromContext( IContextSource $context ) {
$contextUser = $context->getUser();
// Use the stashed temporary account name instead of an IP address as the user for the ParserOptions
// (if a stashed name is set). This is so that magic words like {{REVISIONUSER}} show the temporary account
// name instead of IP address.
$tempUserCreator = MediaWikiServices::getInstance()->getTempUserCreator();
if ( $tempUserCreator->isEnabled() && IPUtils::isIPAddress( $contextUser->getName() ) ) {
// We do not attempt to acquire a temporary account name if no name is stashed, as this may be called in
// contexts (such as the parse API) where the user will not be performing an edit on their next action
// and therefore would be increasing the rate limit unnecessarily.
$tempName = $tempUserCreator->getStashedName( $context->getRequest()->getSession() );
if ( $tempName !== null ) {
$contextUser = UserIdentityValue::newAnonymous( $tempName );
}
}
return new ParserOptions( $contextUser, $context->getLanguage() );
}
/**
* Creates a "canonical" ParserOptions object
*
* For historical reasons, certain options have default values that are
* different from the canonical values used for caching.
*
* @since 1.30
* @since 1.32 Added string and IContextSource as options for the first parameter
* @since 1.36 UserIdentity is also allowed
* @deprecated since 1.38. Use ::newFromContext, ::newFromAnon or ::newFromUserAndLang instead.
* Canonical ParserOptions are now exactly the same as non-canonical.
* @param IContextSource|string|UserIdentity $context
* - If an IContextSource, the options are initialized based on the source's UserIdentity and Language.
* - If the string 'canonical', the options are initialized with an anonymous user and
* the content language.
* - If a UserIdentity, the options are initialized for that UserIdentity
* 'userlang' is taken from the $userLang parameter, defaulting to $wgLang if that is null.
* @param Language|StubObject|null $userLang (see above)
* @return ParserOptions
*/
public static function newCanonical( $context, $userLang = null ) {
if ( $context instanceof IContextSource ) {
$ret = self::newFromContext( $context );
} elseif ( $context === 'canonical' ) {
$ret = self::newFromAnon();
} elseif ( $context instanceof UserIdentity ) {
$ret = new self( $context, $userLang );
} else {
throw new InvalidArgumentException(
'$context must be an IContextSource, the string "canonical", or a UserIdentity'
);
}
return $ret;
}
/**
* Reset static caches
* @internal For testing
*/
public static function clearStaticCache() {
if ( !defined( 'MW_PHPUNIT_TEST' ) && !defined( 'MW_PARSER_TEST' ) ) {
throw new LogicException( __METHOD__ . ' is just for testing' );
}
self::$defaults = null;
self::$lazyOptions = null;
self::$cacheVaryingOptionsHash = null;
}
/**
* Get default option values
* @warning If you change the default for an existing option, all existing
* parser cache entries will be invalid. To avoid bugs, you'll need to handle
* that somehow (e.g. with the RejectParserCacheValue hook) because
* MediaWiki won't do it for you.
* @return array
*/
private static function getDefaults() {
$services = MediaWikiServices::getInstance();
$mainConfig = $services->getMainConfig();
$interwikiMagic = $mainConfig->get( MainConfigNames::InterwikiMagic );
$allowExternalImages = $mainConfig->get( MainConfigNames::AllowExternalImages );
$allowExternalImagesFrom = $mainConfig->get( MainConfigNames::AllowExternalImagesFrom );
$enableImageWhitelist = $mainConfig->get( MainConfigNames::EnableImageWhitelist );
$allowSpecialInclusion = $mainConfig->get( MainConfigNames::AllowSpecialInclusion );
$maxArticleSize = $mainConfig->get( MainConfigNames::MaxArticleSize );
$maxPPNodeCount = $mainConfig->get( MainConfigNames::MaxPPNodeCount );
$maxTemplateDepth = $mainConfig->get( MainConfigNames::MaxTemplateDepth );
$maxPPExpandDepth = $mainConfig->get( MainConfigNames::MaxPPExpandDepth );
$cleanSignatures = $mainConfig->get( MainConfigNames::CleanSignatures );
$externalLinkTarget = $mainConfig->get( MainConfigNames::ExternalLinkTarget );
$expensiveParserFunctionLimit = $mainConfig->get( MainConfigNames::ExpensiveParserFunctionLimit );
$enableMagicLinks = $mainConfig->get( MainConfigNames::EnableMagicLinks );
$languageConverterFactory = $services->getLanguageConverterFactory();
$userOptionsLookup = $services->getUserOptionsLookup();
$contentLanguage = $services->getContentLanguage();
if ( self::$defaults === null ) {
// *UPDATE* ParserOptions::matches() if any of this changes as needed
self::$defaults = [
'dateformat' => null,
'interfaceMessage' => false,
'targetLanguage' => null,
'removeComments' => true,
'suppressTOC' => false,
'suppressSectionEditLinks' => false,
'collapsibleSections' => false,
'enableLimitReport' => false,
'preSaveTransform' => true,
'isPreview' => false,
'isSectionPreview' => false,
'printable' => false,
'allowUnsafeRawHtml' => true,
'wrapclass' => 'mw-parser-output',
'currentRevisionRecordCallback' => [ Parser::class, 'statelessFetchRevisionRecord' ],
'templateCallback' => [ Parser::class, 'statelessFetchTemplate' ],
'speculativeRevIdCallback' => null,
'speculativeRevId' => null,
'speculativePageIdCallback' => null,
'speculativePageId' => null,
'useParsoid' => false,
];
self::$cacheVaryingOptionsHash = self::$initialCacheVaryingOptionsHash;
self::$lazyOptions = self::$initialLazyOptions;
( new HookRunner( $services->getHookContainer() ) )->onParserOptionsRegister(
self::$defaults,
self::$cacheVaryingOptionsHash,
self::$lazyOptions
);
ksort( self::$cacheVaryingOptionsHash );
}
// Unit tests depend on being able to modify the globals at will
return self::$defaults + [
'interwikiMagic' => $interwikiMagic,
'allowExternalImages' => $allowExternalImages,
'allowExternalImagesFrom' => $allowExternalImagesFrom,
'enableImageWhitelist' => $enableImageWhitelist,
'allowSpecialInclusion' => $allowSpecialInclusion,
'maxIncludeSize' => $maxArticleSize * 1024,
'maxPPNodeCount' => $maxPPNodeCount,
'maxPPExpandDepth' => $maxPPExpandDepth,
'maxTemplateDepth' => $maxTemplateDepth,
'expensiveParserFunctionLimit' => $expensiveParserFunctionLimit,
'externalLinkTarget' => $externalLinkTarget,
'cleanSignatures' => $cleanSignatures,
'disableContentConversion' => $languageConverterFactory->isConversionDisabled(),
'disableTitleConversion' => $languageConverterFactory->isLinkConversionDisabled(),
// FIXME: The fallback to false for enableMagicLinks is a band-aid to allow
// the phpunit entrypoint patch (I82045c207738d152d5b0006f353637cfaa40bb66)
// to be merged.
// It is possible that a test somewhere is globally resetting $wgEnableMagicLinks
// to null, or that ParserOptions is somehow similarly getting reset in such a way
// that $enableMagicLinks ends up as null rather than an array. This workaround
// seems harmless, but would be nice to eventually fix the underlying issue.
'magicISBNLinks' => $enableMagicLinks['ISBN'] ?? false,
'magicPMIDLinks' => $enableMagicLinks['PMID'] ?? false,
'magicRFCLinks' => $enableMagicLinks['RFC'] ?? false,
'thumbsize' => $userOptionsLookup->getDefaultOption( 'thumbsize' ),
'userlang' => $contentLanguage,
];
}
/**
* Get user options
*
* @param UserIdentity $user
* @param Language $lang
*/
private function initialiseFromUser( UserIdentity $user, Language $lang ) {
// Initially lazy loaded option defaults must not be taken into account,
// otherwise lazy loading does not work. Setting a default for lazy option
// is useful for matching with canonical options.
$this->options = $this->nullifyLazyOption( self::getDefaults() );
$this->mUser = $user;
$services = MediaWikiServices::getInstance();
$optionsLookup = $services->getUserOptionsLookup();
$this->options['thumbsize'] = $optionsLookup->getOption( $user, 'thumbsize' );
$this->options['userlang'] = $lang;
}
/**
* Check if these options match that of another options set
*
* This ignores report limit settings that only affect HTML comments
*
* @param ParserOptions $other
* @return bool
* @since 1.25
*/
public function matches( ParserOptions $other ) {
// Compare most options
$options = array_keys( $this->options );
$options = array_diff( $options, [
'enableLimitReport', // only affects HTML comments
'tidy', // Has no effect since 1.35; removed in 1.36
] );
foreach ( $options as $option ) {
// Resolve any lazy options
$this->lazyLoadOption( $option );
$other->lazyLoadOption( $option );
$o1 = $this->optionToString( $this->options[$option] );
$o2 = $this->optionToString( $other->options[$option] );
if ( $o1 !== $o2 ) {
return false;
}
}
// Compare most other fields
foreach ( ( new ReflectionClass( $this ) )->getProperties() as $property ) {
$field = $property->getName();
if ( $property->isStatic() ) {
continue;
}
if ( in_array( $field, [
'options', // Already checked above
'onAccessCallback', // only used for ParserOutput option tracking
] ) ) {
continue;
}
if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
return false;
}
}
return true;
}
/**
* @param ParserOptions $other
* @return bool Whether the cache key relevant options match those of $other
* @since 1.33
*/
public function matchesForCacheKey( ParserOptions $other ) {
foreach ( self::allCacheVaryingOptions() as $option ) {
// Populate any lazy options
$this->lazyLoadOption( $option );
$other->lazyLoadOption( $option );
$o1 = $this->optionToString( $this->options[$option] );
$o2 = $this->optionToString( $other->options[$option] );
if ( $o1 !== $o2 ) {
return false;
}
}
return true;
}
/**
* Registers a callback for tracking which ParserOptions which are used.
*
* @since 1.16
* @param callable|null $callback
*/
public function registerWatcher( $callback ) {
$this->onAccessCallback = $callback;
}
/**
* Record that an option was internally accessed.
*
* This calls the watcher set by ParserOptions::registerWatcher().
* Typically, the watcher callback is ParserOutput::recordOption().
* The information registered this way is consumed by ParserCache::save().
*
* @param string $optionName Name of the option
*/
private function optionUsed( $optionName ) {
if ( $this->onAccessCallback ) {
call_user_func( $this->onAccessCallback, $optionName );
}
}
/**
* Return all option keys that vary the options hash
* @since 1.30
* @return string[]
*/
public static function allCacheVaryingOptions() {
return array_keys( array_filter( self::getCacheVaryingOptionsHash() ) );
}
/**
* Convert an option to a string value
* @param mixed $value
* @return string
*/
private function optionToString( $value ) {
if ( $value === true ) {
return '1';
} elseif ( $value === false ) {
return '0';
} elseif ( $value === null ) {
return '';
} elseif ( $value instanceof Language ) {
return $value->getCode();
} elseif ( is_array( $value ) ) {
return '[' . implode( ',', array_map( [ $this, 'optionToString' ], $value ) ) . ']';
} else {
return (string)$value;
}
}
/**
* Generate a hash string with the values set on these ParserOptions
* for the keys given in the array.
* This will be used as part of the hash key for the parser cache,
* so users sharing the options with vary for the same page share
* the same cached data safely.
*
* @since 1.17
* @param string[] $forOptions
* @param Title|null $title Used to get the content language of the page (since r97636)
* @return string Page rendering hash
*/
public function optionsHash( $forOptions, $title = null ) {
$renderHashAppend = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::RenderHashAppend );
$inCacheKey = self::allCacheVaryingOptions();
// Resolve any lazy options
$lazyOpts = array_intersect( $forOptions,
$inCacheKey, array_keys( self::getLazyOptions() ) );
foreach ( $lazyOpts as $k ) {
$this->lazyLoadOption( $k );
}
$options = $this->options;
$defaults = self::getDefaults();
// We only include used options with non-canonical values in the key
// so adding a new option doesn't invalidate the entire parser cache.
// The drawback to this is that changing the default value of an option
// requires manual invalidation of existing cache entries, as mentioned
// in the docs on the relevant methods and hooks.
$values = [];
foreach ( array_intersect( $inCacheKey, $forOptions ) as $option ) {
$v = $this->optionToString( $options[$option] );
$d = $this->optionToString( $defaults[$option] );
if ( $v !== $d ) {
$values[] = "$option=$v";
}
}
$confstr = $values ? implode( '!', $values ) : 'canonical';
// add in language specific options, if any
// @todo FIXME: This is just a way of retrieving the url/user preferred variant
$services = MediaWikiServices::getInstance();
$lang = $title ? $title->getPageLanguage() : $services->getContentLanguage();
$converter = $services->getLanguageConverterFactory()->getLanguageConverter( $lang );
$confstr .= $converter->getExtraHashOptions();
$confstr .= $renderHashAppend;
if ( $this->mExtraKey != '' ) {
$confstr .= $this->mExtraKey;
}
$user = $services->getUserFactory()->newFromUserIdentity( $this->getUserIdentity() );
// Give a chance for extensions to modify the hash, if they have
// extra options or other effects on the parser cache.
( new HookRunner( $services->getHookContainer() ) )->onPageRenderingHash(
$confstr,
$user,
$forOptions
);
// Make it a valid memcached key fragment
$confstr = str_replace( ' ', '_', $confstr );
return $confstr;
}
/**
* Test whether these options are safe to cache
* @param string[]|null $usedOptions the list of options actually used in the parse. Defaults to all options.
* @return bool
* @since 1.30
*/
public function isSafeToCache( ?array $usedOptions = null ) {
$defaults = self::getDefaults();
$inCacheKey = self::getCacheVaryingOptionsHash();
$usedOptions ??= array_keys( $this->options );
foreach ( $usedOptions as $option ) {
if ( empty( $inCacheKey[$option] ) && empty( self::$callbacks[$option] ) ) {
$v = $this->optionToString( $this->options[$option] ?? null );
$d = $this->optionToString( $defaults[$option] ?? null );
if ( $v !== $d ) {
return false;
}
}
}
return true;
}
/**
* Sets a hook to force that a page exists, and sets a current revision callback to return
* a revision with custom content when the current revision of the page is requested.
*
* @since 1.25
* @param Title $title
* @param Content $content
* @param UserIdentity $user The user that the fake revision is attributed to
* @return ScopedCallback to unset the hook
*/
public function setupFakeRevision( $title, $content, $user ) {
$oldCallback = $this->setCurrentRevisionRecordCallback(
static function (
$titleToCheck, $parser = null ) use ( $title, $content, $user, &$oldCallback
) {
if ( $titleToCheck->equals( $title ) ) {
$revRecord = new MutableRevisionRecord( $title );
$revRecord->setContent( SlotRecord::MAIN, $content )
->setUser( $user )
->setTimestamp( MWTimestamp::now( TS_MW ) )
->setPageId( $title->getArticleID() )
->setParentId( $title->getLatestRevID() );
return $revRecord;
} else {
return call_user_func( $oldCallback, $titleToCheck, $parser );
}
}
);
$hookContainer = MediaWikiServices::getInstance()->getHookContainer();
$hookScope = $hookContainer->scopedRegister(
'TitleExists',
static function ( $titleToCheck, &$exists ) use ( $title ) {
if ( $titleToCheck->equals( $title ) ) {
$exists = true;
}
}
);
$linkCache = MediaWikiServices::getInstance()->getLinkCache();
$linkCache->clearBadLink( $title->getPrefixedDBkey() );
return new ScopedCallback( function () use ( $title, $hookScope, $linkCache, $oldCallback ) {
ScopedCallback::consume( $hookScope );
$linkCache->clearLink( $title );
$this->setCurrentRevisionRecordCallback( $oldCallback );
} );
}
/**
* Returns reason for rendering the content. This human-readable, intended for logging and debugging only.
* Expected values include "edit", "view", "purge", "LinksUpdate", etc.
* @return string
*/
public function getRenderReason(): string {
return $this->renderReason;
}
/**
* Sets reason for rendering the content. This human-readable, intended for logging and debugging only.
* Expected values include "edit", "view", "purge", "LinksUpdate", etc.
* @param string $renderReason
*/
public function setRenderReason( string $renderReason ): void {
$this->renderReason = $renderReason;
}
}
/** @deprecated class alias since 1.43 */
class_alias( ParserOptions::class, 'ParserOptions' );
/**
* For really cool vim folding this needs to be at the end:
* vim: foldmarker=@{,@} foldmethod=marker
*/
|