39 protected static $log = [];
76 public static function init() {
77 self::$enabled =
true;
86 self::$enabled =
false;
97 if ( self::$enabled ) {
108 public static function log( $str ) {
109 if ( !self::$enabled ) {
112 if ( !is_string( $str ) ) {
113 $str = print_r( $str,
true );
116 'msg' => htmlspecialchars( $str ),
137 self::$deprecationWarnings = [];
153 public static function warning( $msg, $callerOffset = 1, $level = E_USER_NOTICE,
$log =
'auto' ) {
154 global $wgDevelopmentWarnings;
156 if (
$log ===
'auto' && !$wgDevelopmentWarnings ) {
160 if (
$log ===
'debug' ) {
164 $callerDescription = self::getCallerDescription( $callerOffset );
166 self::sendMessage( $msg, $callerDescription,
'warning', $level );
168 if ( self::$enabled ) {
170 'msg' => htmlspecialchars( $msg ),
172 'caller' => $callerDescription[
'func'],
195 public static function deprecated( $function, $version =
false,
196 $component =
false, $callerOffset = 2
198 $callerDescription = self::getCallerDescription( $callerOffset );
199 $callerFunc = $callerDescription[
'func'];
204 if ( isset( self::$deprecationWarnings[$function][$callerFunc] ) ) {
206 } elseif ( isset( self::$deprecationWarnings[$function] ) ) {
207 if ( self::$enabled ) {
214 self::$deprecationWarnings[$function][$callerFunc] =
true;
217 global $wgDeprecationReleaseLimit;
218 if ( $wgDeprecationReleaseLimit && $component ===
false ) {
219 # Strip -* off the end of $version so that branches can use the
220 # format #.##-branchname to avoid issues if the branch is merged into
221 # a version of MediaWiki later than what it was branched from
222 $comparableVersion = preg_replace(
'/-.*$/',
'', $version );
224 # If the comparableVersion is larger than our release limit then
225 # skip the warning message for the deprecation
226 if ( version_compare( $wgDeprecationReleaseLimit, $comparableVersion,
'<' ) ) {
231 $component = $component ===
false ?
'MediaWiki' : $component;
232 $msg =
"Use of $function was deprecated in $component $version.";
234 $msg =
"Use of $function is deprecated.";
238 global $wgDevelopmentWarnings;
243 $wgDevelopmentWarnings ? E_USER_DEPRECATED :
false
247 if ( self::$enabled ) {
248 $logMsg = htmlspecialchars( $msg ) .
255 'type' =>
'deprecated',
256 'caller' => $callerFunc,
271 if ( isset( $callers[$callerOffset] ) ) {
272 $callerfile = $callers[$callerOffset];
273 if ( isset( $callerfile[
'file'] ) && isset( $callerfile[
'line'] ) ) {
274 $file = $callerfile[
'file'] .
' at line ' . $callerfile[
'line'];
276 $file =
'(internal function)';
279 $file =
'(unknown location)';
282 if ( isset( $callers[$callerOffset + 1] ) ) {
283 $callerfunc = $callers[$callerOffset + 1];
285 if ( isset( $callerfunc[
'class'] ) ) {
286 $func .= $callerfunc[
'class'] .
'::';
288 if ( isset( $callerfunc[
'function'] ) ) {
289 $func .= $callerfunc[
'function'];
295 return [
'file' => $file,
'func' => $func ];
307 private static function sendMessage( $msg, $caller, $group, $level ) {
308 $msg .=
' [Called from ' . $caller[
'func'] .
' in ' . $caller[
'file'] .
']';
310 if ( $level !==
false ) {
311 trigger_error( $msg, $level );
326 global $wgDebugComments, $wgShowDebug;
328 if ( self::$enabled || $wgDebugComments || $wgShowDebug ) {
331 if ( isset(
$context[
'prefix'] ) ) {
333 } elseif ( isset(
$context[
'channel'] ) &&
$context[
'channel'] !==
'wfDebug' ) {
334 $prefix =
"[{$context['channel']}] ";
336 if ( isset(
$context[
'seconds_elapsed'] ) && isset(
$context[
'memory_used'] ) ) {
337 $prefix .=
"{$context['seconds_elapsed']} {$context['memory_used']} ";
339 $str = LegacyLogger::interpolate( $str,
$context );
340 $str = $prefix . $str;
357 public static function query( $sql, $function, $isMaster, $runTime ) {
358 if ( !self::$enabled ) {
366 [\xC0-\xC1] # Invalid UTF-8 Bytes
367 | [\xF5-\xFF] # Invalid UTF-8 Bytes
368 | \xE0[\x80-\x9F] # Overlong encoding of prior code point
369 | \xF0[\x80-\x8F] # Overlong encoding of prior code point
370 | [\xC2-\xDF](?![\x80-\xBF]) # Invalid UTF-8 Sequence Start
371 | [\xE0-\xEF](?![\x80-\xBF]{2}) # Invalid UTF-8 Sequence Start
372 | [\xF0-\xF4](?![\x80-\xBF]{3}) # Invalid UTF-8 Sequence Start
373 | (?<=[\x0-\x7F\xF5-\xFF])[\x80-\xBF] # Invalid UTF-8 Sequence Middle
374 | (?<![\xC2-\xDF]|[\xE0-\xEF]|[\xE0-\xEF][\x80-\xBF]|[\xF0-\xF4]
375 |[\xF0-\xF4][\x80-\xBF]|[\xF0-\xF4][\x80-\xBF]{2})[\x80-\xBF] # Overlong Sequence
376 | (?<=[\xE0-\xEF])[\x80-\xBF](?![\x80-\xBF]) # Short 3 byte sequence
377 | (?<=[\xF0-\xF4])[\x80-\xBF](?![\x80-\xBF]{2}) # Short 4 byte sequence
378 | (?<=[\xF0-\xF4][\x80-\xBF])[\x80-\xBF](?![\x80-\xBF]) # Short 4 byte sequence (2)
385 $sql = UtfNormal\Validator::cleanUp( $sql );
389 'function' => $function,
390 'master' => (bool)$isMaster,
404 $files = get_included_files();
407 $size = filesize( $file );
410 'size' => $context->
getLanguage()->formatSize( $size ),
429 if ( self::$enabled ) {
431 $debugInfo = self::getDebugInfo( $context );
440 if ( $wgDebugComments ) {
441 $html .=
"<!-- Debug output:\n" .
442 htmlspecialchars( implode(
"\n",
self::$debug ), ENT_NOQUOTES ) .
460 if ( !$wgShowDebug ) {
464 $ret =
"\n<hr />\n<strong>Debug data:</strong><ul id=\"mw-debug-html\">\n";
467 $display = nl2br( htmlspecialchars( trim( $line ) ) );
469 $ret .=
"<li><code>$display</code></li>\n";
472 $ret .=
'</ul>' .
"\n";
484 if ( !self::$enabled ) {
490 $obContents = ob_get_contents();
492 $obContentArray = explode(
'<br />', $obContents );
493 foreach ( $obContentArray
as $obContent ) {
494 if ( trim( $obContent ) ) {
501 $debugInfo = self::getDebugInfo( $context );
508 $result->
addValue( null,
'debuginfo', $debugInfo );
518 if ( !self::$enabled ) {
540 'phpEngine' =>
wfIsHHVM() ?
'HHVM' :
'PHP',
541 'phpVersion' =>
wfIsHHVM() ? HHVM_VERSION : PHP_VERSION,
543 'gitBranch' => $branch,
552 'headers' =>
$request->getAllHeaders(),
555 'memory' => $context->
getLanguage()->formatSize( memory_get_usage( $realMemoryUsage ) ),
556 'memoryPeak' => $context->
getLanguage()->formatSize( memory_get_peak_usage( $realMemoryUsage ) ),
557 'includes' => self::getFilesIncluded( $context ),
static query($sql, $function, $isMaster, $runTime)
Begins profiling on a database query.
static getLog()
Returns internal log array.
MediaWiki Logger LegacyLogger
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 and may include noclasses & $html
Interface for objects which can provide a MediaWiki context on request.
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
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
$wgVersion
MediaWiki version number.
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.
static getFilesIncluded(IContextSource $context)
Returns a list of files included, along with their size.
static debugMsg($str, $context=[])
This is a method to pass messages from wfDebug to the pretty debugger.
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
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
wfDebugBacktrace($limit=0)
Safety wrapper for debug_backtrace().
wfBacktrace($raw=null)
Get a debug backtrace as a string.
static $deprecationWarnings
Array of functions that have already been warned, formatted function-caller to prevent a buttload of ...
static makeConfigSetScript(array $configuration)
Returns JS code which will set the MediaWiki configuration array to the given value.
static stripAllTags($text)
Take a fragment of (potentially invalid) HTML and return a version with any tags removed, encoded as plain text.
when a variable name is used in a it is silently declared as a new local masking the global
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
static getHTMLDebugLog()
Generate debug log in HTML for displaying at the bottom of the main content area. ...
addModules($modules)
Add one or more modules recognized by ResourceLoader.
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
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
Unicode normalization routines for working with UTF-8 strings.
static $query
SQL statements of the database queries.
addValue($path, $name, $value, $flags=0)
Add value to the output data at the given path.
static deprecated($function, $version=false, $component=false, $callerOffset=2)
Show a warning that $function is deprecated.
static $enabled
Is the debugger enabled?
static log($str)
Adds a line to the log.
static makeInlineScript($script)
Construct an inline script tag with given JS code.
static addModules(OutputPage $out)
Add ResourceLoader modules to the OutputPage object if debugging is enabled.
static getDebugInfo(IContextSource $context)
Returns the HTML to add to the page for the toolbar.
This class represents the result of the API operations.
static sendMessage($msg, $caller, $group, $level)
Send a message to the debug log and optionally also trigger a PHP error, depending on the $level argu...
getLanguage()
Get the Language object.
static clearLog()
Clears internal log array and deprecation tracking.
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
This class should be covered by a general architecture document which does not exist as of January 20...
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
static getCallerDescription($callerOffset)
Get an array describing the calling function at a specified offset.
error also a ContextSource you ll probably need to make sure the header is varied on $request
static appendDebugInfoToApiResult(IContextSource $context, ApiResult $result)
Append the debug info to given ApiResult.
static deinit()
Disable the debugger.
static isSHA1($str)
Check if a string looks like a hex encoded SHA1 hash.
float $wgRequestTime
Request start time as fractional seconds since epoch.
static $debug
Debug messages from wfDebug().
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
static init()
Enabled the debugger and load resource module.
static getDebugHTML(IContextSource $context)
Returns the HTML to add to the page for the toolbar.
getRequest()
Get the WebRequest object.
wfGetCaller($level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...