275 'blockedtext' => [
'apierror-blocked',
'blocked' ],
276 'blockedtext-partial' => [
'apierror-blocked',
'blocked' ],
277 'autoblockedtext' => [
'apierror-autoblocked',
'autoblocked' ],
278 'systemblockedtext' => [
'apierror-systemblocked',
'blocked' ],
296 $this->mMainModule = $mainModule;
297 $this->mModuleName = $moduleName;
298 $this->mModulePrefix = $modulePrefix;
564 self::dieDebug( __METHOD__,
'base method was called on main module.' );
567 return $this->
getMain()->lacksSameOriginSecurity();
596 if (
$path ===
'main' ) {
600 $parts = explode(
'+',
$path );
601 if ( count( $parts ) === 1 ) {
603 $parts = explode(
' ',
$path );
606 $count = count( $parts );
607 for ( $i = 0; $i < $count; $i++ ) {
609 $manager =
$parent->getModuleManager();
610 if ( $manager ===
null ) {
611 $errorPath = implode(
'+', array_slice( $parts, 0, $i ) );
612 $this->
dieWithError( [
'apierror-badmodule-nosubmodules', $errorPath ],
'badmodule' );
614 $module = $manager->getModule( $parts[$i] );
616 if ( $module ===
null ) {
617 $errorPath = $i ? implode(
'+', array_slice( $parts, 0, $i ) ) :
$parent->getModuleName();
619 [
'apierror-badmodule-badsubmodule', $errorPath,
wfEscapeWikiText( $parts[$i] ) ],
636 self::dieDebug( __METHOD__,
'base method was called on main module. ' );
639 return $this->
getMain()->getResult();
650 self::dieDebug( __METHOD__,
'base method was called on main module. ' );
653 return $this->
getMain()->getErrorFormatter();
661 if ( !isset( $this->mReplicaDB ) ) {
676 self::dieDebug( __METHOD__,
'base method was called on main module. ' );
679 return $this->
getMain()->getContinuationManager();
690 self::dieDebug( __METHOD__,
'base method was called on main module. ' );
693 $this->
getMain()->setContinuationManager( $manager );
722 if ( is_array( $paramName ) ) {
723 return array_map(
function (
$name ) {
724 return $this->mModulePrefix .
$name;
727 return $this->mModulePrefix . $paramName;
748 'parseLimit' =>
true,
752 $parseLimit = (bool)
$options[
'parseLimit'];
755 if ( !isset( $this->mParamCache[$parseLimit] ) ) {
763 foreach (
$params as $paramName => $paramSettings ) {
764 if ( isset( $paramSettings[self::PARAM_TEMPLATE_VARS] ) ) {
769 $paramName, $paramSettings, $parseLimit
772 $results[$paramName] = $ex;
782 while ( $toProcess ) {
783 list(
$name, $targets, $settings ) = array_shift( $toProcess );
785 foreach ( $targets
as $placeholder => $target ) {
786 if ( !array_key_exists( $target, $results ) ) {
791 if ( !is_array( $results[$target] ) || !$results[$target] ) {
800 unset( $targets[$placeholder] );
801 $placeholder =
'{' . $placeholder .
'}';
803 foreach ( $results[$target]
as $value ) {
804 if ( !preg_match(
'/^[^{}]*$/',
$value ) ) {
807 if ( !isset( $warned[$encTargetName][
$value] ) ) {
808 $warned[$encTargetName][
$value] =
true;
810 'apiwarn-ignoring-invalid-templated-value',
818 $newName = str_replace( $placeholder,
$value,
$name );
823 $results[$newName] = $ex;
827 foreach ( $targets
as $k => $v ) {
828 $newTargets[$k] = str_replace( $placeholder,
$value, $v );
830 $toProcess[] = [ $newName, $newTargets, $settings ];
837 $this->mParamCache[$parseLimit] = $results;
840 $ret = $this->mParamCache[$parseLimit];
849 return $this->mParamCache[$parseLimit];
860 'parseLimit' => $parseLimit,
876 $required = func_get_args();
877 array_shift( $required );
879 $intersection = array_intersect( array_keys( array_filter(
$params,
880 [ $this,
'parameterNotEmpty' ] ) ), $required );
882 if ( count( $intersection ) > 1 ) {
884 'apierror-invalidparammix',
885 Message::listParam( array_map(
889 array_values( $intersection )
891 count( $intersection ),
893 } elseif ( count( $intersection ) == 0 ) {
895 'apierror-missingparam-one-of',
896 Message::listParam( array_map(
900 array_values( $required )
914 $required = func_get_args();
915 array_shift( $required );
917 $intersection = array_intersect( array_keys( array_filter(
$params,
918 [ $this,
'parameterNotEmpty' ] ) ), $required );
920 if ( count( $intersection ) > 1 ) {
922 'apierror-invalidparammix',
923 Message::listParam( array_map(
927 array_values( $intersection )
929 count( $intersection ),
942 $required = func_get_args();
943 array_shift( $required );
945 $intersection = array_intersect(
946 array_keys( array_filter(
$params, [ $this,
'parameterNotEmpty' ] ) ),
950 if ( count( $intersection ) == 0 ) {
952 'apierror-missingparam-at-least-one-of',
953 Message::listParam( array_map(
957 array_values( $required )
973 if ( $this->
getConfig()->
get(
'DebugAPI' ) || $this->
getMain()->isInternalMode() ) {
977 $queryValues = $this->
getRequest()->getQueryValues();
980 if ( $prefix !==
'noprefix' ) {
983 if ( array_key_exists( $param, $queryValues ) ) {
984 $badParams[] = $param;
990 [
'apierror-mustpostparams', implode(
', ', $badParams ), count( $badParams ) ]
1002 return !is_null( $x ) && $x !==
false;
1020 if ( isset(
$params[
'title'] ) ) {
1021 $titleObj = Title::newFromText(
$params[
'title'] );
1022 if ( !$titleObj || $titleObj->isExternal() ) {
1025 if ( !$titleObj->canExist() ) {
1028 $pageObj = WikiPage::factory( $titleObj );
1029 if ( $load !==
false ) {
1030 $pageObj->loadPageData( $load );
1032 } elseif ( isset(
$params[
'pageid'] ) ) {
1033 if ( $load ===
false ) {
1036 $pageObj = WikiPage::newFromID(
$params[
'pageid'], $load );
1057 if ( isset(
$params[
'title'] ) ) {
1058 $titleObj = Title::newFromText(
$params[
'title'] );
1059 if ( !$titleObj || $titleObj->isExternal() ) {
1063 } elseif ( isset(
$params[
'pageid'] ) ) {
1064 $titleObj = Title::newFromID(
$params[
'pageid'] );
1084 switch ( $watchlist ) {
1092 # If the user is already watching, don't bother checking
1093 if ( $userWatching ) {
1096 # If no user option was passed, use watchdefault and watchcreations
1097 if ( is_null( $userOption ) ) {
1098 return $this->
getUser()->getBoolOption(
'watchdefault' ) ||
1099 $this->
getUser()->getBoolOption(
'watchcreations' ) && !$titleObj->exists();
1102 # Watch the article based on the user preference
1103 return $this->
getUser()->getBoolOption( $userOption );
1106 return $userWatching;
1109 return $userWatching;
1127 if ( !is_array( $paramSettings ) ) {
1129 self::PARAM_DFLT => $paramSettings,
1145 if ( !isset(
$type ) ) {
1146 if ( isset( $default ) ) {
1147 $type = gettype( $default );
1153 if (
$type ==
'password' || !empty( $paramSettings[self::PARAM_SENSITIVE] ) ) {
1154 $this->
getMain()->markParamsSensitive( $encParamName );
1157 if (
$type ==
'boolean' ) {
1158 if ( isset( $default ) && $default !==
false ) {
1162 "Boolean param $encParamName's default is set to '$default'. " .
1163 'Boolean parameters must default to false.'
1169 } elseif (
$type ==
'upload' ) {
1170 if ( isset( $default ) ) {
1174 "File upload param $encParamName's default is set to " .
1175 "'$default'. File upload parameters may not have a default." );
1178 self::dieDebug( __METHOD__,
"Multi-values not supported for $encParamName" );
1181 $provided =
$value->exists();
1182 if ( !
$value->exists() ) {
1186 $value = $this->
getMain()->getRequest()->unsetVal( $encParamName );
1189 [
'apierror-badupload', $encParamName ],
1190 "badupload_{$encParamName}"
1195 $value = $this->
getMain()->getVal( $encParamName, $default );
1196 $provided = $this->
getMain()->getCheck( $encParamName );
1199 $type = MWNamespace::getValidNamespaces();
1200 if ( isset( $paramSettings[self::PARAM_EXTRA_NAMESPACES] ) &&
1201 is_array( $paramSettings[self::PARAM_EXTRA_NAMESPACES] )
1203 $type = array_merge(
$type, $paramSettings[self::PARAM_EXTRA_NAMESPACES] );
1210 if ( isset( $paramSettings[self::PARAM_SUBMODULE_MAP] ) ) {
1211 $type = array_keys( $paramSettings[self::PARAM_SUBMODULE_MAP] );
1218 $rawValue =
$request->getRawVal( $encParamName );
1219 if ( $rawValue ===
null ) {
1220 $rawValue = $default;
1224 if ( isset(
$value ) && substr( $rawValue, 0, 1 ) ===
"\x1f" ) {
1228 $value = implode(
"\x1f",
$request->normalizeUnicode( explode(
"\x1f", $rawValue ) ) );
1230 $this->
dieWithError(
'apierror-badvalue-notmultivalue',
'badvalue_notmultivalue' );
1235 if ( $rawValue !==
$value ) {
1241 if ( $allowAll && $multi && is_array(
$type ) && in_array( $allSpecifier,
$type,
true ) ) {
1244 "For param $encParamName, PARAM_ALL collides with a possible value" );
1246 if ( isset(
$value ) && ( $multi || is_array(
$type ) ) ) {
1252 $allowAll ? $allSpecifier :
null,
1261 if ( !is_array(
$type ) ) {
1268 if ( $required &&
$value ===
'' ) {
1269 $this->
dieWithError( [
'apierror-missingparam', $encParamName ] );
1277 if ( is_array(
$value ) ) {
1279 if ( !is_null( $min ) || !is_null( $max ) ) {
1281 $this->
validateLimit( $paramName, $v, $min, $max,
null, $enforceLimits );
1286 if ( !is_null( $min ) || !is_null( $max ) ) {
1292 if ( !$parseLimit ) {
1296 if ( !isset( $paramSettings[self::PARAM_MAX] )
1297 || !isset( $paramSettings[self::PARAM_MAX2] )
1301 "MAX1 or MAX2 are not defined for the limit $encParamName"
1305 self::dieDebug( __METHOD__,
"Multi-values not supported for $encParamName" );
1319 $paramSettings[self::PARAM_MAX],
1320 $paramSettings[self::PARAM_MAX2]
1326 self::dieDebug( __METHOD__,
"Multi-values not supported for $encParamName" );
1330 if ( is_array(
$value ) ) {
1331 foreach (
$value as $key => $val ) {
1339 if ( is_array(
$value ) ) {
1340 foreach (
$value as $key => $val ) {
1351 if ( !is_array(
$value ) && !$multi ) {
1355 if ( !$tagsStatus->isGood() ) {
1360 self::dieDebug( __METHOD__,
"Param $encParamName's type is unknown - $type" );
1365 if ( !$dupes && is_array(
$value ) ) {
1369 if ( in_array(
$type, [
'NULL',
'string',
'text',
'password' ],
true ) ) {
1371 if ( isset( $paramSettings[self::PARAM_MAX_BYTES] )
1372 && strlen( $val ) > $paramSettings[self::PARAM_MAX_BYTES]
1374 $this->
dieWithError( [
'apierror-maxbytes', $encParamName,
1375 $paramSettings[self::PARAM_MAX_BYTES] ] );
1377 if ( isset( $paramSettings[self::PARAM_MAX_CHARS] )
1378 && mb_strlen( $val,
'UTF-8' ) > $paramSettings[self::PARAM_MAX_CHARS]
1380 $this->
dieWithError( [
'apierror-maxchars', $encParamName,
1381 $paramSettings[self::PARAM_MAX_CHARS] ] );
1387 if ( $deprecated && $provided ) {
1388 $feature = $encParamName;
1390 while ( !$m->isMain() ) {
1391 $p = $m->getParent();
1392 $name = $m->getModuleName();
1393 $param = $p->encodeParamName( $p->getModuleManager()->getModuleGroup(
$name ) );
1394 $feature =
"{$param}={$name}&{$feature}";
1397 $this->
addDeprecation( [
'apiwarn-deprecation-parameter', $encParamName ], $feature );
1401 $usedDeprecatedValues = $deprecatedValues && $provided
1402 ? array_intersect( array_keys( $deprecatedValues ), (
array)
$value )
1404 if ( $usedDeprecatedValues ) {
1405 $feature =
"$encParamName=";
1407 while ( !$m->isMain() ) {
1408 $p = $m->getParent();
1409 $name = $m->getModuleName();
1410 $param = $p->encodeParamName( $p->getModuleManager()->getModuleGroup(
$name ) );
1411 $feature =
"{$param}={$name}&{$feature}";
1414 foreach ( $usedDeprecatedValues
as $v ) {
1415 $msg = $deprecatedValues[$v];
1416 if ( $msg ===
true ) {
1417 $msg = [
'apiwarn-deprecation-parameter',
"$encParamName=$v" ];
1422 } elseif ( $required ) {
1423 $this->
dieWithError( [
'apierror-missingparam', $encParamName ] );
1438 $this->
addWarning( [
'apiwarn-badutf8', $encParamName ] );
1449 if ( substr(
$value, 0, 1 ) ===
"\x1f" ) {
1456 return explode( $sep,
$value, $limit );
1477 $allSpecifier =
null, $limit1 =
null, $limit2 =
null
1479 if ( (
$value ===
'' ||
$value ===
"\x1f" ) && $allowMultiple ) {
1488 $sizeLimit = count( $valuesList ) > $limit1 && $this->mMainModule->canApiHighLimits()
1492 if ( $allowMultiple && is_array( $allowedValues ) && $allSpecifier &&
1493 count( $valuesList ) === 1 && $valuesList[0] === $allSpecifier
1495 return $allowedValues;
1498 if ( count( $valuesList ) > $sizeLimit ) {
1500 [
'apierror-toomanyvalues', $valueName, $sizeLimit ],
1501 "too-many-$valueName"
1505 if ( !$allowMultiple && count( $valuesList ) != 1 ) {
1507 if ( in_array(
$value, $allowedValues,
true ) ) {
1511 $values = array_map(
function ( $v ) {
1513 }, $allowedValues );
1515 'apierror-multival-only-one-of',
1517 Message::listParam( $values ),
1519 ],
"multival_$valueName" );
1522 if ( is_array( $allowedValues ) ) {
1524 $unknown = array_map(
'wfEscapeWikiText', array_diff( $valuesList, $allowedValues ) );
1525 if ( count( $unknown ) ) {
1526 if ( $allowMultiple ) {
1528 'apiwarn-unrecognizedvalues',
1530 Message::listParam( $unknown,
'comma' ),
1535 [
'apierror-unrecognizedvalue', $valueName,
wfEscapeWikiText( $valuesList[0] ) ],
1536 "unknown_$valueName"
1541 $valuesList = array_intersect( $valuesList, $allowedValues );
1544 return $allowMultiple ? $valuesList : $valuesList[0];
1558 $enforceLimits =
false
1560 if ( !is_null( $min ) &&
$value < $min ) {
1562 [
'apierror-integeroutofrange-belowminimum',
1564 'integeroutofrange',
1565 [
'min' => $min,
'max' => $max,
'botMax' => $botMax ?: $max ]
1567 $this->
warnOrDie( $msg, $enforceLimits );
1573 if ( $this->
getMain()->isInternalMode() ) {
1579 if ( !is_null( $max ) &&
$value > $max ) {
1580 if ( !is_null( $botMax ) && $this->
getMain()->canApiHighLimits() ) {
1581 if (
$value > $botMax ) {
1583 [
'apierror-integeroutofrange-abovebotmax',
1585 'integeroutofrange',
1586 [
'min' => $min,
'max' => $max,
'botMax' => $botMax ?: $max ]
1588 $this->
warnOrDie( $msg, $enforceLimits );
1593 [
'apierror-integeroutofrange-abovemax',
1595 'integeroutofrange',
1596 [
'min' => $min,
'max' => $max,
'botMax' => $botMax ?: $max ]
1598 $this->
warnOrDie( $msg, $enforceLimits );
1617 'unclear-"now"-timestamp'
1623 if (
$value ===
'now' ) {
1628 if ( $timestamp ===
false ) {
1631 "badtimestamp_{$encParamName}"
1650 if ( !isset( $salts[$tokenType] ) ) {
1652 "Module '{$this->getModuleName()}' tried to use token type '$tokenType' " .
1653 'without registering it'
1660 if ( $tokenObj->match( $token ) ) {
1665 if ( $webUiSalt !==
null && $this->
getUser()->matchEditToken(
1688 if (
$name !==
false ) {
1694 IP::isIPAddress(
$value ) ||
1704 return IP::sanitizeIP(
$value );
1709 "baduser_{$encParamName}"
1726 protected function setWatch( $watch, $titleObj, $userOption =
null ) {
1742 if ( !is_null(
$params[
'owner'] ) && !is_null(
$params[
'token'] ) ) {
1749 $token =
$user->getOption(
'watchlisttoken' );
1750 if ( $token ==
'' || !hash_equals( $token,
$params[
'token'] ) ) {
1751 $this->
dieWithError(
'apierror-bad-watchlist-token',
'bad_wltoken' );
1754 if ( !$this->
getUser()->isLoggedIn() ) {
1755 $this->
dieWithError(
'watchlistanontext',
'notloggedin' );
1777 if ( is_string( $msg ) ) {
1779 } elseif ( is_array( $msg ) ) {
1782 if ( !$msg instanceof
Message ) {
1802 if (
$user ===
null ) {
1807 foreach ( $errors
as $error ) {
1808 if ( !is_array( $error ) ) {
1809 $error = [ $error ];
1811 if ( is_string( $error[0] ) && isset( self::$blockMsgMap[$error[0]] ) &&
$user->getBlock() ) {
1812 list( $msg,
$code ) = self::$blockMsgMap[$error[0]];
1830 if (
$user ===
null ) {
1834 foreach ( self::$blockMsgMap
as $msg =>
list( $apiMsg,
$code ) ) {
1835 if (
$status->hasMessage( $msg ) &&
$user->getBlock() ) {
1864 foreach ( $fields
as list( $table, $field ) ) {
1865 if ( isset( self::$filterIDsCache[$table][$field] ) ) {
1866 $row = self::$filterIDsCache[$table][$field];
1868 $row = $this->
getDB()->selectRow(
1871 'min_id' =>
"MIN($field)",
1872 'max_id' =>
"MAX($field)",
1877 self::$filterIDsCache[$table][$field] = $row;
1879 $min = min( $min, $row->min_id );
1880 $max = max( $max, $row->max_id );
1882 return array_filter( $ids,
function ( $id )
use ( $min, $max ) {
1883 return ( is_int( $id ) && $id >= 0 || ctype_digit( $id ) )
1884 && $id >= $min && $id <= $max;
1925 if ( $feature !==
null ) {
1926 $data[
'feature'] = $feature;
1933 $msgs = [ $this->
msg(
'api-usage-mailinglist-ref' ) ];
1934 Hooks::run(
'ApiDeprecationHelp', [ &$msgs ] );
1935 if ( count( $msgs ) > 1 ) {
1936 $key =
'$' . implode(
' $', range( 1, count( $msgs ) ) );
1937 $msg = (
new RawMessage( $key ) )->params( $msgs );
1939 $msg = reset( $msgs );
1941 $this->
getMain()->addWarning( $msg,
'deprecation-help' );
2015 if ( $enforceLimits ) {
2034 'apierror-autoblocked',
2040 'apierror-blocked-partial',
2063 throw new MWException(
'Successful status passed to ApiBase::dieStatus' );
2069 if ( !
$status->getErrorsByType(
'error' ) ) {
2070 $newStatus = Status::newGood();
2071 foreach (
$status->getErrorsByType(
'warning' )
as $err ) {
2072 $newStatus->fatal( $err[
'message'], ...$err[
'params'] );
2074 if ( !$newStatus->getErrorsByType(
'error' ) ) {
2075 $newStatus->fatal(
'unknownerror-nocode' );
2091 'apierror-readonly',
2109 $rights = (
array)$rights;
2110 if ( !
$user->isAllowedAny( ...$rights ) ) {
2111 $this->
dieWithError( [
'apierror-permissiondenied', $this->
msg(
"action-{$rights[0]}" ) ] );
2129 wfDeprecated(
'$user as the third parameter to ' . __METHOD__,
'1.33' );
2135 foreach ( (
array)$actions
as $action ) {
2136 $errors = array_merge( $errors,
$title->getUserPermissionsErrors( $action,
$user ) );
2140 if ( !empty(
$options[
'autoblock'] ) ) {
2141 $user->spreadAnyEditBlock();
2160 if ( $this->
getConfig()->
get(
'DebugAPI' ) !==
true ) {
2188 protected static function dieDebug( $method, $message ) {
2189 throw new MWException(
"Internal error in $method: $message" );
2199 static $loggedFeatures = [];
2203 if ( isset( $loggedFeatures[$feature] ) ) {
2206 $loggedFeatures[$feature] =
true;
2210 'feature' => $feature,
2212 'username' => str_replace(
' ',
'_', $this->
getUser()->getName() ),
2215 'agent' => $this->
getMain()->getUserAgent(),
2219 $s =
'"' . addslashes( $ctx[
'feature'] ) .
'"' .
2221 ' "' . $ctx[
'ip'] .
'"' .
2222 ' "' . addslashes( $ctx[
'referer'] ) .
'"' .
2223 ' "' . addslashes( $ctx[
'agent'] ) .
'"';
2225 wfDebugLog(
'api-feature-usage',
$s,
'private', $ctx );
2245 return "apihelp-{$this->getModulePath()}-summary";
2259 "apihelp-{$this->getModulePath()}-extended-description",
2260 'api-help-no-extended-description',
2300 $msgs = [ $summary, $extendedDescription ];
2302 Hooks::run(
'APIGetDescriptionMessages', [ $this, &$msgs ] );
2323 self::PARAM_TYPE =>
'string',
2324 self::PARAM_REQUIRED =>
true,
2325 self::PARAM_SENSITIVE =>
true,
2326 self::PARAM_HELP_MSG => [
2327 'api-help-param-token',
2330 ] + (
$params[
'token'] ?? [] );
2335 Hooks::run(
'APIGetAllowedParams', [ &$apiModule, &
$params, $flags ] );
2354 foreach (
$params as $param => $settings ) {
2355 if ( !is_array( $settings ) ) {
2359 if ( isset( $settings[self::PARAM_HELP_MSG] ) ) {
2362 $msg = $this->
msg(
"apihelp-{$path}-param-{$param}" );
2368 'Value in ApiBase::PARAM_HELP_MSG is not valid' );
2370 $msgs[$param] = [ $msg ];
2372 if ( isset( $settings[self::PARAM_TYPE] ) &&
2373 $settings[self::PARAM_TYPE] ===
'submodule'
2375 if ( isset( $settings[self::PARAM_SUBMODULE_MAP] ) ) {
2381 $map[$submoduleName] = $prefix . $submoduleName;
2386 $deprecatedSubmodules = [];
2387 foreach ( $map
as $v => $m ) {
2388 $arr = &$submodules;
2389 $isDeprecated =
false;
2394 $summary = $submod->getFinalSummary();
2395 $isDeprecated = $submod->isDeprecated();
2396 if ( $isDeprecated ) {
2397 $arr = &$deprecatedSubmodules;
2404 $key = $summary->getKey();
2405 $params = $summary->getParams();
2407 $key =
'api-help-undocumented-module';
2411 $arr[] = $m->setContext( $this->
getContext() );
2413 $msgs[$param] = array_merge( $msgs[$param], $submodules, $deprecatedSubmodules );
2414 } elseif ( isset( $settings[self::PARAM_HELP_MSG_PER_VALUE] ) ) {
2415 if ( !is_array( $settings[self::PARAM_HELP_MSG_PER_VALUE] ) ) {
2417 'ApiBase::PARAM_HELP_MSG_PER_VALUE is not valid' );
2419 if ( !is_array( $settings[self::PARAM_TYPE] ) ) {
2421 'ApiBase::PARAM_HELP_MSG_PER_VALUE may only be used when ' .
2422 'ApiBase::PARAM_TYPE is an array' );
2428 foreach ( $settings[self::PARAM_TYPE]
as $value ) {
2429 if ( isset( $valueMsgs[
$value] ) ) {
2430 $msg = $valueMsgs[
$value];
2432 $msg =
"apihelp-{$path}-paramvalue-{$param}-{$value}";
2439 [ $m->getKey(),
'api-help-param-no-description' ],
2441 isset( $deprecatedValues[
$value] )
2443 $msgs[$param][] = $m->setContext( $this->
getContext() );
2446 "Value in ApiBase::PARAM_HELP_MSG_PER_VALUE for $value is not valid" );
2451 if ( isset( $settings[self::PARAM_HELP_MSG_APPEND] ) ) {
2452 if ( !is_array( $settings[self::PARAM_HELP_MSG_APPEND] ) ) {
2454 'Value for ApiBase::PARAM_HELP_MSG_APPEND is not an array' );
2456 foreach ( $settings[self::PARAM_HELP_MSG_APPEND]
as $m ) {
2460 $msgs[$param][] = $m;
2463 'Value in ApiBase::PARAM_HELP_MSG_APPEND is not valid' );
2469 Hooks::run(
'APIGetParamDescriptionMessages', [ $this, &$msgs ] );
2487 $flags[] =
'deprecated';
2490 $flags[] =
'internal';
2493 $flags[] =
'readrights';
2496 $flags[] =
'writerights';
2499 $flags[] =
'mustbeposted';
2519 if ( $this->mModuleSource !==
false ) {
2524 $rClass =
new ReflectionClass( $this );
2525 $path = $rClass->getFileName();
2528 $this->mModuleSource =
null;
2534 if ( self::$extensionInfo ===
null ) {
2535 $extDir = $this->
getConfig()->get(
'ExtensionDirectory' );
2536 self::$extensionInfo = [
2537 realpath( __DIR__ ) ?: __DIR__ => [
2539 'name' =>
'MediaWiki',
2540 'license-name' =>
'GPL-2.0-or-later',
2542 realpath(
"$IP/extensions" ) ?:
"$IP/extensions" =>
null,
2543 realpath( $extDir ) ?: $extDir =>
null,
2549 'license-name' =>
null,
2551 foreach ( $this->
getConfig()->
get(
'ExtensionCredits' )
as $group ) {
2552 foreach ( $group
as $ext ) {
2553 if ( !isset(
$ext[
'path'] ) || !isset(
$ext[
'name'] ) ) {
2558 $extpath =
$ext[
'path'];
2559 if ( !is_dir( $extpath ) ) {
2560 $extpath = dirname( $extpath );
2562 self::$extensionInfo[realpath( $extpath ) ?: $extpath] =
2563 array_intersect_key(
$ext, $keep );
2567 $extpath =
$ext[
'path'];
2568 if ( !is_dir( $extpath ) ) {
2569 $extpath = dirname( $extpath );
2571 self::$extensionInfo[realpath( $extpath ) ?: $extpath] =
2572 array_intersect_key(
$ext, $keep );
2579 if ( array_key_exists(
$path, self::$extensionInfo ) ) {
2581 $this->mModuleSource = self::$extensionInfo[
$path];
2587 }
while (
$path !== $oldpath );
2590 $this->mModuleSource =
null;
2678 "apihelp-{$this->getModulePath()}-description",
2679 "apihelp-{$this->getModulePath()}-summary",
2693 while ( count( $arr ) > $limit ) {
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
wfTransactionalTimeLimit()
Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
This abstract class implements many basic API functions, and is the base of all API classes.
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
const PARAM_REQUIRED
(boolean) Is the parameter required?
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
const PARAM_SUBMODULE_MAP
(string[]) When PARAM_TYPE is 'submodule', map parameter values to submodule paths.
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
getModuleFromPath( $path)
Get a module from its module path.
getDB()
Gets a default replica DB connection object.
checkTitleUserPermissions(Title $title, $actions, $options=[])
Helper function for permission-denied errors.
filterIDs( $fields, array $ids)
Filter out-of-range values from a list of positive integer IDs.
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
parameterNotEmpty( $x)
Callback function used in requireOnlyOneParameter to check whether required parameters are set.
static makeMessage( $msg, IContextSource $context, array $params=null)
Create a Message from a string or array.
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
getWatchlistUser( $params)
Gets the user for whom to get the watchlist.
getParamDescription()
Returns an array of parameter descriptions.
isDeprecated()
Indicates whether this module is deprecated.
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
dieWithErrorOrDebug( $msg, $code=null, $data=null, $httpCode=null)
Will only set a warning instead of failing if the global $wgDebugAPI is set to true.
const PARAM_DEPRECATED_VALUES
(array) When PARAM_TYPE is an array, this indicates which of the values are deprecated.
array null bool $mModuleSource
getParent()
Get the parent of this module.
validateUser( $value, $encParamName)
Validate and normalize parameters of type 'user'.
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
getHelpUrls()
Return links to more detailed help pages about the module.
const PARAM_ISMULTI_LIMIT1
(integer) Maximum number of values, for normal users.
getModuleManager()
Get the module manager, or null if this module has no sub-modules.
parseMultiValue( $valueName, $value, $allowMultiple, $allowedValues, $allSpecifier=null, $limit1=null, $limit2=null)
Return an array of values that were given in a 'a|b|c' notation, after it optionally validates them a...
addMessagesFromStatus(StatusValue $status, $types=[ 'warning', 'error'], array $filter=[])
Add warnings and/or errors from a Status.
getMain()
Get the main module.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getCustomPrinter()
If the module may only be used with a certain format module, it should override this method to return...
setWatch( $watch, $titleObj, $userOption=null)
Set a watch (or unwatch) based the based on a watchlist parameter.
const PARAM_SENSITIVE
(boolean) Is the parameter sensitive? Note 'password'-type fields are always sensitive regardless of ...
const PARAM_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
getErrorFormatter()
Get the error formatter.
isWriteMode()
Indicates whether this module requires write mode.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
isInternal()
Indicates whether this module is "internal" Internal API modules are not (yet) intended for 3rd party...
getFinalSummary()
Get final module summary.
requirePostedParameters( $params, $prefix='prefix')
Die if any of the specified parameters were found in the query part of the URL rather than the post b...
getDescription()
Returns the description string for this module.
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
dieReadOnly()
Helper function for readonly errors.
const PARAM_ALLOW_DUPLICATES
(boolean) Allow the same value to be set more than once when PARAM_ISMULTI is true?
getSummaryMessage()
Return the summary message.
modifyHelp(array &$help, array $options, array &$tocData)
Called from ApiHelp before the pieces are joined together and returned.
static $blockMsgMap
$var array Map of web UI block messages to corresponding API messages and codes
errorArrayToStatus(array $errors, User $user=null)
Turn an array of message keys or key+param arrays into a Status.
const PARAM_VALUE_LINKS
(string[]) When PARAM_TYPE is an array, this may be an array mapping those values to page titles whic...
__construct(ApiMain $mainModule, $moduleName, $modulePrefix='')
addError( $msg, $code=null, $data=null)
Add an error for this module without aborting.
getExamplesMessages()
Returns usage examples for this module.
const PARAM_ISMULTI_LIMIT2
(integer) Maximum number of values, for users with the apihighimits right.
const PARAM_MAX_CHARS
(integer) Maximum length of a string in characters (unicode codepoints).
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
addDeprecation( $msg, $feature, $data=[])
Add a deprecation warning for this module.
addBlockInfoToStatus(StatusValue $status, User $user=null)
Add block info to block messages in a Status.
getExtendedDescription()
Return the extended help text message.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getModuleSourceInfo()
Returns information about the source of this module, if known.
const PARAM_SUBMODULE_PARAM_PREFIX
(string) When PARAM_TYPE is 'submodule', used to indicate the 'g' prefix added by ApiQueryGeneratorBa...
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
mustBePosted()
Indicates whether this module must be called with a POST request.
getWebUITokenSalt(array $params)
Fetch the salt used in the Web UI corresponding to this module.
static array $extensionInfo
Maps extension paths to info arrays.
const LIMIT_BIG1
Fast query, standard limit.
isMain()
Returns true if this module is the main module ($this === $this->mMainModule), false otherwise.
const LIMIT_SML2
Slow query, apihighlimits limit.
handleParamNormalization( $paramName, $value, $rawValue)
Handle when a parameter was Unicode-normalized.
validateLimit( $paramName, &$value, $min, $max, $botMax=null, $enforceLimits=false)
Validate the value against the minimum and user/bot maximum limits.
getFinalDescription()
Get final module description, after hooks have had a chance to tweak it as needed.
const PARAM_MAX_BYTES
(integer) Maximum length of a string in bytes (in UTF-8 encoding).
warnOrDie(ApiMessage $msg, $enforceLimits=false)
Adds a warning to the output, else dies.
static truncateArray(&$arr, $limit)
Truncate an array to a certain length.
const PARAM_TEMPLATE_VARS
(array) Indicate that this is a templated parameter, and specify replacements.
setContinuationManager(ApiContinuationManager $manager=null)
Set the continuation manager.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
needsToken()
Returns the token type this module requires in order to execute.
getDescriptionMessage()
Return the description message.
getParameterFromSettings( $paramName, $paramSettings, $parseLimit)
Using the settings determine the value for the given parameter.
getModulePath()
Get the path to this module.
const PARAM_RANGE_ENFORCE
(boolean) For PARAM_TYPE 'integer', enforce PARAM_MIN and PARAM_MAX?
logFeatureUsage( $feature)
Write logging information for API features to a debug log, for usage analysis.
const PARAM_EXTRA_NAMESPACES
(int[]) When PARAM_TYPE is 'namespace', include these as additional possible values.
shouldCheckMaxlag()
Indicates if this module needs maxlag to be checked.
getHelpFlags()
Generates the list of flags for the help screen and for action=paraminfo.
const LIMIT_SML1
Slow query, standard limit.
getFinalParams( $flags=0)
Get final list of parameters, after hooks have had a chance to tweak it as needed.
getWatchlistValue( $watchlist, $titleObj, $userOption=null)
Return true if we're to watch the page, false if not, null if no change.
isReadMode()
Indicates whether this module requires read rights.
getExamples()
Returns usage examples for this module.
dieWithException( $exception, array $options=[])
Abort execution with an error derived from an exception.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
addWarning( $msg, $code=null, $data=null)
Add a warning for this module.
requireAtLeastOneParameter( $params, $required)
Die if none of a certain set of parameters is set and not false.
getTitleFromTitleOrPageId( $params)
Get a Title object from a title or pageid param, if possible.
const PARAM_ALL
(boolean|string) When PARAM_TYPE has a defined set of values and PARAM_ISMULTI is true,...
const GET_VALUES_FOR_HELP
getAllowedParams() flag: When set, the result could take longer to generate, but should be more thoro...
const LIMIT_BIG2
Fast query, apihighlimits limit.
getModuleName()
Get the name of the module being executed by this instance.
getTitleOrPageId( $params, $load=false)
Get a WikiPage object from a title or pageid param, if possible.
validateTimestamp( $value, $encParamName)
Validate and normalize parameters of type 'timestamp'.
dieStatus(StatusValue $status)
Throw an ApiUsageException based on the Status object.
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getFinalParamDescription()
Get final parameter descriptions, after hooks have had a chance to tweak it as needed.
dieBlocked(Block $block)
Throw an ApiUsageException, which will (if uncaught) call the main module's error handler and die wit...
dynamicParameterDocumentation()
Indicate if the module supports dynamically-determined parameters that cannot be included in self::ge...
static int[][][] $filterIDsCache
Cache for self::filterIDs()
getContinuationManager()
Get the continuation manager.
explodeMultiValue( $value, $limit)
Split a multi-valued parameter string, like explode()
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
validateToken( $token, array $params)
Validate the supplied token.
getConditionalRequestData( $condition)
Returns data for HTTP conditional request mechanisms.
requireOnlyOneParameter( $params, $required)
Die if none or more than one of a certain set of parameters is set and not false.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
lacksSameOriginSecurity()
Returns true if the current request breaks the same-origin policy.
This manages continuation state.
Message subclass that prepends wikitext for API help.
This is the main API class, used for both external and internal processing.
Extension of Message implementing IApiMessage.
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
static getTokenTypeSalts()
Get the salts for known token types.
static getToken(User $user, MediaWiki\Session\Session $session, $salt)
Get a token from a salt.
static getBlockInfo(Block $block)
Get basic info about a given block.
Exception used to abort API execution with an error.
static newWithMessage(ApiBase $module=null, $msg, $code=null, $data=null, $httpCode=0)
isSitewide( $x=null)
Indicates that the block is a sitewide block.
getType()
Get the type of target for this particular block.
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
getContext()
Get the base IContextSource object.
setContext(IContextSource $context)
static isExternal( $username)
Tells whether the username is external or not.
The Message class provides methods which fulfil two basic services:
Variant of the Message class.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
static doWatchOrUnwatch( $watch, Title $title, User $user)
Watch or unwatch a page.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
namespace and then decline to actually register it file or subcat img or subcat $title
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
return true to allow those checks to and false if checking is done & $user
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Interface for objects which can provide a MediaWiki context on request.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
if(!is_readable( $file)) $ext