23 if ( !defined(
'MEDIAWIKI' ) ) {
24 die(
"This file is part of MediaWiki, it is not a valid entry point" );
27 use Liuggio\StatsdClient\Sender\SocketSender;
43 if ( !function_exists(
'hash_equals' ) ) {
69 function hash_equals( $known_string, $user_string ) {
71 if ( !is_string( $known_string ) ) {
72 trigger_error(
'hash_equals(): Expected known_string to be a string, ' .
73 gettype( $known_string ) .
' given', E_USER_WARNING );
78 if ( !is_string( $user_string ) ) {
79 trigger_error(
'hash_equals(): Expected user_string to be a string, ' .
80 gettype( $user_string ) .
' given', E_USER_WARNING );
85 $known_string_len = strlen( $known_string );
86 if ( $known_string_len !== strlen( $user_string ) ) {
91 for ( $i = 0; $i < $known_string_len; $i++ ) {
92 $result |= ord( $known_string[$i] ) ^ ord( $user_string[$i] );
113 $path =
"$wgExtensionDirectory/$ext/extension.json";
134 foreach ( $exts
as $ext ) {
135 $registry->queue(
"$wgExtensionDirectory/$ext/extension.json" );
150 $path =
"$wgStyleDirectory/$skin/skin.json";
166 $registry->queue(
"$wgStyleDirectory/$skin/skin.json" );
177 return array_udiff( $a, $b,
'wfArrayDiff2_cmp' );
186 if ( is_string( $a ) && is_string( $b ) ) {
187 return strcmp( $a, $b );
188 } elseif ( count( $a ) !== count( $b ) ) {
189 return count( $a ) < count( $b ) ? -1 : 1;
193 while ( (
list( , $valueA ) = each( $a ) ) && (
list( , $valueB ) = each( $b ) ) ) {
194 $cmp = strcmp( $valueA, $valueB );
213 if ( is_null( $changed ) ) {
214 throw new MWException(
'GlobalFunctions::wfAppendToArrayIfNotDefault got null' );
216 if ( $default[$key] !==
$value ) {
241 $args = func_get_args();
248 $params = array_merge( [ $msg->getKey() ], $msg->getParams() );
250 # @todo FIXME: Sometimes get nested arrays for $params,
251 # which leads to E_NOTICEs
252 $spec = implode(
"\t", $params );
253 $out[$spec] = $originalParams;
256 return array_values(
$out );
269 $keys = array_keys( $array );
270 $offsetByKey = array_flip(
$keys );
272 $offset = $offsetByKey[$after];
275 $before = array_slice( $array, 0, $offset + 1,
true );
276 $after = array_slice( $array, $offset + 1, count( $array ) - $offset,
true );
278 $output = $before + $insert + $after;
292 if ( is_object( $objOrArray ) ) {
293 $objOrArray = get_object_vars( $objOrArray );
295 foreach ( $objOrArray
as $key =>
$value ) {
296 if ( $recursive && ( is_object(
$value ) || is_array(
$value ) ) ) {
319 $max = mt_getrandmax() + 1;
320 $rand = number_format( ( mt_rand() * $max + mt_rand() ) / $max / $max, 12,
'.',
'' );
336 for ( $n = 0; $n < $length; $n += 7 ) {
337 $str .= sprintf(
'%07x', mt_rand() & 0xfffffff );
339 return substr( $str, 0, $length );
372 if ( is_null(
$s ) ) {
377 if ( is_null( $needle ) ) {
378 $needle = [
'%3B',
'%40',
'%24',
'%21',
'%2A',
'%28',
'%29',
'%2C',
'%2F',
'%7E' ];
379 if ( !isset( $_SERVER[
'SERVER_SOFTWARE'] ) ||
380 ( strpos( $_SERVER[
'SERVER_SOFTWARE'],
'Microsoft-IIS/7' ) ===
false )
386 $s = urlencode(
$s );
389 [
';',
'@',
'$',
'!',
'*',
'(',
')',
',',
'/',
'~',
':' ],
407 if ( !is_null( $array2 ) ) {
408 $array1 = $array1 + $array2;
412 foreach ( $array1
as $key =>
$value ) {
417 if ( $prefix !==
'' ) {
418 $key = $prefix .
"[$key]";
420 if ( is_array(
$value ) ) {
423 $cgi .= $firstTime ?
'' :
'&';
424 if ( is_array( $v ) ) {
427 $cgi .= urlencode( $key .
"[$k]" ) .
'=' . urlencode( $v );
432 if ( is_object(
$value ) ) {
435 $cgi .= urlencode( $key ) .
'=' . urlencode(
$value );
455 $bits = explode(
'&',
$query );
457 foreach ( $bits
as $bit ) {
461 if ( strpos( $bit,
'=' ) ===
false ) {
468 $key = urldecode( $key );
470 if ( strpos( $key,
'[' ) !==
false ) {
471 $keys = array_reverse( explode(
'[', $key ) );
472 $key = array_pop(
$keys );
475 $k = substr( $k, 0, -1 );
476 $temp = [ $k => $temp ];
478 if ( isset(
$ret[$key] ) ) {
479 $ret[$key] = array_merge(
$ret[$key], $temp );
499 if ( is_array(
$query ) ) {
505 $hashPos = strpos( $url,
'#' );
506 if ( $hashPos !==
false ) {
507 $fragment = substr( $url, $hashPos );
508 $url = substr( $url, 0, $hashPos );
512 if (
false === strpos( $url,
'?' ) ) {
520 if ( $fragment !==
false ) {
555 } elseif ( $defaultProto ===
PROTO_INTERNAL && $wgInternalServer !==
false ) {
561 $defaultProto = $wgRequest->getProtocol() .
'://';
567 $serverHasProto = $bits && $bits[
'scheme'] !=
'';
570 if ( $serverHasProto ) {
571 $defaultProto = $bits[
'scheme'] .
'://';
580 $defaultProtoWithoutSlashes = substr( $defaultProto, 0, -2 );
582 if ( substr( $url, 0, 2 ) ==
'//' ) {
583 $url = $defaultProtoWithoutSlashes . $url;
584 } elseif ( substr( $url, 0, 1 ) ==
'/' ) {
587 $url = ( $serverHasProto ?
'' : $defaultProtoWithoutSlashes ) . $serverUrl . $url;
594 if ( $defaultProto ===
PROTO_HTTPS && $wgHttpsPort != 443 ) {
598 if ( $bits && isset( $bits[
'path'] ) ) {
604 } elseif ( substr( $url, 0, 1 ) !=
'/' ) {
605 # URL is a relative path
609 # Expanded URL is not valid.
629 if ( isset( $urlParts[
'delimiter'] ) ) {
630 if ( isset( $urlParts[
'scheme'] ) ) {
631 $result .= $urlParts[
'scheme'];
634 $result .= $urlParts[
'delimiter'];
637 if ( isset( $urlParts[
'host'] ) ) {
638 if ( isset( $urlParts[
'user'] ) ) {
640 if ( isset( $urlParts[
'pass'] ) ) {
641 $result .=
':' . $urlParts[
'pass'];
648 if ( isset( $urlParts[
'port'] ) ) {
649 $result .=
':' . $urlParts[
'port'];
653 if ( isset( $urlParts[
'path'] ) ) {
657 if ( isset( $urlParts[
'query'] ) ) {
658 $result .=
'?' . $urlParts[
'query'];
661 if ( isset( $urlParts[
'fragment'] ) ) {
662 $result .=
'#' . $urlParts[
'fragment'];
681 $inputLength = strlen( $urlPath );
683 while ( $inputOffset < $inputLength ) {
684 $prefixLengthOne = substr( $urlPath, $inputOffset, 1 );
685 $prefixLengthTwo = substr( $urlPath, $inputOffset, 2 );
686 $prefixLengthThree = substr( $urlPath, $inputOffset, 3 );
687 $prefixLengthFour = substr( $urlPath, $inputOffset, 4 );
690 if ( $prefixLengthTwo ==
'./' ) {
691 # Step A, remove leading "./"
693 } elseif ( $prefixLengthThree ==
'../' ) {
694 # Step A, remove leading "../"
696 } elseif ( ( $prefixLengthTwo ==
'/.' ) && ( $inputOffset + 2 == $inputLength ) ) {
697 # Step B, replace leading "/.$" with "/"
699 $urlPath[$inputOffset] =
'/';
700 } elseif ( $prefixLengthThree ==
'/./' ) {
701 # Step B, replace leading "/./" with "/"
703 } elseif ( $prefixLengthThree ==
'/..' && ( $inputOffset + 3 == $inputLength ) ) {
704 # Step C, replace leading "/..$" with "/" and
705 # remove last path component in output
707 $urlPath[$inputOffset] =
'/';
709 } elseif ( $prefixLengthFour ==
'/../' ) {
710 # Step C, replace leading "/../" with "/" and
711 # remove last path component in output
714 } elseif ( ( $prefixLengthOne ==
'.' ) && ( $inputOffset + 1 == $inputLength ) ) {
715 # Step D, remove "^.$"
717 } elseif ( ( $prefixLengthTwo ==
'..' ) && ( $inputOffset + 2 == $inputLength ) ) {
718 # Step D, remove "^..$"
721 # Step E, move leading path segment to output
722 if ( $prefixLengthOne ==
'/' ) {
723 $slashPos = strpos( $urlPath,
'/', $inputOffset + 1 );
725 $slashPos = strpos( $urlPath,
'/', $inputOffset );
727 if ( $slashPos ===
false ) {
728 $output .= substr( $urlPath, $inputOffset );
729 $inputOffset = $inputLength;
731 $output .= substr( $urlPath, $inputOffset, $slashPos - $inputOffset );
732 $inputOffset += $slashPos - $inputOffset;
737 $slashPos = strrpos(
$output,
'/' );
738 if ( $slashPos ===
false ) {
760 static $withProtRel = null, $withoutProtRel = null;
761 $cachedValue = $includeProtocolRelative ? $withProtRel : $withoutProtRel;
762 if ( !is_null( $cachedValue ) ) {
768 if ( is_array( $wgUrlProtocols ) ) {
770 foreach ( $wgUrlProtocols
as $protocol ) {
772 if ( $includeProtocolRelative || $protocol !==
'//' ) {
773 $protocols[] = preg_quote( $protocol,
'/' );
777 $retval = implode(
'|', $protocols );
787 if ( $includeProtocolRelative ) {
822 $wasRelative = substr( $url, 0, 2 ) ==
'//';
823 if ( $wasRelative ) {
826 MediaWiki\suppressWarnings();
827 $bits = parse_url( $url );
828 MediaWiki\restoreWarnings();
831 if ( !$bits || !isset( $bits[
'scheme'] ) ) {
836 $bits[
'scheme'] = strtolower( $bits[
'scheme'] );
839 if ( in_array( $bits[
'scheme'] .
'://', $wgUrlProtocols ) ) {
840 $bits[
'delimiter'] =
'://';
841 } elseif ( in_array( $bits[
'scheme'] .
':', $wgUrlProtocols ) ) {
842 $bits[
'delimiter'] =
':';
845 if ( isset( $bits[
'path'] ) ) {
846 $bits[
'host'] = $bits[
'path'];
854 if ( !isset( $bits[
'host'] ) ) {
858 if ( isset( $bits[
'path'] ) ) {
860 if ( substr( $bits[
'path'], 0, 1 ) !==
'/' ) {
861 $bits[
'path'] =
'/' . $bits[
'path'];
869 if ( $wasRelative ) {
870 $bits[
'scheme'] =
'';
871 $bits[
'delimiter'] =
'//';
887 return preg_replace_callback(
888 '/((?:%[89A-F][0-9A-F])+)/i',
889 'wfExpandIRI_callback',
914 if ( $bits[
'scheme'] ==
'mailto' ) {
915 $mailparts = explode(
'@', $bits[
'host'], 2 );
916 if ( count( $mailparts ) === 2 ) {
917 $domainpart = strtolower( implode(
'.', array_reverse( explode(
'.', $mailparts[1] ) ) ) );
922 $reversedHost = $domainpart .
'@' . $mailparts[0];
924 $reversedHost = strtolower( implode(
'.', array_reverse( explode(
'.', $bits[
'host'] ) ) ) );
928 if ( substr( $reversedHost, -1, 1 ) !==
'.' ) {
929 $reversedHost .=
'.';
932 $prot = $bits[
'scheme'];
933 $index = $prot . $bits[
'delimiter'] . $reversedHost;
935 if ( isset( $bits[
'port'] ) ) {
936 $index .=
':' . $bits[
'port'];
938 if ( isset( $bits[
'path'] ) ) {
939 $index .= $bits[
'path'];
943 if ( isset( $bits[
'query'] ) ) {
944 $index .=
'?' . $bits[
'query'];
946 if ( isset( $bits[
'fragment'] ) ) {
947 $index .=
'#' . $bits[
'fragment'];
951 return [
"http:$index",
"https:$index" ];
965 if ( is_array( $bits ) && isset( $bits[
'host'] ) ) {
966 $host =
'.' . $bits[
'host'];
967 foreach ( (
array)$domains
as $domain ) {
968 $domain =
'.' . $domain;
969 if ( substr( $host, -strlen( $domain ) ) === $domain ) {
1005 $text = trim( $text );
1007 if ( $wgDebugTimestamps ) {
1008 $context[
'seconds_elapsed'] = sprintf(
1010 microtime(
true ) - $wgRequestTime
1014 ( memory_get_usage(
true ) / ( 1024 * 1024 ) )
1018 if ( $wgDebugLogPrefix !==
'' ) {
1021 $context[
'private'] = ( $dest ===
false || $dest ===
'private' );
1023 $logger = LoggerFactory::getInstance(
'wfDebug' );
1036 # Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
1037 if ( ( isset( $_GET[
'action'] ) && $_GET[
'action'] ==
'raw' )
1039 isset( $_SERVER[
'SCRIPT_NAME'] )
1040 && substr( $_SERVER[
'SCRIPT_NAME'], -8 ) ==
'load.php'
1056 $mem = memory_get_usage();
1058 $mem = floor( $mem / 1024 ) .
' KiB';
1062 wfDebug(
"Memory usage: $mem\n" );
1093 $text = trim( $text );
1095 $logger = LoggerFactory::getInstance( $logGroup );
1096 $context[
'private'] = ( $dest ===
false || $dest ===
'private' );
1109 $logger = LoggerFactory::getInstance(
'wfLogDBError' );
1110 $logger->error( trim( $text ),
$context );
1140 function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
1153 function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING ) {
1172 $logger = LoggerFactory::getInstance(
'wfErrorLog' );
1174 $logger->info( trim( $text ),
$context );
1188 $profiler->logData();
1191 if ( $config->get(
'StatsdServer' ) ) {
1193 $statsdServer = explode(
':', $config->get(
'StatsdServer' ) );
1194 $statsdHost = $statsdServer[0];
1195 $statsdPort = isset( $statsdServer[1] ) ? $statsdServer[1] : 8125;
1196 $statsdSender =
new SocketSender( $statsdHost, $statsdPort );
1198 $statsdClient->send(
$context->getStats()->getBuffer() );
1199 }
catch ( Exception $ex ) {
1204 # Profiling must actually be enabled...
1209 if ( isset( $wgDebugLogGroups[
'profileoutput'] )
1210 && $wgDebugLogGroups[
'profileoutput'] ===
false
1219 $ctx = [
'elapsed' =>
$request->getElapsedTime() ];
1220 if ( !empty( $_SERVER[
'HTTP_X_FORWARDED_FOR'] ) ) {
1221 $ctx[
'forwarded_for'] = $_SERVER[
'HTTP_X_FORWARDED_FOR'];
1223 if ( !empty( $_SERVER[
'HTTP_CLIENT_IP'] ) ) {
1224 $ctx[
'client_ip'] = $_SERVER[
'HTTP_CLIENT_IP'];
1226 if ( !empty( $_SERVER[
'HTTP_FROM'] ) ) {
1227 $ctx[
'from'] = $_SERVER[
'HTTP_FROM'];
1229 if ( isset( $ctx[
'forwarded_for'] ) ||
1230 isset( $ctx[
'client_ip'] ) ||
1231 isset( $ctx[
'from'] ) ) {
1232 $ctx[
'proxy'] = $_SERVER[
'REMOTE_ADDR'];
1239 $ctx[
'anon'] =
$user->isItemLoaded(
'id' ) &&
$user->isAnon();
1244 $ctx[
'url'] = urldecode(
$request->getRequestURL() );
1245 }
catch ( Exception $ignored ) {
1249 $ctx[
'output'] = $profiler->getOutput();
1251 $log = LoggerFactory::getInstance(
'profileoutput' );
1252 $log->info(
"Elapsed: {elapsed}; URL: <{url}>\n{output}", $ctx );
1264 $stats->updateCount( $key,
$count );
1286 if ( $readOnly !==
false ) {
1290 static $lbReadOnly = null;
1291 if ( $lbReadOnly === null ) {
1294 $lbReadOnly =
wfGetLB()->getReadOnlyReason();
1309 if ( $wgReadOnly === null ) {
1311 if ( is_file( $wgReadOnlyFile ) && filesize( $wgReadOnlyFile ) > 0 ) {
1312 $wgReadOnly = file_get_contents( $wgReadOnlyFile );
1314 $wgReadOnly =
false;
1337 # Identify which language to get or create a language object for.
1338 # Using is_object here due to Stub objects.
1339 if ( is_object( $langcode ) ) {
1340 # Great, we already have the object (hopefully)!
1345 if ( $langcode ===
true || $langcode === $wgLanguageCode ) {
1346 # $langcode is the language code of the wikis content language object.
1347 # or it is a boolean and value is true
1352 if ( $langcode ===
false || $langcode === $wgLang->getCode() ) {
1353 # $langcode is the language code of user language object.
1354 # or it was a boolean and value is false
1359 if ( in_array( $langcode, $validCodes ) ) {
1360 # $langcode corresponds to a valid language.
1364 # $langcode is a string, but not a valid language code; use content language.
1365 wfDebug(
"Invalid language code passed to wfGetLangObj, falling back to content language.\n" );
1407 $args = func_get_args();
1408 return call_user_func_array(
'Message::newFallbackSequence',
$args );
1420 # Fix windows line-endings
1421 # Some messages are split with explode("\n", $msg)
1422 $message = str_replace(
"\r",
'', $message );
1426 if ( is_array(
$args[0] ) ) {
1429 $replacementKeys = [];
1430 foreach (
$args as $n => $param ) {
1431 $replacementKeys[
'$' . ( $n + 1 )] = $param;
1433 $message = strtr( $message, $replacementKeys );
1448 if ( is_null( $host ) ) {
1450 # Hostname overriding
1452 if ( $wgOverrideHostname !==
false ) {
1453 # Set static and skip any detection
1458 if ( function_exists(
'posix_uname' ) ) {
1460 $uname = posix_uname();
1464 if ( is_array( $uname ) && isset( $uname[
'nodename'] ) ) {
1465 $host = $uname[
'nodename'];
1466 } elseif ( getenv(
'COMPUTERNAME' ) ) {
1467 # Windows computer name
1468 $host = getenv(
'COMPUTERNAME' );
1470 # This may be a virtual server.
1471 $host = $_SERVER[
'SERVER_NAME'];
1489 $responseTime = round( ( microtime(
true ) - $wgRequestTime ) * 1000 );
1490 $reportVars = [
'wgBackendResponseTime' => $responseTime ];
1491 if ( $wgShowHostnames ) {
1508 static $disabled = null;
1510 if ( is_null( $disabled ) ) {
1511 $disabled = !function_exists(
'debug_backtrace' );
1513 wfDebug(
"debug_backtrace() is disabled\n" );
1521 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT,
$limit + 1 ), 1 );
1523 return array_slice( debug_backtrace(), 1 );
1538 if ( $raw === null ) {
1543 $frameFormat =
"%s line %s calls %s()\n";
1544 $traceFormat =
"%s";
1546 $frameFormat =
"<li>%s line %s calls %s()</li>\n";
1547 $traceFormat =
"<ul>\n%s</ul>\n";
1550 $frames = array_map(
function ( $frame )
use ( $frameFormat ) {
1551 $file = !empty( $frame[
'file'] ) ? basename( $frame[
'file'] ) :
'-';
1552 $line = isset( $frame[
'line'] ) ? $frame[
'line'] :
'-';
1553 $call = $frame[
'function'];
1554 if ( !empty( $frame[
'class'] ) ) {
1555 $call = $frame[
'class'] . $frame[
'type'] . $call;
1557 return sprintf( $frameFormat, $file,
$line, $call );
1560 return sprintf( $traceFormat, implode(
'', $frames ) );
1574 if ( isset( $backtrace[$level] ) ) {
1591 $limit = count( $trace ) - 1;
1594 return implode(
'/', array_map(
'wfFormatStackFrame', $trace ) );
1604 if ( !isset( $frame[
'function'] ) ) {
1605 return 'NO_FUNCTION_GIVEN';
1607 return isset( $frame[
'class'] ) && isset( $frame[
'type'] ) ?
1608 $frame[
'class'] . $frame[
'type'] . $frame[
'function'] :
1622 return wfMessage(
'showingresults' )->numParams(
$limit, $offset + 1 )->parse();
1634 if (
$result === null || $force ) {
1636 if ( isset( $_SERVER[
'HTTP_ACCEPT_ENCODING'] ) ) {
1637 # @todo FIXME: We may want to blacklist some broken browsers
1640 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1641 $_SERVER[
'HTTP_ACCEPT_ENCODING'],
1645 if ( isset( $m[2] ) && ( $m[1] ==
'q' ) && ( $m[2] == 0 ) ) {
1649 wfDebug(
"wfClientAcceptsGzip: client accepts gzip.\n" );
1667 static $repl = null, $repl2 = null;
1668 if ( $repl === null ) {
1670 '"' =>
'"',
'&' =>
'&',
"'" =>
''',
'<' =>
'<',
1671 '=' =>
'=',
'>' =>
'>',
'[' =>
'[',
']' =>
']',
1672 '{' =>
'{',
'|' =>
'|',
'}' =>
'}',
';' =>
';',
1673 "\n#" =>
"\n#",
"\r#" =>
"\r#",
1674 "\n*" =>
"\n*",
"\r*" =>
"\r*",
1675 "\n:" =>
"\n:",
"\r:" =>
"\r:",
1676 "\n " =>
"\n ",
"\r " =>
"\r ",
1677 "\n\n" =>
"\n ",
"\r\n" =>
" \n",
1678 "\n\r" =>
"\n ",
"\r\r" =>
"\r ",
1679 "\n\t" =>
"\n	",
"\r\t" =>
"\r	",
1680 "\n----" =>
"\n----",
"\r----" =>
"\r----",
1681 '__' =>
'__',
'://' =>
'://',
1685 foreach ( [
'ISBN',
'RFC',
'PMID' ]
as $magic ) {
1686 $repl[
"$magic "] =
"$magic ";
1687 $repl[
"$magic\t"] =
"$magic	";
1688 $repl[
"$magic\r"] =
"$magic ";
1689 $repl[
"$magic\n"] =
"$magic ";
1690 $repl[
"$magic\f"] =
"$magic";
1696 foreach ( $wgUrlProtocols
as $prot ) {
1697 if ( substr( $prot, -1 ) ===
':' ) {
1698 $repl2[] = preg_quote( substr( $prot, 0, -1 ),
'/' );
1701 $repl2 = $repl2 ?
'/\b(' . implode(
'|', $repl2 ) .
'):/i' :
'/^(?!)/';
1703 $text = substr( strtr(
"\n$text", $repl ), 1 );
1704 $text = preg_replace( $repl2,
'$1:', $text );
1720 if ( !is_null(
$source ) || $force ) {
1736 $temp = (bool)( $dest & $bit );
1737 if ( !is_null( $state ) ) {
1755 $s = str_replace(
"\n",
"<br />\n", var_export( $var,
true ) .
"\n" );
1756 if ( headers_sent() || !isset( $wgOut ) || !is_object( $wgOut ) ) {
1759 $wgOut->addHTML(
$s );
1775 $wgOut->sendCacheControl();
1778 header(
'Content-type: text/html; charset=utf-8' );
1779 print '<!DOCTYPE html>' .
1780 '<html><head><title>' .
1781 htmlspecialchars( $label ) .
1782 '</title></head><body><h1>' .
1783 htmlspecialchars( $label ) .
1785 nl2br( htmlspecialchars( $desc ) ) .
1786 "</p></body></html>\n";
1807 if ( $resetGzipEncoding ) {
1811 $wgDisableOutputCompression =
true;
1813 while (
$status = ob_get_status() ) {
1814 if ( isset(
$status[
'flags'] ) ) {
1815 $flags = PHP_OUTPUT_HANDLER_CLEANABLE | PHP_OUTPUT_HANDLER_REMOVABLE;
1817 } elseif ( isset(
$status[
'del'] ) ) {
1821 $deleteable =
$status[
'type'] !== 0;
1823 if ( !$deleteable ) {
1828 if (
$status[
'name'] ===
'MediaWikiTestCase::wfResetOutputBuffersBarrier' ) {
1832 if ( !ob_end_clean() ) {
1837 if ( $resetGzipEncoding ) {
1838 if (
$status[
'name'] ==
'ob_gzhandler' ) {
1841 header_remove(
'Content-Encoding' );
1873 # No arg means accept anything (per HTTP spec)
1875 return [ $def => 1.0 ];
1880 $parts = explode(
',', $accept );
1882 foreach ( $parts
as $part ) {
1883 # @todo FIXME: Doesn't deal with params like 'text/html; level=1'
1884 $values = explode(
';', trim( $part ) );
1886 if ( count( $values ) == 1 ) {
1887 $prefs[$values[0]] = 1.0;
1888 } elseif ( preg_match(
'/q\s*=\s*(\d*\.\d+)/', $values[1], $match ) ) {
1889 $prefs[$values[0]] = floatval( $match[1] );
1909 if ( array_key_exists(
$type, $avail ) ) {
1912 $mainType = explode(
'/',
$type )[0];
1913 if ( array_key_exists(
"$mainType/*", $avail ) ) {
1914 return "$mainType/*";
1915 } elseif ( array_key_exists(
'*/*', $avail ) ) {
1939 foreach ( array_keys( $sprefs )
as $type ) {
1940 $subType = explode(
'/', $type )[1];
1941 if ( $subType !=
'*' ) {
1944 $combine[
$type] = $sprefs[
$type] * $cprefs[$ckey];
1949 foreach ( array_keys( $cprefs )
as $type ) {
1950 $subType = explode(
'/', $type )[1];
1951 if ( $subType !=
'*' && !array_key_exists( $type, $sprefs ) ) {
1954 $combine[
$type] = $sprefs[$skey] * $cprefs[
$type];
1962 foreach ( array_keys( $combine )
as $type ) {
1963 if ( $combine[$type] > $bestq ) {
1965 $bestq = $combine[
$type];
1979 MediaWiki\suppressWarnings( $end );
1987 MediaWiki\suppressWarnings(
true );
1990 # Autodetect, convert and provide timestamps of various types
1995 define(
'TS_UNIX', 0 );
2000 define(
'TS_MW', 1 );
2005 define(
'TS_DB', 2 );
2010 define(
'TS_RFC2822', 3 );
2017 define(
'TS_ISO_8601', 4 );
2026 define(
'TS_EXIF', 5 );
2031 define(
'TS_ORACLE', 6 );
2036 define(
'TS_POSTGRES', 7 );
2041 define(
'TS_ISO_8601_BASIC', 9 );
2054 return $timestamp->getTimestamp( $outputtype );
2056 wfDebug(
"wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts\n" );
2070 if ( is_null( $ts ) ) {
2093 static $isWindows = null;
2094 if ( $isWindows === null ) {
2095 $isWindows = strtoupper( substr( PHP_OS, 0, 3 ) ) ===
'WIN';
2106 return defined(
'HHVM_VERSION' );
2123 if ( $wgTmpDirectory !==
false ) {
2127 $tmpDir = array_map(
"getenv", [
'TMPDIR',
'TMP',
'TEMP' ] );
2128 $tmpDir[] = sys_get_temp_dir();
2129 $tmpDir[] = ini_get(
'upload_tmp_dir' );
2131 foreach ( $tmpDir
as $tmp ) {
2132 if ( $tmp && file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
2145 $tmp = sys_get_temp_dir() . DIRECTORY_SEPARATOR .
'mwtmp' .
'-' . get_current_user();
2146 if ( !file_exists( $tmp ) ) {
2149 if ( file_exists( $tmp ) && is_dir( $tmp ) && is_writable( $tmp ) ) {
2154 throw new MWException(
'No writable temporary directory could be found. ' .
2155 'Please set $wgTmpDirectory to a writable directory.' );
2171 throw new MWException( __FUNCTION__ .
" given storage path '$dir'." );
2174 if ( !is_null( $caller ) ) {
2175 wfDebug(
"$caller: called wfMkdirParents($dir)\n" );
2178 if ( strval(
$dir ) ===
'' || is_dir(
$dir ) ) {
2182 $dir = str_replace( [
'\\',
'/' ], DIRECTORY_SEPARATOR,
$dir );
2184 if ( is_null( $mode ) ) {
2189 MediaWiki\suppressWarnings();
2190 $ok = mkdir(
$dir, $mode,
true );
2191 MediaWiki\restoreWarnings();
2195 if ( is_dir(
$dir ) ) {
2211 wfDebug( __FUNCTION__ .
"( $dir )\n" );
2213 if ( is_dir(
$dir ) ) {
2214 $objects = scandir(
$dir );
2215 foreach ( $objects
as $object ) {
2216 if ( $object !=
"." && $object !=
".." ) {
2217 if ( filetype(
$dir .
'/' . $object ) ==
"dir" ) {
2220 unlink(
$dir .
'/' . $object );
2236 $ret = sprintf(
"%.${acc}f", $nr );
2237 return $round ? round(
$ret, $acc ) .
'%' :
"$ret%";
2264 $val = strtolower( ini_get( $setting ) );
2269 || preg_match(
"/^\s*[+-]?0*[1-9]/", $val );
2286 $args = func_get_args();
2287 if ( count(
$args ) === 1 && is_array( reset(
$args ) ) ) {
2312 $tokens = preg_split(
'/(\\\\*")/', $arg, -1, PREG_SPLIT_DELIM_CAPTURE );
2316 if ( $iteration % 2 == 1 ) {
2318 $arg .= str_replace(
'\\',
'\\\\', substr( $token, 0, -1 ) ) .
'\\"';
2319 } elseif ( $iteration % 4 == 2 ) {
2321 $arg .= str_replace(
'^',
'^^', $token );
2331 if ( preg_match(
'/^(.*?)(\\\\+)$/', $arg, $m ) ) {
2332 $arg = $m[1] . str_replace(
'\\',
'\\\\', $m[2] );
2336 $retVal .=
'"' . $arg .
'"';
2338 $retVal .= escapeshellarg( $arg );
2351 static $disabled = null;
2352 if ( is_null( $disabled ) ) {
2353 if ( !function_exists(
'proc_open' ) ) {
2354 wfDebug(
"proc_open() is disabled\n" );
2355 $disabled =
'disabled';
2394 return 'Unable to run external programs, proc_open() is disabled.';
2397 $includeStderr = isset(
$options[
'duplicateStderr'] ) &&
$options[
'duplicateStderr'];
2403 foreach ( $environ
as $k => $v ) {
2411 $envcmd .=
"set $k=" . preg_replace(
'/([&|()<>^"])/',
'^\\1', $v ) .
'&& ';
2416 $envcmd .=
"$k=" . escapeshellarg( $v ) .
' ';
2419 if ( is_array( $cmd ) ) {
2423 $cmd = $envcmd . $cmd;
2425 $useLogPipe =
false;
2426 if ( is_executable(
'/bin/bash' ) ) {
2427 $time = intval( isset( $limits[
'time'] ) ? $limits[
'time'] : $wgMaxShellTime );
2428 if ( isset( $limits[
'walltime'] ) ) {
2429 $wallTime = intval( $limits[
'walltime'] );
2430 } elseif ( isset( $limits[
'time'] ) ) {
2433 $wallTime = intval( $wgMaxShellWallClockTime );
2435 $mem = intval( isset( $limits[
'memory'] ) ? $limits[
'memory'] : $wgMaxShellMemory );
2436 $filesize = intval( isset( $limits[
'filesize'] ) ? $limits[
'filesize'] : $wgMaxShellFileSize );
2438 if (
$time > 0 || $mem > 0 || $filesize > 0 || $wallTime > 0 ) {
2439 $cmd =
'/bin/bash ' . escapeshellarg(
"$IP/includes/limit.sh" ) .
' ' .
2440 escapeshellarg( $cmd ) .
' ' .
2442 "MW_INCLUDE_STDERR=" . ( $includeStderr ?
'1' :
'' ) .
';' .
2443 "MW_CPU_LIMIT=$time; " .
2444 'MW_CGROUP=' . escapeshellarg( $wgShellCgroup ) .
'; ' .
2445 "MW_MEM_LIMIT=$mem; " .
2446 "MW_FILE_SIZE_LIMIT=$filesize; " .
2447 "MW_WALL_CLOCK_LIMIT=$wallTime; " .
2448 "MW_USE_LOG_PIPE=yes"
2451 } elseif ( $includeStderr ) {
2454 } elseif ( $includeStderr ) {
2457 wfDebug(
"wfShellExec: $cmd\n" );
2464 throw new Exception( __METHOD__ .
2465 '(): total length of $cmd must not exceed SHELL_MAX_ARG_STRLEN' );
2469 0 => [
'file',
'php://stdin',
'r' ],
2470 1 => [
'pipe',
'w' ],
2471 2 => [
'file',
'php://stderr',
'w' ] ];
2472 if ( $useLogPipe ) {
2473 $desc[3] = [
'pipe',
'w' ];
2476 $scoped =
Profiler::instance()->scopedProfileIn( __FUNCTION__ .
'-' . $profileMethod );
2477 $proc = proc_open( $cmd, $desc, $pipes );
2479 wfDebugLog(
'exec',
"proc_open() failed: $cmd" );
2483 $outBuffer = $logBuffer =
'';
2499 $eintr = defined(
'SOCKET_EINTR' ) ? SOCKET_EINTR : 4;
2500 $eintrMessage =
"stream_select(): unable to select [$eintr]";
2506 while ( $running ===
true || $numReadyPipes !== 0 ) {
2508 $status = proc_get_status( $proc );
2517 $readyPipes = $pipes;
2521 @trigger_error(
'' );
2522 $numReadyPipes = @stream_select( $readyPipes, $emptyArray, $emptyArray, $timeout );
2523 if ( $numReadyPipes ===
false ) {
2525 $error = error_get_last();
2526 if ( strncmp( $error[
'message'], $eintrMessage, strlen( $eintrMessage ) ) == 0 ) {
2529 trigger_error( $error[
'message'], E_USER_WARNING );
2530 $logMsg = $error[
'message'];
2534 foreach ( $readyPipes
as $fd => $pipe ) {
2535 $block = fread( $pipe, 65536 );
2536 if ( $block ===
'' ) {
2538 fclose( $pipes[$fd] );
2539 unset( $pipes[$fd] );
2543 } elseif ( $block ===
false ) {
2545 $logMsg =
"Error reading from pipe";
2547 } elseif ( $fd == 1 ) {
2549 $outBuffer .= $block;
2550 } elseif ( $fd == 3 ) {
2552 $logBuffer .= $block;
2553 if ( strpos( $block,
"\n" ) !==
false ) {
2554 $lines = explode(
"\n", $logBuffer );
2555 $logBuffer = array_pop(
$lines );
2564 foreach ( $pipes
as $pipe ) {
2571 $status = proc_get_status( $proc );
2574 if ( $logMsg !==
false ) {
2577 proc_close( $proc );
2578 } elseif (
$status[
'signaled'] ) {
2579 $logMsg =
"Exited with signal {$status['termsig']}";
2581 proc_close( $proc );
2584 $retval = proc_close( $proc );
2587 proc_close( $proc );
2590 $logMsg =
"Possibly missing executable file";
2592 $logMsg =
"Probably exited with signal " . (
$retval - 128 );
2596 if ( $logMsg !==
false ) {
2621 [
'duplicateStderr' =>
true,
'profileMethod' =>
wfGetCaller() ] );
2629 static $done =
false;
2635 putenv(
"LC_CTYPE=$wgShellLocale" );
2636 setlocale( LC_CTYPE, $wgShellLocale );
2657 if ( isset(
$options[
'wrapper'] ) ) {
2678 # This check may also protect against code injection in
2679 # case of broken installations.
2680 MediaWiki\suppressWarnings();
2681 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
2682 MediaWiki\restoreWarnings();
2684 if ( !$haveDiff3 ) {
2685 wfDebug(
"diff3 not found\n" );
2689 # Make temporary files
2691 $oldtextFile = fopen( $oldtextName = tempnam( $td,
'merge-old-' ),
'w' );
2692 $mytextFile = fopen( $mytextName = tempnam( $td,
'merge-mine-' ),
'w' );
2693 $yourtextFile = fopen( $yourtextName = tempnam( $td,
'merge-your-' ),
'w' );
2695 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
2696 # a newline character. To avoid this, we normalize the trailing whitespace before
2697 # creating the diff.
2699 fwrite( $oldtextFile, rtrim( $old ) .
"\n" );
2700 fclose( $oldtextFile );
2701 fwrite( $mytextFile, rtrim( $mine ) .
"\n" );
2702 fclose( $mytextFile );
2703 fwrite( $yourtextFile, rtrim( $yours ) .
"\n" );
2704 fclose( $yourtextFile );
2706 # Check for a conflict
2708 $oldtextName, $yourtextName );
2709 $handle = popen( $cmd,
'r' );
2711 if ( fgets( $handle, 1024 ) ) {
2720 $oldtextName, $yourtextName );
2721 $handle = popen( $cmd,
'r' );
2724 $data = fread( $handle, 8192 );
2725 if ( strlen( $data ) == 0 ) {
2731 unlink( $mytextName );
2732 unlink( $oldtextName );
2733 unlink( $yourtextName );
2735 if (
$result ===
'' && $old !==
'' && !$conflict ) {
2736 wfDebug(
"Unexpected null result from diff3. Command: $cmd\n" );
2754 if ( $before == $after ) {
2759 MediaWiki\suppressWarnings();
2760 $haveDiff = $wgDiff && file_exists( $wgDiff );
2761 MediaWiki\restoreWarnings();
2763 # This check may also protect against code injection in
2764 # case of broken installations.
2766 wfDebug(
"diff executable not found\n" );
2767 $diffs =
new Diff( explode(
"\n", $before ), explode(
"\n", $after ) );
2769 return $format->format( $diffs );
2772 # Make temporary files
2774 $oldtextFile = fopen( $oldtextName = tempnam( $td,
'merge-old-' ),
'w' );
2775 $newtextFile = fopen( $newtextName = tempnam( $td,
'merge-your-' ),
'w' );
2777 fwrite( $oldtextFile, $before );
2778 fclose( $oldtextFile );
2779 fwrite( $newtextFile, $after );
2780 fclose( $newtextFile );
2785 $h = popen( $cmd,
'r' );
2787 unlink( $oldtextName );
2788 unlink( $newtextName );
2789 throw new Exception( __METHOD__ .
'(): popen() failed' );
2795 $data = fread( $h, 8192 );
2796 if ( strlen( $data ) == 0 ) {
2804 unlink( $oldtextName );
2805 unlink( $newtextName );
2808 $diff_lines = explode(
"\n", $diff );
2809 if ( isset( $diff_lines[0] ) && strpos( $diff_lines[0],
'---' ) === 0 ) {
2810 unset( $diff_lines[0] );
2812 if ( isset( $diff_lines[1] ) && strpos( $diff_lines[1],
'+++' ) === 0 ) {
2813 unset( $diff_lines[1] );
2816 $diff = implode(
"\n", $diff_lines );
2837 $php_ver = PHP_VERSION;
2839 if ( version_compare( $php_ver, (
string)$req_ver,
'<' ) ) {
2840 throw new MWException(
"PHP $req_ver required--this is only $php_ver" );
2869 if ( version_compare( $wgVersion, (
string)$req_ver,
'<' ) ) {
2870 throw new MWException(
"MediaWiki $req_ver required--this is only $wgVersion" );
2887 if ( $suffix ==
'' ) {
2890 $encSuffix =
'(?:' . preg_quote( $suffix,
'#' ) .
')?';
2894 if ( preg_match(
"#([^/\\\\]*?){$encSuffix}[/\\\\]*$#",
$path,
$matches ) ) {
2912 $path = str_replace(
'/', DIRECTORY_SEPARATOR,
$path );
2913 $from = str_replace(
'/', DIRECTORY_SEPARATOR,
$from );
2919 $pieces = explode( DIRECTORY_SEPARATOR, dirname(
$path ) );
2920 $against = explode( DIRECTORY_SEPARATOR,
$from );
2922 if ( $pieces[0] !== $against[0] ) {
2929 while ( count( $pieces ) && count( $against )
2930 && $pieces[0] == $against[0] ) {
2931 array_shift( $pieces );
2932 array_shift( $against );
2936 while ( count( $against ) ) {
2937 array_unshift( $pieces,
'..' );
2938 array_shift( $against );
2943 return implode( DIRECTORY_SEPARATOR, $pieces );
2964 $lowercase =
true, $engine =
'auto'
2966 return Wikimedia\base_convert( $input, $sourceBase, $destBase, $pad, $lowercase, $engine );
2985 $session = SessionManager::getGlobalSession();
2986 $delay = $session->delaySave();
2988 $session->resetId();
2992 if ( session_id() !== $session->getId() ) {
3012 session_id( $sessionId );
3015 $session = SessionManager::getGlobalSession();
3016 $session->persist();
3018 if ( session_id() !== $session->getId() ) {
3019 session_id( $session->getId() );
3021 MediaWiki\quietCall(
'session_start' );
3033 $file =
"$IP/serialized/$name";
3034 if ( file_exists( $file ) ) {
3035 $blob = file_get_contents( $file );
3050 return call_user_func_array(
3067 $args = array_slice( func_get_args(), 2 );
3068 $keyspace = $prefix ?
"$db-$prefix" : $db;
3069 return call_user_func_array(
3071 [ $keyspace,
$args ]
3087 return call_user_func_array(
3101 if ( $wgDBprefix ) {
3102 return "$wgDBname-$wgDBprefix";
3116 $bits = explode(
'-', $wiki, 2 );
3117 if ( count( $bits ) < 2 ) {
3148 function wfGetDB( $db, $groups = [], $wiki =
false ) {
3149 return wfGetLB( $wiki )->getConnection( $db, $groups, $wiki );
3162 if ( $wiki ===
false ) {
3163 return \MediaWiki\MediaWikiServices::getInstance()->getDBLoadBalancer();
3165 $factory = \MediaWiki\MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
3166 return $factory->getMainLB( $wiki );
3178 return \MediaWiki\MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
3228 if ( $script ===
'index' ) {
3230 } elseif ( $script ===
'load' ) {
3233 return "{$wgScriptPath}/{$script}.php";
3243 if ( isset( $_SERVER[
'SCRIPT_NAME'] ) ) {
3254 return $_SERVER[
'SCRIPT_NAME'];
3256 return $_SERVER[
'URL'];
3268 return $value ?
'true' :
'false';
3303 $ifWritesSince = null, $wiki =
false, $cluster =
false, $timeout = null
3305 if ( $timeout === null ) {
3306 $timeout = ( PHP_SAPI ===
'cli' ) ? 86400 : 10;
3309 if ( $cluster ===
'*' ) {
3312 } elseif ( $wiki ===
false ) {
3319 'cluster' => $cluster,
3320 'timeout' => $timeout,
3322 'ifWritesSince' => ( $ifWritesSince > 1e9 ) ? $ifWritesSince : null
3339 for ( $i = $seconds; $i >= 0; $i-- ) {
3340 if ( $i != $seconds ) {
3341 echo str_repeat(
"\x08", strlen( $i + 1 ) );
3362 $illegalFileChars = $wgIllegalFileChars ?
"|[" . $wgIllegalFileChars .
"]" :
'';
3363 $name = preg_replace(
3381 if ( $memlimit != -1 ) {
3383 if ( $conflimit == -1 ) {
3384 wfDebug(
"Removing PHP's memory limit\n" );
3385 MediaWiki\suppressWarnings();
3386 ini_set(
'memory_limit', $conflimit );
3387 MediaWiki\restoreWarnings();
3389 } elseif ( $conflimit > $memlimit ) {
3390 wfDebug(
"Raising PHP's memory limit to $conflimit bytes\n" );
3391 MediaWiki\suppressWarnings();
3392 ini_set(
'memory_limit', $conflimit );
3393 MediaWiki\restoreWarnings();
3409 $timeLimit = ini_get(
'max_execution_time' );
3411 if ( $timeLimit > 0 && $wgTransactionalTimeLimit > $timeLimit ) {
3412 set_time_limit( $wgTransactionalTimeLimit );
3415 ignore_user_abort(
true );
3428 $string = trim( $string );
3429 if ( $string ===
'' ) {
3432 $last = $string[strlen( $string ) - 1];
3433 $val = intval( $string );
3459 $codeSegment = explode(
'-',
$code );
3461 foreach ( $codeSegment
as $segNo => $seg ) {
3463 if ( $segNo > 0 && strtolower( $codeSegment[( $segNo - 1 )] ) ==
'x' ) {
3464 $codeBCP[$segNo] = strtolower( $seg );
3466 } elseif ( ( strlen( $seg ) == 2 ) && ( $segNo > 0 ) ) {
3467 $codeBCP[$segNo] = strtoupper( $seg );
3469 } elseif ( ( strlen( $seg ) == 4 ) && ( $segNo > 0 ) ) {
3470 $codeBCP[$segNo] = ucfirst( strtolower( $seg ) );
3473 $codeBCP[$segNo] = strtolower( $seg );
3476 $langCode = implode(
'-', $codeBCP );
3549 if ( $length !==
false ) {
3550 $realLen = strlen( $data );
3551 if ( $realLen < $length ) {
3552 throw new MWException(
"Tried to use wfUnpack on a "
3553 .
"string of length $realLen, but needed one "
3554 .
"of at least length $length."
3559 MediaWiki\suppressWarnings();
3560 $result = unpack( $format, $data );
3561 MediaWiki\restoreWarnings();
3565 throw new MWException(
"unpack could not unpack binary data" );
3585 # Handle redirects; callers almost always hit wfFindFile() anyway,
3586 # so just use that method because it has a fast process cache.
3588 $name = $file ? $file->getTitle()->getDBkey() :
$name;
3590 # Run the extension hook
3597 $key =
wfMemcKey(
'bad-image-list', ( $blacklist === null ) ?
'default' : md5( $blacklist ) );
3598 $badImages =
$cache->get( $key );
3600 if ( $badImages ===
false ) {
3601 if ( $blacklist === null ) {
3602 $blacklist =
wfMessage(
'bad_image_list' )->inContentLanguage()->plain();
3604 # Build the list now
3606 $lines = explode(
"\n", $blacklist );
3609 if ( substr( $line, 0, 1 ) !==
'*' ) {
3615 if ( !preg_match_all(
'/\[\[:?(.*?)\]\]/', $line, $m ) ) {
3620 $imageDBkey =
false;
3621 foreach ( $m[1]
as $i => $titleText ) {
3623 if ( !is_null(
$title ) ) {
3625 $imageDBkey =
$title->getDBkey();
3627 $exceptions[
$title->getPrefixedDBkey()] =
true;
3632 if ( $imageDBkey !==
false ) {
3633 $badImages[$imageDBkey] = $exceptions;
3636 $cache->set( $key, $badImages, 60 );
3639 $contextKey = $contextTitle ? $contextTitle->getPrefixedDBkey() :
false;
3640 $bad = isset( $badImages[
$name] ) && !isset( $badImages[$name][$contextKey] );
3654 Hooks::run(
'CanIPUseHTTPS', [ $ip, &$canDo ] );
3666 $infinityValues = [
'infinite',
'indefinite',
'infinity',
'never' ];
3667 return in_array( $str, $infinityValues );
3687 $multipliers = [ 1 ];
3688 if ( $wgResponsiveImages ) {
3691 $multipliers[] = 1.5;
3696 if ( !
$handler || !isset( $params[
'width'] ) ) {
3701 if ( isset( $params[
'page'] ) ) {
3702 $basicParams[
'page'] = $params[
'page'];
3708 foreach ( $multipliers
as $multiplier ) {
3709 $thumbLimits = array_merge( $thumbLimits, array_map(
3710 function ( $width )
use ( $multiplier ) {
3711 return round( $width * $multiplier );
3714 $imageLimits = array_merge( $imageLimits, array_map(
3715 function ( $pair )
use ( $multiplier ) {
3717 round( $pair[0] * $multiplier ),
3718 round( $pair[1] * $multiplier ),
3725 if ( in_array( $params[
'width'], $thumbLimits ) ) {
3726 $normalParams = $basicParams + [
'width' => $params[
'width'] ];
3728 $handler->normaliseParams( $file, $normalParams );
3732 foreach ( $imageLimits
as $pair ) {
3733 $normalParams = $basicParams + [
'width' => $pair[0],
'height' => $pair[1] ];
3736 $handler->normaliseParams( $file, $normalParams );
3738 if ( $normalParams[
'width'] == $params[
'width'] ) {
3749 foreach ( $params
as $key =>
$value ) {
3750 if ( !isset( $normalParams[$key] ) || $normalParams[$key] !=
$value ) {
3772 foreach ( $baseArray
as $name => &$groupVal ) {
3773 if ( isset( $newValues[
$name] ) ) {
3774 $groupVal += $newValues[
$name];
3778 $baseArray += $newValues;
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
$wgDebugTimestamps
Prefix debug messages with relative timestamp.
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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 $out
wfPercent($nr, $acc=2, $round=true)
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
wfWaitForSlaves($ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the slaves to catch up to the master position.
wfCanIPUseHTTPS($ip)
Determine whether the client at a given source IP is likely to be able to access the wiki via HTTPS...
$wgScript
The URL path to index.php.
A statsd client that applies the sampling rate to the data items before sending them.
$wgVersion
MediaWiki version number.
wfScript($script= 'index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
static warning($msg, $callerOffset=1, $level=E_USER_NOTICE, $log= 'auto')
Adds a warning entry to the log.
wfIsHHVM()
Check if we are running under HHVM.
wfForeignMemcKey($db, $prefix)
Make a cache key for a foreign DB.
$wgShellCgroup
Under Linux: a cgroup directory used to constrain memory usage of shell commands. ...
$wgDebugLogGroups
Map of string log group names to log destinations.
wfShorthandToInteger($string= '', $default=-1)
Converts shorthand byte notation to integer form.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfMkdirParents($dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
wfDebugMem($exact=false)
Send a line giving PHP memory usage.
The Message class provides methods which fulfil two basic services:
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
static instance()
Singleton.
static header($code)
Output an HTTP status code header.
$wgMaxShellFileSize
Maximum file size created by shell processes under linux, in KB ImageMagick convert for example can b...
$wgInternalServer
Internal server name as known to CDN, if different.
wfHostname()
Fetch server name for use in error reporting etc.
mimeTypeMatch($type, $avail)
Checks if a given MIME type matches any of the keys in the given array.
$wgMaxShellMemory
Maximum amount of virtual memory available to shell processes under linux, in KB. ...
static getInstance($id)
Get a cached instance of the specified type of cache object.
wfRelativePath($path, $from)
Generate a relative path name to the given file.
wfFormatStackFrame($frame)
Return a string representation of frame.
$wgHttpsPort
Port where you have HTTPS running Supports HTTPS on non-standard ports.
$wgOverrideHostname
Override server hostname detection with a hardcoded value.
wfDebugBacktrace($limit=0)
Safety wrapper for debug_backtrace().
wfRunHooks($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in $wgHooks.
wfBacktrace($raw=null)
Get a debug backtrace as a string.
wfLogDBError($text, array $context=[])
Log for database errors.
wfHttpError($code, $label, $desc)
Provide a simple HTTP error.
wfAppendToArrayIfNotDefault($key, $value, $default, &$changed)
Appends to second array if $value differs from that in $default.
wfMessageFallback()
This function accepts multiple message keys and returns a message instance for the first message whic...
Stub profiler that does nothing.
wfMakeUrlIndexes($url)
Make URL indexes, appropriate for the el_index field of externallinks.
static getLocalClusterInstance()
Get the main cluster-local cache object.
wfUrlProtocolsWithoutProtRel()
Like wfUrlProtocols(), but excludes '//' from the protocol list.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
$wgDisableOutputCompression
Disable output compression (enabled by default if zlib is available)
wfIsBadImage($name, $contextTitle=false, $blacklist=null)
Determine if an image exists on the 'bad image list'.
wfObjectToArray($objOrArray, $recursive=true)
Recursively converts the parameter (an object) to an array with the same data.
wfLoadExtension($ext, $path=null)
Load an extension.
wfShellExec($cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
wfUrlencode($s)
We want some things to be included as literal characters in our title URLs for prettiness, which urlencode encodes by default.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
$wgTmpDirectory
The local filesystem path to a temporary directory.
when a variable name is used in a it is silently declared as a new local masking the global
wfExpandUrl($url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfBoolToStr($value)
Convenience function converts boolean values into "true" or "false" (string) values.
wfIsWindows()
Check if the operating system is Windows.
wfReportTime()
Returns a script tag that stores the amount of time it took MediaWiki to handle the request in millis...
wfLocalFile($title)
Get an object referring to a locally registered file.
wfExpandIRI($url)
Take a URL, make sure it's expanded to fully qualified, and replace any encoded non-ASCII Unicode cha...
wfStripIllegalFilenameChars($name)
Replace all invalid characters with '-'.
wfGetMessageCacheStorage()
Get the cache object used by the message cache.
wfRandomString($length=32)
Get a random string containing a number of pseudo-random hex characters.
static makeVariablesScript($data)
see documentation in includes Linker php for Linker::makeImageLink & $time
wfNegotiateType($cprefs, $sprefs)
Returns the 'best' match between a client's requested internet media types and the server's list of a...
wfArrayDiff2($a, $b)
Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetParserCacheStorage()
Get the cache object used by the parser cache.
static fetchLanguageNames($inLanguage=null, $include= 'mw')
Get an array of language names, indexed by code.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED!Use HtmlPageLinkRendererBegin instead.Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
wfGlobalCacheKey()
Make a cache key with database-agnostic prefix.
$wgDebugRawPage
If true, log debugging data from action=raw and load.php.
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
$wgPhpCli
Executable path of the PHP cli binary (php/php5).
wfMsgReplaceArgs($message, $args)
Replace message parameter keys on the given formatted output.
$wgLanguageCode
Site language code.
wfCountDown($seconds)
Count down from $seconds to zero on the terminal, with a one-second pause between showing each number...
$wgExtensionDirectory
Filesystem extensions directory.
wfCgiToArray($query)
This is the logical opposite of wfArrayToCgi(): it accepts a query string as its argument and returns...
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
wfLoadExtensions(array $exts)
Load multiple extensions at once.
wfIsDebugRawPage()
Returns true if debug logging should be suppressed if $wgDebugRawPage = false.
global $wgCommandLineMode
wfConfiguredReadOnlyReason()
Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
wfDiff($before, $after, $params= '-u')
Returns unified plain-text diff of two texts.
wfResetOutputBuffers($resetGzipEncoding=true)
Clear away any user-level output buffers, discarding contents.
wfGetLB($wiki=false)
Get a load balancer object.
Exception class for replica DB wait timeouts.
wfEscapeWikiText($text)
Escapes the given text so that it may be output using addWikiText() without any linking, formatting, etc.
wfReadOnly()
Check whether the wiki is in read-only mode.
$wgParserCacheType
The cache type for storing article HTML.
wfSetBit(&$dest, $bit, $state=true)
As for wfSetVar except setting a bit.
wfAssembleUrl($urlParts)
This function will reassemble a URL parsed with wfParseURL.
wfTempDir()
Tries to get the system directory for temporary files.
const SHELL_MAX_ARG_STRLEN
static getMain()
Static methods.
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
static deprecated($function, $version=false, $component=false, $callerOffset=2)
Show a warning that $function is deprecated.
wfGetCache($cacheType)
Get a specific cache object.
wfAppendQuery($url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
$wgIllegalFileChars
Additional characters that are not allowed in filenames.
wfShellWikiCmd($script, array $parameters=[], array $options=[])
Generate a shell-escaped command line string to run a MediaWiki cli script.
wfWarn($msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
getHandler()
Get a MediaHandler instance for this file.
wfIniGetBool($setting)
Safety wrapper around ini_get() for boolean settings.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
wfClientAcceptsGzip($force=false)
static singleton()
Get a RepoGroup instance.
static isStoragePath($path)
Check if a given path is a "mwstore://" path.
$wgMessageCacheType
The cache type for storing the contents of the MediaWiki namespace.
$wgMiserMode
Disable database-intensive features.
wfMatchesDomainList($url, $domains)
Check whether a given URL has a domain that occurs in a given set of domains.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfErrorLog($text, $file, array $context=[])
Log to a file without getting "file size exceeded" signals.
$wgImageLimits
Limit images on image description pages to a user-selectable limit.
Class representing a 'diff' between two sequences of strings.
wfLoadSkin($skin, $path=null)
Load a skin.
$wgThumbLimits
Adjust thumbnails on image pages according to a user setting.
wfIsInfinity($str)
Determine input string is represents as infinity.
CACHE_MEMCACHED $wgMainCacheType
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
wfIncrStats($key, $count=1)
Increment a statistics counter.
wfExpandIRI_callback($matches)
Private callback for wfExpandIRI.
$wgMaxShellWallClockTime
Maximum wall clock time (i.e.
wfBCP47($code)
Get the normalised IETF language tag See unit test for examples.
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
wfLoadSkins(array $skins)
Load multiple skins at once.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
wfQueriesMustScale()
Should low-performance queries be disabled?
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned $skin
$wgMaxShellTime
Maximum CPU time in seconds for shell processes under Linux.
wfShowingResults($offset, $limit)
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
wfInitShellLocale()
Workaround for http://bugs.php.net/bug.php?id=45132 escapeshellarg() destroys non-ASCII characters if...
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
wfVarDump($var)
A wrapper around the PHP function var_export().
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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
wfSuppressWarnings($end=false)
Reference-counted warning suppression.
wfMerge($old, $mine, $yours, &$result)
wfMerge attempts to merge differences between three texts.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
$wgDebugLogPrefix
Prefix for debug log lines.
wfUsePHP($req_ver)
This function works like "use VERSION" in Perl, the program will die with a backtrace if the current ...
wfShellExecDisabled()
Check if wfShellExec() is effectively disabled via php.ini config.
$wgShellLocale
Locale for LC_CTYPE, to work around http://bugs.php.net/bug.php?id=45132 For Unix-like operating syst...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
$wgReadOnly
Set this to a string to put the wiki into read-only mode.
wfGetAllCallers($limit=3)
Return a string consisting of callers in the stack.
wfArrayInsertAfter(array $array, array $insert, $after)
Insert array into another array after the specified KEY
wfUrlProtocols($includeProtocolRelative=true)
Returns a regular expression of url protocols.
$wgMemoryLimit
The minimum amount of memory that MediaWiki "needs"; MediaWiki will try to raise PHP's memory limit...
$wgDiff3
Path to the GNU diff3 utility.
wfRemoveDotSegments($urlPath)
Remove all dot-segments in the provided URL path.
$wgReadOnlyFile
If this lock file exists (size > 0), the wiki will be forced into read-only mode. ...
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
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
wfGetLBFactory()
Get the load balancer factory object.
wfBaseName($path, $suffix= '')
Return the final portion of a pathname.
wfBaseConvert($input, $sourceBase, $destBase, $pad=1, $lowercase=true, $engine= 'auto')
Convert an arbitrarily-long digit string from one numeric base to another, optionally zero-padding to...
wfRandom()
Get a random decimal value between 0 and 1, in a way not likely to give duplicate values for any real...
error also a ContextSource you ll probably need to make sure the header is varied on $request
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
wfUnpack($format, $data, $length=false)
Wrapper around php's unpack.
wfUseMW($req_ver)
This function works like "use VERSION" in Perl except it checks the version of MediaWiki, the program will die with a backtrace if the current version of MediaWiki is less than the version provided.
$wgScriptPath
The path we should point to.
static getLocalServerInstance($fallback=CACHE_NONE)
Factory function for CACHE_ACCEL (referenced from DefaultSettings.php)
wfGetMainCache()
Get the main cache object.
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
$wgDBprefix
Table name prefix.
$wgStyleDirectory
Filesystem stylesheets directory.
wfRecursiveRemoveDir($dir)
Remove a directory and all its content.
wfMemoryLimit()
Set PHP's memory limit to the larger of php.ini or $wgMemoryLimit.
wfClearOutputBuffers()
More legible than passing a 'false' parameter to wfResetOutputBuffers():
$wgCanonicalServer
Canonical URL of the server, to use in IRC feeds and notification e-mails.
wfTransactionalTimeLimit()
Set PHP's time limit to the larger of php.ini or $wgTransactionalTimeLimit.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired 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 inclusive $limit
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
wfSetupSession($sessionId=false)
Initialise php session.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
static consume(ScopedCallback &$sc=null)
Trigger a scoped callback and destroy it.
wfEscapeShellArg()
Windows-compatible version of escapeshellarg() Windows doesn't recognise single-quotes in the shell...
static legalChars()
Get a regex character class describing the legal characters in a link.
wfAcceptToPrefs($accept, $def= '*/*')
Converts an Accept-* header into an array mapping string values to quality factors.
$wgServer
URL of the server.
wfMemcKey()
Make a cache key for the local wiki.
wfSplitWikiID($wiki)
Split a wiki ID into DB name and table prefix.
wfLogWarning($msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
wfResetSessionID()
Reset the session id.
wfGetNull()
Get a platform-independent path to the null file, e.g.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub 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 modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
static logException($e)
Log an exception to the exception log (if enabled).
controlled by $wgMainCacheType controlled by $wgParserCacheType controlled by $wgMessageCacheType If you set CACHE_NONE to one of the three control default value for MediaWiki still create a but requests to it are no ops and we always fall through to the database If the cache daemon can t be it should also disable itself fairly smoothly By $wgMemc is used but when it is $parserMemc or $messageMemc this is mentioned $wgDBname
wfTimestampOrNull($outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
float $wgRequestTime
Request start time as fractional seconds since epoch.
wfParseUrl($url)
parse_url() work-alike, but non-broken.
static factory($code)
Get a cached or new language object for a given language code.
wfArrayPlus2d(array $baseArray, array $newValues)
Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
wfShellExecWithStderr($cmd, &$retval=null, $environ=[], $limits=[])
Execute a shell command, returning both stdout and stderr.
Implements some public methods and some protected utility functions which are required by multiple ch...
wfGetPrecompiledData($name)
Get an object from the precompiled serialized directory.
$wgResponsiveImages
Generate and use thumbnails suitable for screens with 1.5 and 2.0 pixel densities.
$wgDiff
Path to the GNU diff utility.
wfMessage($key)
This is the function for getting translated interface messages.
$wgLoadScript
The URL path to load.php.
wfThumbIsStandard(File $file, array $params)
Returns true if these thumbnail parameters match one that MediaWiki requests from file description pa...
$wgDirectoryMode
Default value for chmoding of new directories.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
wfFindFile($title, $options=[])
Find a file.
Library for creating and parsing MW-style timestamps.
if(is_null($wgLocalTZoffset)) if(!$wgDBerrorLogTZ) $wgRequest
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
wfGetCaller($level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...
wfGetLangObj($langcode=false)
Return a Language object from $langcode.
wfGetScriptUrl()
Get the script URL.
$wgShowHostnames
Expose backend server host names through the API and various HTML comments.
$wgTransactionalTimeLimit
The minimum amount of time that MediaWiki needs for "slow" write request, particularly ones with mult...
Allows to change the fields on the form that will be generated $name