90 self::EMPTY_FILE =>
'empty-file',
91 self::FILE_TOO_LARGE =>
'file-too-large',
92 self::FILETYPE_MISSING =>
'filetype-missing',
93 self::FILETYPE_BADTYPE =>
'filetype-banned',
94 self::MIN_LENGTH_PARTNAME =>
'filename-tooshort',
95 self::ILLEGAL_FILENAME =>
'illegal-filename',
96 self::OVERWRITE_EXISTING_FILE =>
'overwrite',
97 self::VERIFICATION_ERROR =>
'verification-error',
98 self::HOOK_ABORTED =>
'hookaborted',
99 self::WINDOWS_NONASCII_FILENAME =>
'windows-nonascii-filename',
100 self::FILENAME_TOO_LONG =>
'filename-toolong',
102 return $code_to_status[$error] ??
'unknown-error';
117 # Check php's file_uploads setting
130 foreach ( [
'upload',
'edit' ] as $permission ) {
131 if ( !$user->isAllowed( $permission ) ) {
146 return $user->pingLimiter(
'upload' );
171 Hooks::run(
'UploadCreateFromRequest', [
$type, &$className ] );
173 $className =
'UploadFrom' .
$type;
174 wfDebug( __METHOD__ .
": class name: $className\n" );
229 $this->mDesiredDestName =
$name;
231 throw new MWException( __METHOD__ .
" given storage path `$tempPath`." );
251 $this->mFileSize = $fileSize ?:
null;
253 $this->tempFileObj =
new TempFSFile( $this->mTempPath );
255 $this->mFileSize =
filesize( $this->mTempPath );
258 $this->tempFileObj =
null;
267 return Status::newGood();
275 return empty( $this->mFileSize );
304 $tmpFile = $repo->getLocalCopy( $srcPath );
306 $tmpFile->bind( $this );
308 $path = $tmpFile ? $tmpFile->getPath() :
false;
332 if ( $this->mFileSize > $maxSize ) {
345 if ( $verification !==
true ) {
356 if ( $result !==
true ) {
361 if ( !Hooks::run(
'UploadVerification',
362 [ $this->mDestName, $this->mTempPath, &$error ],
'1.28' )
380 if ( $this->mTitleError == self::ILLEGAL_FILENAME ) {
383 if ( $this->mTitleError == self::FILETYPE_BADTYPE ) {
385 if ( count( $this->mBlackListedExtensions ) ) {
409 wfDebug(
"mime: <$mime> extension: <{$this->mFinalExtension}>\n" );
412 return [
'filetype-badmime', $mime ];
415 # Check what Internet Explorer would detect
416 $fp =
fopen( $this->mTempPath,
'rb' );
417 $chunk =
fread( $fp, 256 );
420 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
421 $extMime = $magic->guessTypesForExtension( $this->mFinalExtension );
422 $ieTypes = $magic->getIEMimeTypes( $this->mTempPath, $chunk, $extMime );
423 foreach ( $ieTypes as $ieType ) {
425 return [
'filetype-bad-ie-mime',
$ieType ];
447 $this->mFileProps = $mwProps->getPropsFromPath( $this->mTempPath, $this->mFinalExtension );
448 $mime = $this->mFileProps[
'mime'];
451 # XXX: Missing extension will be caught by validateName() via getTitle()
452 if ( $this->mFinalExtension !=
'' && !$this->
verifyExtension( $mime, $this->mFinalExtension ) ) {
457 # check for htmlish code and javascript
459 if ( $this->mFinalExtension ==
'svg' || $mime ==
'image/svg+xml' ) {
461 if ( $svgStatus !==
false ) {
469 $handlerStatus =
$handler->verifyUpload( $this->mTempPath );
470 if ( !$handlerStatus->isOK() ) {
471 $errors = $handlerStatus->getErrorsArray();
473 return reset( $errors );
478 Hooks::run(
'UploadVerifyFile', [ $this, $mime, &$error ] );
479 if ( $error !==
true ) {
486 wfDebug( __METHOD__ .
": all clear; passing.\n" );
502 # getTitle() sets some internal parameters like $this->mFinalExtension
506 $this->mFileProps = $mwProps->getPropsFromPath( $this->mTempPath, $this->mFinalExtension );
508 # check MIME type, if desired
509 $mime = $this->mFileProps[
'file-mime'];
515 # check for htmlish code and javascript
517 if ( self::detectScript( $this->mTempPath, $mime, $this->mFinalExtension ) ) {
518 return [
'uploadscripted' ];
520 if ( $this->mFinalExtension ==
'svg' || $mime ==
'image/svg+xml' ) {
522 if ( $svgStatus !==
false ) {
528 # Check for Java applets, which if uploaded can bypass cross-site
531 $this->mJavaDetected =
false;
533 [ $this,
'zipEntryCallback' ] );
534 if ( !$zipStatus->isOK() ) {
535 $errors = $zipStatus->getErrorsArray();
536 $error = reset( $errors );
537 if ( $error[0] !==
'zip-wrong-format' ) {
541 if ( $this->mJavaDetected ) {
542 return [
'uploadjava' ];
546 # Scan the uploaded file for viruses
549 return [
'uploadvirus',
$virus ];
561 $names = [ $entry[
'name'] ];
568 $nullPos =
strpos( $entry[
'name'],
"\000" );
569 if ( $nullPos !==
false ) {
570 $names[] =
substr( $entry[
'name'], 0, $nullPos );
575 if (
preg_grep(
'!\.class/?$!', $names ) ) {
576 $this->mJavaDetected =
true;
613 $permErrors = $nt->getUserPermissionsErrors(
'edit', $user );
614 $permErrorsUpload = $nt->getUserPermissionsErrors(
'upload', $user );
615 if ( !$nt->exists() ) {
616 $permErrorsCreate = $nt->getUserPermissionsErrors(
'create', $user );
618 $permErrorsCreate = [];
620 if ( $permErrors || $permErrorsUpload || $permErrorsCreate ) {
628 if ( $overwriteError !==
true ) {
646 $localFile->load( File::READ_LATEST );
647 $filename = $localFile->getName();
650 $badFileName = $this->
checkBadFileName( $filename, $this->mDesiredDestName );
651 if ( $badFileName !==
null ) {
656 if ( $unwantedFileExtensionDetails !==
null ) {
660 $fileSizeWarnings = $this->
checkFileSize( $this->mFileSize );
661 if ( $fileSizeWarnings ) {
662 $warnings =
array_merge( $warnings, $fileSizeWarnings );
666 if ( $localFileExistsWarnings ) {
667 $warnings =
array_merge( $warnings, $localFileExistsWarnings );
671 $warnings[
'was-deleted'] = $filename;
676 $ignoreLocalDupes =
isset( $warnings[
'exists '] );
679 $warnings[
'duplicate'] =
$dupes;
683 if ( $archivedDupes !==
null ) {
700 $comparableName =
str_replace(
' ',
'_', $desiredFileName );
701 $comparableName = Title::capitalize( $comparableName,
NS_FILE );
703 if ( $desiredFileName != $filename && $comparableName != $filename ) {
726 $wgLang->commaList( $extensions ),
749 if ( $fileSize == 0 ) {
750 $warnings[
'empty-file'] =
true;
766 if ( $exists !==
false ) {
770 if ( $hash === $localFile->getSha1() ) {
775 $history = $localFile->getHistory();
776 foreach ( $history as $oldFile ) {
777 if ( $hash === $oldFile->getSha1() ) {
778 $warnings[
'duplicate-version'][] = $oldFile;
787 return $localFile->wasDeleted() && !$localFile->exists();
799 foreach ( $dupes as $key => $dupe ) {
803 $title->equals( $dupe->getTitle() )
805 unset( $dupes[$key] );
820 if ( $archivedFile->getID() > 0 ) {
822 return $archivedFile->getName();
844 public function performUpload( $comment, $pageText, $watch, $user, $tags = [] ) {
849 Hooks::run(
'UploadVerifyUpload', [ $this, $user, $props, $comment, $pageText, &$error ] );
854 return Status::newFatal( ...$error );
878 Hooks::run(
'UploadComplete', [ &$uploadBase ] );
901 if ( $this->mTitle !==
false ) {
904 if ( !
is_string( $this->mDesiredDestName ) ) {
906 $this->mTitle =
null;
913 $title = Title::newFromText( $this->mDesiredDestName );
914 if ( $title && $title->getNamespace() ==
NS_FILE ) {
915 $this->mFilteredName = $title->getDBkey();
920 # oi_archive_name is max 255 bytes, which include a timestamp and an
921 # exclamation mark, so restrict file name to 240 bytes.
922 if (
strlen( $this->mFilteredName ) > 240 ) {
924 $this->mTitle =
null;
936 $nt = Title::makeTitleSafe(
NS_FILE, $this->mFilteredName );
939 $this->mTitle =
null;
943 $this->mFilteredName = $nt->getDBkey();
952 $this->mFinalExtension =
trim( end(
$ext ) );
954 $this->mFinalExtension =
'';
956 # No extension, try guessing one
957 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
958 $mime = $magic->guessMimeType( $this->mTempPath );
959 if ( $mime !==
'unknown/unknown' ) {
960 # Get a space separated list of extensions
961 $extList = $magic->getExtensionsForType( $mime );
963 # Set the extension to the canonical extension
964 $this->mFinalExtension =
strtok( $extList,
' ' );
966 # Fix up the other variables
967 $this->mFilteredName .=
".{$this->mFinalExtension}";
968 $nt = Title::makeTitleSafe(
NS_FILE, $this->mFilteredName );
980 if ( $this->mFinalExtension ==
'' ) {
982 $this->mTitle =
null;
985 }
elseif ( $blackListedExtensions ||
991 $this->mTitle =
null;
997 if ( !
preg_match(
'/^[\x0-\x7f]*$/', $nt->getText() )
1001 $this->mTitle =
null;
1006 # If there was more than one "extension", reassemble the base
1007 # filename to prevent bogus complaints about length
1008 if ( count(
$ext ) > 1 ) {
1009 $iterations = count(
$ext ) - 1;
1011 $partname .=
'.' .
$ext[
$i];
1015 if (
strlen( $partname ) < 1 ) {
1017 $this->mTitle =
null;
1022 $this->mTitle =
$nt;
1033 if (
is_null( $this->mLocalFile ) ) {
1060 if ( !$isPartial ) {
1063 return Status::newFatal( ...$error );
1068 return Status::newGood( $file );
1070 return Status::newFatal(
'uploadstash-exception',
get_class(
$e ),
$e->getMessage() );
1081 Hooks::run(
'UploadStashFile', [ $this, $user, $props, &$error ] );
1082 if ( $error && !
is_array( $error ) ) {
1083 $error = [ $error ];
1119 $file = $stash->stashFile( $this->mTempPath, $this->
getSourceType() );
1120 $this->mStashFile =
$file;
1153 if ( $this->mRemoveTempFile && $this->tempFileObj ) {
1155 wfDebug( __METHOD__ .
": Marked temporary file '{$this->mTempPath}' for removal\n" );
1156 $this->tempFileObj->autocollect();
1174 $bits = explode(
'.', $filename );
1177 return [ $basename, $bits ];
1212 $magic = MediaWiki\MediaWikiServices::getInstance()->getMimeAnalyzer();
1214 if ( !$mime || $mime ==
'unknown' || $mime ==
'unknown/unknown' ) {
1215 if ( !$magic->isRecognizableExtension( $extension ) ) {
1216 wfDebug( __METHOD__ .
": passing file with unknown detected mime type; " .
1217 "unrecognized extension '$extension', can't verify\n" );
1221 wfDebug( __METHOD__ .
": rejecting file with unknown detected mime type; " .
1222 "recognized extension '$extension', so probably invalid file\n" );
1228 $match = $magic->isMatchingExtension( $extension, $mime );
1230 if ( $match ===
null ) {
1231 if ( $magic->getTypesForExtension( $extension ) !==
null ) {
1232 wfDebug( __METHOD__ .
": No extension known for $mime, but we know a mime for $extension\n" );
1236 wfDebug( __METHOD__ .
": no file extension known for mime type $mime, passing file\n" );
1240 }
elseif ( $match ===
true ) {
1241 wfDebug( __METHOD__ .
": mime type $mime matches extension $extension, passing file\n" );
1247 .
": mime type $mime mismatches file extension $extension, rejecting file\n" );
1267 # ugly hack: for text files, always look at the entire file.
1268 # For binary field, just check the first K.
1270 if (
strpos( $mime,
'text/' ) === 0 ) {
1273 $fp =
fopen( $file,
'rb' );
1274 $chunk =
fread( $fp, 1024 );
1284 # decode from UTF-16 if needed (could be used for obfuscation).
1285 if (
substr( $chunk, 0, 2 ) ==
"\xfe\xff" ) {
1294 $chunk = iconv( $enc,
"ASCII//IGNORE", $chunk );
1297 $chunk =
trim( $chunk );
1300 wfDebug( __METHOD__ .
": checking for embedded scripts and HTML stuff\n" );
1302 # check for HTML doctype
1303 if (
preg_match(
"/<!DOCTYPE *X?HTML/i", $chunk ) ) {
1309 if ( $extension ==
'svg' ||
strpos( $mime,
'image/svg' ) === 0 ) {
1310 if ( self::checkXMLEncodingMissmatch( $file ) ) {
1334 '<html', # also in safari
1337 '<script', # also in safari
1345 foreach ( $tags as $tag ) {
1346 if (
strpos( $chunk, $tag ) !==
false ) {
1347 wfDebug( __METHOD__ .
": found something that may make it be mistaken for html: $tag\n" );
1357 # resolve entity-refs to look at attributes. may be harsh on big files... cache result?
1358 $chunk = Sanitizer::decodeCharReferences( $chunk );
1360 # look for script-types
1361 if (
preg_match(
'!type\s*=\s*[\'"]?\s*(?:\w*/)?(?:ecma|java)!sim', $chunk ) ) {
1362 wfDebug( __METHOD__ .
": found script types\n" );
1367 # look for html-style script-urls
1368 if (
preg_match(
'!(?:href|src|data)\s*=\s*[\'"]?\s*(?:ecma|java)script:!sim', $chunk ) ) {
1369 wfDebug( __METHOD__ .
": found html-style script urls\n" );
1374 # look for css-style script-urls
1375 if (
preg_match(
'!url\s*\(\s*[\'"]?\s*(?:ecma|java)script:!sim', $chunk ) ) {
1376 wfDebug( __METHOD__ .
": found css-style script urls\n" );
1381 wfDebug( __METHOD__ .
": no scripts found\n" );
1396 $encodingRegex =
'!encoding[ \t\n\r]*=[ \t\n\r]*[\'"](.*?)[\'"]!si';
1402 wfDebug( __METHOD__ .
": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1409 wfDebug( __METHOD__ .
": Unmatched XML declaration start\n" );
1412 }
elseif (
substr( $contents, 0, 4 ) ==
"\x4C\x6F\xA7\x94" ) {
1414 wfDebug( __METHOD__ .
": EBCDIC Encoded XML\n" );
1421 $attemptEncodings = [
'UTF-16',
'UTF-16BE',
'UTF-32',
'UTF-32BE' ];
1422 foreach ( $attemptEncodings as $encoding ) {
1424 $str = iconv( $encoding,
'UTF-8', $contents );
1430 wfDebug( __METHOD__ .
": Found unsafe XML encoding '{$encMatch[1]}'\n" );
1437 wfDebug( __METHOD__ .
": Unmatched XML declaration start\n" );
1452 $this->mSVGNSError =
false;
1455 [ $this,
'checkSvgScriptCallback' ],
1458 'processing_instruction_handler' =>
'UploadBase::checkSvgPICallback',
1459 'external_dtd_handler' =>
'UploadBase::checkSvgExternalDTD',
1462 if ( $check->wellFormed !==
true ) {
1465 return $partial ?
false : [
'uploadinvalidxml' ];
1466 }
elseif ( $check->filterMatch ) {
1467 if ( $this->mSVGNSError ) {
1471 return $check->filterMatchType;
1485 if (
preg_match(
'/xml-stylesheet/i', $target ) ) {
1486 return [
'upload-scripted-pi-callback' ];
1507 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd',
1508 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd',
1509 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd',
1510 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd',
1512 'http://www.w3.org/TR/2001/PR-SVG-20010719/DTD/svg10.dtd',
1514 if (
$type !==
'PUBLIC'
1515 || !
in_array( $systemId, $allowedDTDs )
1516 ||
strpos( $publicId,
"-//W3C//" ) !== 0
1518 return [
'upload-scripted-dtd' ];
1535 static $validNamespaces = [
1538 'http://creativecommons.org/ns#',
1539 'http://inkscape.sourceforge.net/dtd/sodipodi-0.dtd',
1540 'http://ns.adobe.com/adobeillustrator/10.0/',
1541 'http://ns.adobe.com/adobesvgviewerextensions/3.0/',
1542 'http://ns.adobe.com/extensibility/1.0/',
1543 'http://ns.adobe.com/flows/1.0/',
1544 'http://ns.adobe.com/illustrator/1.0/',
1545 'http://ns.adobe.com/imagereplacement/1.0/',
1546 'http://ns.adobe.com/pdf/1.3/',
1547 'http://ns.adobe.com/photoshop/1.0/',
1548 'http://ns.adobe.com/saveforweb/1.0/',
1549 'http://ns.adobe.com/variables/1.0/',
1550 'http://ns.adobe.com/xap/1.0/',
1551 'http://ns.adobe.com/xap/1.0/g/',
1552 'http://ns.adobe.com/xap/1.0/g/img/',
1553 'http://ns.adobe.com/xap/1.0/mm/',
1554 'http://ns.adobe.com/xap/1.0/rights/',
1555 'http://ns.adobe.com/xap/1.0/stype/dimensions#',
1556 'http://ns.adobe.com/xap/1.0/stype/font#',
1557 'http://ns.adobe.com/xap/1.0/stype/manifestitem#',
1558 'http://ns.adobe.com/xap/1.0/stype/resourceevent#',
1559 'http://ns.adobe.com/xap/1.0/stype/resourceref#',
1560 'http://ns.adobe.com/xap/1.0/t/pg/',
1561 'http://purl.org/dc/elements/1.1/',
1562 'http://purl.org/dc/elements/1.1',
1563 'http://schemas.microsoft.com/visio/2003/svgextensions/',
1564 'http://sodipodi.sourceforge.net/dtd/sodipodi-0.dtd',
1565 'http://taptrix.com/inkpad/svg_extensions',
1566 'http://web.resource.org/cc/',
1567 'http://www.freesoftware.fsf.org/bkchem/cdml',
1568 'http://www.inkscape.org/namespaces/inkscape',
1569 'http://www.opengis.net/gml',
1570 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
1571 'http://www.w3.org/2000/svg',
1572 'http://www.w3.org/tr/rec-rdf-syntax/',
1573 'http://www.w3.org/2000/01/rdf-schema#',
1578 $isBuggyInkscape =
preg_match(
'/^&(#38;)*ns_[a-z_]+;$/', $namespace );
1580 if ( !( $isBuggyInkscape ||
in_array( $namespace, $validNamespaces ) ) ) {
1581 wfDebug( __METHOD__ .
": Non-svg namespace '$namespace' in uploaded file.\n" );
1583 $this->mSVGNSError = $namespace;
1591 if ( $strippedElement ==
'script' ) {
1592 wfDebug( __METHOD__ .
": Found script element '$element' in uploaded file.\n" );
1597 # e.g., <svg xmlns="http://www.w3.org/2000/svg">
1598 # <handler xmlns:ev="http://www.w3.org/2001/xml-events" ev:event="load">alert(1)</handler> </svg>
1599 if ( $strippedElement ==
'handler' ) {
1600 wfDebug( __METHOD__ .
": Found scriptable element '$element' in uploaded file.\n" );
1605 # SVG reported in Feb '12 that used xml:stylesheet to generate javascript block
1606 if ( $strippedElement ==
'stylesheet' ) {
1607 wfDebug( __METHOD__ .
": Found scriptable element '$element' in uploaded file.\n" );
1612 # Block iframes, in case they pass the namespace check
1613 if ( $strippedElement ==
'iframe' ) {
1614 wfDebug( __METHOD__ .
": iframe in uploaded file.\n" );
1620 if ( $strippedElement ==
'style'
1621 && self::checkCssFragment( Sanitizer::normalizeCss(
$data ) )
1623 wfDebug( __METHOD__ .
": hostile css in style element.\n" );
1624 return [
'uploaded-hostile-svg' ];
1631 if (
substr( $stripped, 0, 2 ) ==
'on' ) {
1633 .
": Found event-handler attribute '$attrib'='$value' in uploaded file.\n" );
1635 return [
'uploaded-event-handler-on-svg',
$attrib,
$value ];
1638 # Do not allow relative links, or unsafe url schemas.
1639 # For <a> tags, only data:, http: and https: and same-document
1640 # fragment links are allowed. For all other tags, only data:
1641 # and fragment are allowed.
1642 if ( $stripped ==
'href'
1647 if ( !( $strippedElement ===
'a'
1650 wfDebug( __METHOD__ .
": Found href attribute <$strippedElement "
1651 .
"'$attrib'='$value' in uploaded file.\n" );
1657 # only allow data: targets that should be safe. This prevents vectors like,
1658 # image/svg, text/xml, application/xml, and text/html, which can contain scripts
1662 $parameters =
'(?>;[a-zA-Z0-9\!#$&\'*+.^_`{|}~-]+=(?>[a-zA-Z0-9\!#$&\'*+.^_`{|}~-]+|"(?>[\0-\x0c\x0e-\x21\x23-\x5b\x5d-\x7f]+|\\\\[\0-\x7f])*"))*(?:;base64)?';
1664 if ( !
preg_match(
"!^data:\s*image/(gif|jpeg|jpg|png)$parameters,!i",
$value ) ) {
1665 wfDebug( __METHOD__ .
": Found href to unwhitelisted data: uri "
1666 .
"\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1671 # Change href with animate from (http:
1672 if ( $stripped ===
'attributename'
1673 && $strippedElement ===
'animate'
1676 wfDebug( __METHOD__ .
": Found animate that might be changing href using from "
1677 .
"\"<$strippedElement '$attrib'='$value'...\" in uploaded file.\n" );
1682 # use set/animate to add event-handler attribute to parent
1683 if ( ( $strippedElement ==
'set' || $strippedElement ==
'animate' )
1684 && $stripped ==
'attributename'
1687 wfDebug( __METHOD__ .
": Found svg setting event-handler attribute with "
1688 .
"\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1693 # use set to add href attribute to parent element
1694 if ( $strippedElement ==
'set'
1695 && $stripped ==
'attributename'
1698 wfDebug( __METHOD__ .
": Found svg setting href attribute '$value' in uploaded file.\n" );
1700 return [
'uploaded-setting-href-svg' ];
1703 # use set to add a remote / data / script target to an element
1704 if ( $strippedElement ==
'set'
1705 && $stripped ==
'to'
1708 wfDebug( __METHOD__ .
": Found svg setting attribute to '$value' in uploaded file.\n" );
1710 return [
'uploaded-wrong-setting-svg',
$value ];
1713 # use handler attribute with remote / data / script
1714 if ( $stripped ==
'handler' &&
preg_match(
'!(http|https|data|script):!sim',
$value ) ) {
1715 wfDebug( __METHOD__ .
": Found svg setting handler with remote/data/script "
1716 .
"'$attrib'='$value' in uploaded file.\n" );
1721 # use CSS styles to bring in remote code
1722 if ( $stripped ==
'style'
1723 && self::checkCssFragment( Sanitizer::normalizeCss(
$value ) )
1725 wfDebug( __METHOD__ .
": Found svg setting a style with "
1726 .
"remote url '$attrib'='$value' in uploaded file.\n" );
1730 # Several attributes can include css, css character escaping isn't allowed
1731 $cssAttrs = [
'font',
'clip-path',
'fill',
'filter',
'marker',
1732 'marker-end',
'marker-mid',
'marker-start',
'mask',
'stroke' ];
1733 if (
in_array( $stripped, $cssAttrs )
1734 && self::checkCssFragment(
$value )
1736 wfDebug( __METHOD__ .
": Found svg setting a style with "
1737 .
"remote url '$attrib'='$value' in uploaded file.\n" );
1741 # image filters can pull in url, which could be svg that executes scripts
1742 # Only allow url( "#foo" ). Do not allow url( http:
1743 if ( $strippedElement ==
'image'
1744 && $stripped ==
'filter'
1747 wfDebug( __METHOD__ .
": Found image filter with url: "
1748 .
"\"<$strippedElement $stripped='$value'...\" in uploaded file.\n" );
1765 # Forbid external stylesheets, for both reliability and to protect viewer's privacy
1770 # We allow @font-face to embed fonts with data: urls, so we snip the string
1771 # 'url' out so this case won't match when we check for urls below
1772 $pattern =
'!(@font-face\s*{[^}]*src:)url(\("data:;base64,)!im';
1775 # Check for remote and executable CSS. Unlike in Sanitizer::checkCss, the CSS
1776 # properties filter and accelerator don't seem to be useful for xss in SVG files.
1777 # Expression and -o-link don't seem to work either, but filtering them here in case.
1778 # Additionally, we catch remote urls like url("http:..., url('http:..., url(http:...,
1779 # but not local ones such as url("#..., url('#..., url(#....
1782 | -o-link-source\s*:
1783 | -o-replace\s*:!imx',
$value ) ) {
1788 "!(\s*(url|image|image-set)\s*\(\s*[\"']?\s*[^#]+.*?\))!sim",
1793 # TODO: redo this in one regex. Until then, url("#whatever") matches the first
1794 foreach (
$matches[1] as $match ) {
1795 if ( !
preg_match(
"!\s*(url|image|image-set)\s*\(\s*(#|'#|\"#)!im", $match ) ) {
1815 $parts = explode(
':',
strtolower( $element ) );
1817 $ns = implode(
':', $parts );
1819 return [ $ns,
$name ];
1828 $parts = explode(
':',
strtolower( $name ) );
1847 wfDebug( __METHOD__ .
": virus scanner disabled\n" );
1853 wfDebug( __METHOD__ .
": unknown virus scanner: $wgAntivirus\n" );
1854 $wgOut->wrapWikiMsg(
"<div class=\"error\">\n$1\n</div>",
1857 return wfMessage(
'virus-unknownscanner' )->text() .
" $wgAntivirus";
1860 # look up scanner configuration
1866 # simple pattern: append file to scan
1867 $command .=
" " . Shell::escape( $file );
1869 # complex pattern: replace "%f" with file to scan
1873 wfDebug( __METHOD__ .
": running virus scan: $command \n" );
1875 # execute virus scanner
1878 # NOTE: there's a 50 line workaround to make stderr redirection work on windows, too.
1879 # that does not seem to be worth the pain.
1880 # Ask me (Duesentrieb) about it if it's ever needed.
1883 # map exit code to AV_xxx constants.
1884 $mappedCode = $exitCode;
1885 if ( $exitCodeMap ) {
1886 if (
isset( $exitCodeMap[$exitCode] ) ) {
1887 $mappedCode = $exitCodeMap[$exitCode];
1889 $mappedCode = $exitCodeMap[
"*"];
1897 # scan failed (code was mapped to false by $exitCodeMap)
1898 wfDebug( __METHOD__ .
": failed to scan $file (code $exitCode).\n" );
1901 ?
wfMessage(
'virus-scanfailed', [ $exitCode ] )->text()
1904 # scan failed because filetype is unknown (probably imune)
1905 wfDebug( __METHOD__ .
": unsupported file type $file (code $exitCode).\n" );
1909 wfDebug( __METHOD__ .
": file passed virus scan.\n" );
1915 $output =
true; #
if there
's no output, return true
1916 } elseif ( $msgPattern ) {
1918 if ( preg_match( $msgPattern, $output, $groups ) && $groups[1] ) {
1919 $output = $groups[1];
1923 wfDebug( __METHOD__ . ": FOUND VIRUS! scanner feedback: $output \n" );
1937 private function checkOverwrite( $user ) {
1938 // First check whether the local file can be overwritten
1939 $file = $this->getLocalFile();
1940 $file->load( File::READ_LATEST );
1941 if ( $file->exists() ) {
1942 if ( !self::userCanReUpload( $user, $file ) ) {
1943 return [ 'fileexists-forbidden
', $file->getName() ];
1949 /* Check shared conflicts: if the local file does not exist, but
1950 * wfFindFile finds a file, it exists in a shared repository.
1952 $file = wfFindFile( $this->getTitle(), [ 'latest
' => true ] );
1953 if ( $file && !$user->isAllowed( 'reupload-shared
' ) ) {
1954 return [ 'fileexists-shared-forbidden
', $file->getName() ];
1967 public static function userCanReUpload( User $user, File $img ) {
1968 if ( $user->isAllowed( 'reupload
' ) ) {
1969 return true; // non-conditional
1970 } elseif ( !$user->isAllowed( 'reupload-own
' ) ) {
1974 if ( !( $img instanceof LocalFile ) ) {
1980 return $user->getId() == $img->getUser( 'id' );
1994 public static function getExistsWarning( $file ) {
1995 if ( $file->exists() ) {
1996 return [ 'warning
' => 'exists
', 'file
' => $file ];
1999 if ( $file->getTitle()->getArticleID() ) {
2000 return [ 'warning
' => 'page-exists
', 'file
' => $file ];
2003 if ( strpos( $file->getName(), '.
' ) == false ) {
2004 $partname = $file->getName();
2007 $n = strrpos( $file->getName(), '.
' );
2008 $extension = substr( $file->getName(), $n + 1 );
2009 $partname = substr( $file->getName(), 0, $n );
2011 $normalizedExtension = File::normalizeExtension( $extension );
2013 if ( $normalizedExtension != $extension ) {
2014 // We're not
using the normalized
form of the extension.
2019 $nt_lc = Title::makeTitle(
NS_FILE,
"{$partname}.{$normalizedExtension}" );
2022 if ( $file_lc->exists() ) {
2024 'warning' =>
'exists-normalized',
2026 'normalizedFile' => $file_lc
2033 "{$partname}.", 1 );
2034 if ( count( $similarFiles ) ) {
2036 'warning' =>
'exists-normalized',
2038 'normalizedFile' => $similarFiles[0],
2042 if ( self::isThumbName( $file->getName() ) ) {
2043 # Check for filenames like 50px- or 180px-, these are mostly thumbnails
2045 substr( $partname,
strpos( $partname,
'-' ) + 1 ) .
'.' . $extension,
2049 if ( $file_thb->exists() ) {
2051 'warning' =>
'thumb',
2058 'warning' =>
'thumb-name',
2065 foreach ( self::getFilenamePrefixBlacklist() as $prefix ) {
2066 if (
substr( $partname, 0,
strlen( $prefix ) ) == $prefix ) {
2068 'warning' =>
'bad-prefix',
2084 $n =
strrpos( $filename,
'.' );
2085 $partname = $n ?
substr( $filename, 0, $n ) : $filename;
2088 substr( $partname, 3, 3 ) ==
'px-' ||
2089 substr( $partname, 2, 3 ) ==
'px-'
2101 $message =
wfMessage(
'filename-prefix-blacklist' )->inContentLanguage();
2102 if ( !$message->isDisabled() ) {
2103 $lines = explode(
"\n", $message->plain() );
2107 if ( $comment ==
'#' || $comment ==
'' ) {
2112 if ( $comment > 0 ) {
2154 $code = $error[
'status'];
2190 ini_get(
'upload_max_filesize' ) ?:
ini_get(
'hhvm.server.upload.upload_max_file_size' ),
2194 ini_get(
'post_max_size' ) ?:
ini_get(
'hhvm.server.max_post_size' ),
2197 return min( $phpMaxFileSize, $phpMaxPostSize );
2210 $cache = MediaWikiServices::getInstance()->getMainObjectStash();
2211 $key =
$cache->makeKey(
'uploadstatus', $user->getId() ?:
md5( $user->getName() ),
$statusKey );
2213 return $cache->get( $key );
2227 $cache = MediaWikiServices::getInstance()->getMainObjectStash();
2228 $key =
$cache->makeKey(
'uploadstatus', $user->getId() ?:
md5( $user->getName() ),
$statusKey );
2230 if (
$value ===
false ) {
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
we sometimes make exceptions for this Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally NO WARRANTY BECAUSE THE PROGRAM IS LICENSED FREE OF THERE IS NO WARRANTY FOR THE TO THE EXTENT PERMITTED BY APPLICABLE LAW EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND OR OTHER PARTIES PROVIDE THE PROGRAM AS IS WITHOUT WARRANTY OF ANY EITHER EXPRESSED OR BUT NOT LIMITED THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU SHOULD THE PROGRAM PROVE YOU ASSUME THE COST OF ALL NECESSARY REPAIR OR CORRECTION IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT OR ANY OTHER PARTY WHO MAY MODIFY AND OR REDISTRIBUTE THE PROGRAM AS PERMITTED BE LIABLE TO YOU FOR INCLUDING ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new and you want it to be of the greatest possible use to the public
$wgAntivirus
Internal name of virus scanner.
$wgFileExtensions
This is the list of preferred extensions for uploading files.
$wgCheckFileExtensions
This is a flag to determine whether or not to check file extensions on upload.
$wgAntivirusRequired
Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected.
$wgUploadSizeWarning
Warn if uploaded files are larger than this (in bytes), or false to disable.
$wgDisableUploadScriptChecks
Setting this to true will disable the upload system's checks for HTML/JavaScript.
$wgVerifyMimeType
Determines if the MIME type of uploaded files should be checked.
$wgAntivirusSetup
Configuration for different virus scanners.
$wgFileBlacklist
Files with these extensions will never be allowed as uploads.
$wgEnableUploads
Allow users to upload files.
$wgAllowJavaUploads
Allow Java archive uploads.
$wgStrictFileExtensions
If this is turned off, users may override the warning for files not covered by $wgFileExtensions.
$wgMimeTypeBlacklist
Files with these MIME types will never be allowed as uploads if $wgVerifyMimeType is enabled.
$wgMaxUploadSize
Max size for uploads, in bytes.
$wgSVGMetadataCutoff
Don't read SVG metadata beyond this point.
$wgAllowTitlesInSVG
Disallow <title> element in SVG files.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
wfLocalFile( $title)
Get an object referring to a locally registered file.
wfArrayDiff2( $a, $b)
Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
wfShellExecWithStderr( $cmd, &$retval=null, $environ=[], $limits=[])
Execute a shell command, returning both stdout and stderr.
wfStripIllegalFilenameChars( $name)
Replace all invalid characters with '-'.
wfShorthandToInteger( $string='', $default=-1)
Converts shorthand byte notation to integer form.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
wfIsHHVM()
Check if we are running under HHVM.
static getPropertyNames( $filter=[])
Returns all possible parameters to iiprop.
static getInfo( $file, $prop, $result, $thumbParams=null, $opts=false)
Get result information for an image revision.
Class representing a row of the 'filearchive' table.
static getSha1Base36FromPath( $path)
Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case encoding,...
static isStoragePath( $path)
Check if a given path is a "mwstore://" path.
static isVirtualUrl( $url)
Determine if a string is an mwrepo:// URL.
Class to represent a local file in the wiki's own database.
MimeMagic helper wrapper.
static singleton()
Get a RepoGroup instance.
This class is used to hold the location and do limited manipulation of files stored temporarily (this...
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
UploadBase and subclasses are the backend of MediaWiki's file uploads.
getSourceType()
Returns the upload type.
checkOverwrite( $user)
Check if there's an overwrite conflict and, if so, if restrictions forbid this user from performing t...
static verifyExtension( $mime, $extension)
Checks if the MIME type of the uploaded file matches the file extension.
postProcessUpload()
Perform extra steps after a successful upload.
verifyTitlePermissions( $user)
Check whether the user can edit, upload and create the image.
checkSvgScriptCallback( $element, $attribs, $data=null)
checkLocalFileExists(LocalFile $localFile, $hash)
getLocalFile()
Return the local file and initializes if necessary.
stripXmlNamespace( $name)
string $mTempPath
Local file system path to the file to upload (or a local copy)
checkBadFileName( $filename, $desiredFileName)
Check whether the resulting filename is different from the desired one, but ignore things like ucfirs...
static createFromRequest(&$request, $type=null)
Create a form of UploadBase depending on wpSourceType and initializes it.
verifyPermissions( $user)
Alias for verifyTitlePermissions.
runUploadStashFileHook(User $user)
static getSessionStatus(User $user, $statusKey)
Get the current status of a chunked upload (used for polling)
zipEntryCallback( $entry)
Callback for ZipDirectoryReader to detect Java class files.
static checkSvgPICallback( $target, $data)
Callback to filter SVG Processing Instructions.
static isValidRequest( $request)
Check whether a request if valid for this handler.
convertVerifyErrorToStatus( $error)
verifyPartialFile()
A verification routine suitable for partial files.
static detectScript( $file, $mime, $extension)
Heuristic for detecting files that could contain JavaScript instructions or things that may look like...
verifyFile()
Verifies that it's ok to include the uploaded file.
static isEnabled()
Returns true if uploads are enabled.
static isThumbName( $filename)
Helper function that checks whether the filename looks like a thumbnail.
getVerificationErrorCode( $error)
static checkCssFragment( $value)
Check a block of CSS or CSS fragment for anything that looks like it is bringing in remote code.
static getFilenamePrefixBlacklist()
Get a list of blacklisted filename prefixes from [[MediaWiki:Filename-prefix-blacklist]].
checkAgainstArchiveDupes( $hash)
const OVERWRITE_EXISTING_FILE
setTempFile( $tempPath, $fileSize=null)
stashSession()
alias for stashFileGetKey, for backwards compatibility
static checkXMLEncodingMissmatch( $file)
Check a whitelist of xml encodings that are known not to be interpreted differently by the server's x...
doStashFile(User $user=null)
Implementation for stashFile() and tryStashFile().
const WINDOWS_NONASCII_FILENAME
cleanupTempFile()
If we've modified the upload file we need to manually remove it on exit to clean up.
validateName()
Verify that the name is valid and, if necessary, that we can overwrite.
checkFileSize( $fileSize)
isEmptyFile()
Return true if the file is empty.
static checkFileExtension( $ext, $list)
Perform case-insensitive match against a list of file extensions.
tryStashFile(User $user, $isPartial=false)
Like stashFile(), but respects extensions' wishes to prevent the stashing.
getTitle()
Returns the title of the file to be uploaded.
initializePathInfo( $name, $tempPath, $fileSize, $removeTempFile=false)
Initialize the path information.
static getMaxUploadSize( $forType=null)
Get the MediaWiki maximum uploaded file size for given type of upload, based on $wgMaxUploadSize.
static checkSvgExternalDTD( $type, $publicId, $systemId)
Verify that DTD urls referenced are only the standard dtds.
getTempFileSha1Base36()
Get the base 36 SHA1 of the file.
static splitXmlNamespace( $element)
Divide the element name passed by the xml parser to the callback into URI and prifix.
getImageInfo( $result)
Gets image info about the file just uploaded.
detectScriptInSvg( $filename, $partial)
static splitExtensions( $filename)
Split a file into a base name and all dot-delimited 'extensions' on the end.
fetchFile()
Fetch the file.
static isThrottled( $user)
Returns true if the user has surpassed the upload rate limit, false otherwise.
checkLocalFileWasDeleted(LocalFile $localFile)
stashFileGetKey()
Stash a file in a temporary directory, returning a key which can be used to find the file again.
performUpload( $comment, $pageText, $watch, $user, $tags=[])
Really perform the upload.
getFileSize()
Return the file size.
verifyUpload()
Verify whether the upload is sane.
stashFile(User $user=null)
If the user does not supply all necessary information in the first upload form submission (either by ...
const MIN_LENGTH_PARTNAME
static checkFileExtensionList( $ext, $list)
Perform case-insensitive match against a list of file extensions.
checkWarnings()
Check for non fatal problems with the file.
static detectVirus( $file)
Generic wrapper function for a virus scanner program.
static isAllowed( $user)
Returns true if the user can use this upload module or else a string identifying the missing permissi...
checkUnwantedFileExtensions( $fileExtension)
TempFSFile null $tempFileObj
Wrapper to handle deleting the temp file.
static getExistsWarning( $file)
Helper function that does various existence checks for a file.
static getMaxPhpUploadSize()
Get the PHP maximum uploaded file size, based on ini settings.
verifyMimeType( $mime)
Verify the MIME type.
static setSessionStatus(User $user, $statusKey, $value)
Set the current status of a chunked upload (used for polling)
initializeFromRequest(&$request)
Initialize from a WebRequest.
checkAgainstExistingDupes( $hash, $ignoreLocalDupes)
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static doWatch(Title $title, User $user, $checkRights=User::CHECK_USER_RIGHTS)
Watch a page.
static read( $fileName, $callback, $options=[])
Read a ZIP file and call a function for each file discovered in it.
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
namespace being checked & $result
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable 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
null means default in associative array form
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
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 after processing & $attribs
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as
patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
processing should stop and the error should be shown to the user * false
returning false will NOT prevent logging $e
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
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 function
if(!is_readable( $file)) $ext
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file