Go to the documentation of this file.
55 $a = mt_rand( 0, 100 );
56 $b = mt_rand( 0, 10 );
60 $op = mt_rand( 0, 1 ) ?
'+' :
'−';
65 $answer = ( $op ==
'+' ) ? ( $a + $b ) : ( $a - $b );
66 return [
'question' => $test,
'answer' => $answer ];
76 $resultArr[
'captcha'][
'id'] = $index;
77 $resultArr[
'captcha'][
'question'] = $captcha[
'question'];
88 'mime' =>
'text/plain',
126 'html' =>
"<p><label for=\"wpCaptchaWord\">{$captcha['question']} = </label>" .
128 'name' =>
'wpCaptchaWord',
129 'class' =>
'mw-ui-input',
130 'id' =>
'wpCaptchaWord',
132 'autocomplete' =>
'off',
133 'tabindex' => $tabIndex ] ) .
137 'name' =>
'wpCaptchaId',
138 'id' =>
'wpCaptchaId',
139 'value' => $index ] )
162 if ( !$formInformation ) {
165 if ( isset( $formInformation[
'html'] ) ) {
166 $out->addHTML( $formInformation[
'html'] );
168 if ( isset( $formInformation[
'modules'] ) ) {
169 $out->addModules( $formInformation[
'modules'] );
171 if ( isset( $formInformation[
'modulestyles'] ) ) {
172 $out->addModuleStyles( $formInformation[
'modulestyles'] );
174 if ( isset( $formInformation[
'headitems'] ) ) {
175 $out->addHeadItems( $formInformation[
'headitems'] );
185 return $captchaData[
'question'] .
' =';
194 $page = $editPage->getArticle()->getPage();
195 if ( !isset( $page->ConfirmEdit_ActivateCaptcha ) ) {
199 if ( $this->
action !==
'edit' ) {
200 unset( $page->ConfirmEdit_ActivateCaptcha );
211 $context = $editPage->getArticle()->getContext();
212 $page = $editPage->getArticle()->getPage();
214 if ( isset( $page->ConfirmEdit_ActivateCaptcha ) ||
215 $this->shouldCheck( $page,
'',
'',
$context )
220 unset( $page->ConfirmEdit_ActivateCaptcha );
237 return $msg->isDisabled() ?
wfMessage( static::$messagePrefix .
'edit' ) : $msg;
247 global $wgCaptchaTriggers;
248 $out = $form->getOutput();
249 $user = $form->getUser();
250 if ( $wgCaptchaTriggers[
'sendemail'] ) {
251 $this->
action =
'sendemail';
252 if (
$user->isAllowed(
'skipcaptcha' ) ) {
253 wfDebug(
"ConfirmEdit: user group allows skipping captcha on email sending\n" );
257 $formMetainfo = $formInformation;
258 unset( $formMetainfo[
'html'] );
260 $form->addFooterText(
261 "<div class='captcha'>" .
262 $out->parse( $this->getMessage(
'sendemail' )->text() ) .
263 $formInformation[
'html'] .
276 global $wgCaptchaTriggers, $wgCaptchaBadLoginExpiration,
277 $wgCaptchaBadLoginPerUserExpiration;
280 if ( $wgCaptchaTriggers[
'badlogin'] ) {
284 $cache->add( $key, 0, $wgCaptchaBadLoginExpiration );
290 if ( $wgCaptchaTriggers[
'badloginperuser'] &&
$username ) {
292 $count =
$cache->get( $key );
294 $cache->add( $key, 0, $wgCaptchaBadLoginPerUserExpiration );
306 global $wgCaptchaTriggers;
308 if ( $wgCaptchaTriggers[
'badloginperuser'] &&
$username ) {
321 global $wgCaptchaTriggers, $wgCaptchaBadLoginAttempts;
323 return $wgCaptchaTriggers[
'badlogin']
324 && (int)
$cache->get( $this->badLoginKey() ) >= $wgCaptchaBadLoginAttempts;
334 global $wgCaptchaTriggers, $wgCaptchaBadLoginPerUserAttempts;
337 if ( is_object( $u ) ) {
340 return $wgCaptchaTriggers[
'badloginperuser']
341 && (int)
$cache->get( $this->badLoginPerUserKey( $u ) ) >= $wgCaptchaBadLoginPerUserAttempts;
356 if ( $wgCaptchaWhitelistIP ) {
362 $whitelistMsg =
wfMessage(
'captcha-ip-whitelist' )->inContentLanguage();
363 if ( !$whitelistMsg->isDisabled() ) {
382 $cacheKey =
$cache->makeKey(
'confirmedit',
'ipwhitelist' );
384 $cachedWhitelist =
$cache->get( $cacheKey );
385 if ( $cachedWhitelist ===
false ) {
389 explode(
"\n", $msg->plain() )
394 $cache->set( $cacheKey, $whitelist, 86400 );
397 $whitelist = $cachedWhitelist;
416 $ips = array_map(
'trim',
$input );
417 $ips = array_filter( $ips );
420 foreach ( $ips
as $ip ) {
460 return $answer == $info[
'answer'];
471 global $wgCaptchaTriggers, $wgCaptchaTriggersOnNamespace;
473 if ( isset( $wgCaptchaTriggersOnNamespace[
$title->getNamespace()][
$action] ) ) {
474 return $wgCaptchaTriggersOnNamespace[
$title->getNamespace()][
$action];
477 return ( !empty( $wgCaptchaTriggers[
$action] ) );
490 global $wgAllowConfirmedEmail;
500 if (
$user->isAllowed(
'skipcaptcha' ) ) {
501 wfDebug(
"ConfirmEdit: user group allows skipping captcha\n" );
504 wfDebug(
"ConfirmEdit: user IP is whitelisted" );
506 } elseif ( $wgAllowConfirmedEmail &&
$user->isEmailConfirmed() ) {
507 wfDebug(
"ConfirmEdit: user has confirmed mail, skipping captcha\n" );
514 if ( $content instanceof
Content ) {
516 $newtext = $content->getNativeData();
520 $isEmpty = $content->isEmpty();
523 $isEmpty = $content ===
'';
528 $this->trigger = sprintf(
"edit trigger by '%s' at [[%s]]",
530 $title->getPrefixedText() );
532 wfDebug(
"ConfirmEdit: checking all edits...\n" );
538 $this->trigger = sprintf(
"Create trigger by '%s' at [[%s]]",
540 $title->getPrefixedText() );
542 wfDebug(
"ConfirmEdit: checking on page creation...\n" );
550 "ConfirmEdit: request not posted, assuming that no content will be saved -> no CAPTCHA check"
557 if ( $content instanceof
Content ) {
562 if ( $editInfo->output ) {
563 $newLinks = array_keys( $editInfo->output->getExternalLinks() );
574 $unknownLinks = array_filter( $newLinks, [ $this,
'filterLink' ] );
575 $addedLinks = array_diff( $unknownLinks, $oldLinks );
576 $numLinks =
count( $addedLinks );
578 if ( $numLinks > 0 ) {
579 $this->trigger = sprintf(
"%dx url trigger by '%s' at [[%s]]: %s",
582 $title->getPrefixedText(),
583 implode(
", ", $addedLinks ) );
590 if ( $newtext !==
null && $wgCaptchaRegexes ) {
591 if ( !is_array( $wgCaptchaRegexes ) ) {
592 throw new UnexpectedValueException(
593 '$wgCaptchaRegexes is required to be an array, ' . gettype( $wgCaptchaRegexes ) .
' given.'
599 foreach ( $wgCaptchaRegexes
as $regex ) {
601 if ( preg_match_all( $regex, $newtext, $newMatches ) ) {
603 preg_match_all( $regex, $oldtext, $oldMatches );
605 $addedMatches = array_diff( $newMatches[0], $oldMatches[0] );
607 $numHits =
count( $addedMatches );
608 if ( $numHits > 0 ) {
609 $this->trigger = sprintf(
"%dx %s at [[%s]]: %s",
613 $title->getPrefixedText(),
614 implode(
", ", $addedMatches ) );
632 global $wgCaptchaWhitelist;
642 if ( $wgCaptchaWhitelist !==
false ) {
643 array_unshift(
$regexes, $wgCaptchaWhitelist );
648 if ( preg_match( $regex, $url ) ) {
663 # Code duplicated from the SpamBlacklist extension (r19197)
664 # and later modified.
666 # Strip comments and whitespace, then remove blanks
667 $lines = array_filter( array_map(
'trim', preg_replace(
'/#.*$/',
'',
$lines ) ) );
669 # No lines, don't make a regex which will match everything
675 # It's faster using the S modifier even though it will usually only be run once
680 'normal' =>
'/^(?:https?:)?\/\/+[a-z0-9_\-.]*(?:',
681 'noprotocol' =>
'/^(?:',
685 'noprotocol' =>
')/Si',
690 # Extract flags from the line
692 if ( preg_match(
'/^(.*?)\s*<([^<>]*)>$/',
$line,
$matches ) ) {
694 wfDebug(
"Line with empty regex\n" );
698 $opts = preg_split(
'/\s*\|\s*/', trim(
$matches[2] ) );
699 foreach ( $opts
as $opt ) {
701 if (
$opt ==
'noprotocol' ) {
707 $key = isset(
$options[
'noprotocol'] ) ?
'noprotocol' :
'normal';
710 if ( !isset( $build[$key] ) ) {
711 $build[$key] =
$line;
712 } elseif ( strlen( $build[$key] ) + strlen(
$line ) > $regexMax ) {
714 str_replace(
'/',
'\/', preg_replace(
'|\\\*/|',
'/', $build[$key] ) ) .
716 $build[$key] =
$line;
718 $build[$key] .=
'|' .
$line;
721 foreach ( $build
as $key =>
$value ) {
723 str_replace(
'/',
'\/', preg_replace(
'|\\\*/|',
'/', $build[$key] ) ) .
737 $id =
$title->getArticleID();
738 $res =
$dbr->select(
'externallinks', [
'el_to' ],
739 [
'el_from' => $id ], __METHOD__ );
741 foreach (
$res as $row ) {
742 $links[] = $row->el_to;
761 if (
$request->getVal(
'captchaid' ) ) {
765 if (
$request->getVal(
'captchaword' ) ) {
772 wfDebug(
"ConfirmEdit: no need to show captcha.\n" );
788 if ( !
$context->canUseWikiPage() ) {
801 wfDebug( __METHOD__ .
': Skipped ConfirmEdit check: No WikiPage for title ' .
$title );
811 if ( $this->
action ===
'edit' ) {
816 [
'class' =>
'errorbox' ],
817 $context->msg(
'captcha-edit-fail' )->text()
823 $page->ConfirmEdit_ActivateCaptcha =
true;
838 $creatingUser = $creatingUser ?:
$wgUser;
840 if ( $wgCaptchaTriggers[
'createaccount'] ) {
841 if ( $creatingUser->isAllowed(
'skipcaptcha' ) ) {
842 wfDebug(
"ConfirmEdit: user group allows skipping captcha on account creation\n" );
865 if ( $wgCaptchaTriggers[
'sendemail'] ) {
866 if (
$wgUser->isAllowed(
'skipcaptcha' ) ) {
867 wfDebug(
"ConfirmEdit: user group allows skipping captcha on email sending\n" );
874 if ( defined(
'MW_API' ) ) {
876 # Asking for captchas in the API is really silly
880 $this->trigger =
"{$wgUser->getName()} sending email";
934 $index =
$request->getVal(
'wpCaptchaId' );
935 $word =
$request->getVal(
'wpCaptchaWord' );
936 return [ $index, $word ];
951 if (
$user->pingLimiter(
'badcaptcha', 0 ) ) {
953 $this->
log(
'User reached RateLimit, preventing action' );
962 $user->pingLimiter(
'badcaptcha' );
988 if ( isset( $this->captchaSolved ) ) {
994 if ( $this->
keyMatch( $word, $info ) ) {
995 $this->
log(
"passed" );
997 $this->captchaSolved =
true;
1001 $this->
log(
"bad form input" );
1002 $this->captchaSolved =
false;
1006 $this->
log(
"new captcha session" );
1016 wfDebugLog(
'captcha',
'ConfirmEdit: ' . $message .
'; ' . $this->trigger );
1031 if ( !isset( $info[
'index'] ) ) {
1033 $info[
'index'] = strval( mt_rand() );
1036 return $info[
'index'];
1068 if ( is_null(
$rev ) ) {
1072 $content =
$rev->getContent();
1094 return array_keys(
$out->getExternalLinks() );
1103 $wgOut->addWikiMsg(
'captchahelp-text' );
1105 $wgOut->addWikiMsg(
'captchahelp-cookies-needed' );
1134 $formDescriptor[
'captchaWord'] = [
1135 'label-message' =>
null,
1136 'autocomplete' =>
false,
1137 'persistent' =>
false,
1139 ] + $formDescriptor[
'captchaWord'];
A module that allows for editing and creating pages.
confirmEmailUser( $from, $to, $subject, $text, &$error)
Check the captcha on Special:EmailUser.
Set options of the Parser.
static get()
Get somewhere to store captcha data that will persist between requests.
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 account $user
badLoginPerUserKey( $username)
Cache key for badloginPerUser checks.
static getLocalClusterInstance()
Get the main cluster-local cache object.
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 and they can depend only on the ResourceLoaderContext $context
loadText( $title, $section, $flags=Revision::READ_LATEST)
Retrieve the current version of the page or section being edited...
passCaptchaLimitedFromRequest(WebRequest $request, User $user)
Checks, if the user reached the amount of false CAPTCHAs and give him some vacation or run self::pass...
static isInRanges( $ip, $ranges)
Determines if an IP address is a list of CIDR a.b.c.d/n ranges.
addFormToOutput(OutputPage $out, $tabIndex=1)
Uses getFormInformation() to get the CAPTCHA form and adds it to the given OutputPage object.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
if( $wgSpamBlacklistFiles) $regexes
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
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. '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). '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
keyMatch( $answer, $info)
Check if the submitted form matches the captcha session data provided by the plugin when the form was...
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
editShowCaptcha( $editPage)
Insert the captcha prompt into an edit form.
this hook is for auditing only $req
Class representing a MediaWiki article and history.
static newFatal( $message)
Factory function for fatal errors.
captchaTriggers( $title, $action)
Allows to change the fields on the form that will be generated $name
string $action
Used to select the right message.
const CONTENT_MODEL_WIKITEXT
showHelp()
Show a page explaining what this wacky thing is.
injectEmailUser(&$form)
Inject whazawhoo @fixme if multiple thingies insert a header, could break.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
buildRegexes( $lines)
Build regex from whitelist.
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
getCaptchaInfo( $captchaData, $id)
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
passCaptchaLimited( $index, $word, User $user)
Checks, if the user reached the amount of false CAPTCHAs and give him some vacation or run self::pass...
addCaptchaAPI(&$resultArr)
resetBadLoginCounter( $username)
Reset bad login counter after a successful login.
namespace and then decline to actually register it file or subcat img or subcat $title
wfGlobalCacheKey()
Make a cache key with database-agnostic prefix.
getCaptcha()
Returns an array with 'question' and 'answer' keys.
filterLink( $url)
Filter callback function for URL whitelisting.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
if(is_array( $mode)) switch( $mode) $input
findLinks( $title, $text)
Extract a list of all recognized HTTP links in the text.
getWikiIPWhitelist(Message $msg)
Get the on-wiki IP whitelist stored in [[MediaWiki:Captcha-ip-whitelist]] page from cache if possible...
getTitle()
Get the title object of the article.
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
getCaptchaParamsFromRequest(WebRequest $request)
when a variable name is used in a it is silently declared as a new masking the global
onAuthChangeFormFields(array $requests, array $fieldInfo, array &$formDescriptor, $action)
Modify the apprearance of the captcha field.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
This class should be covered by a general architecture document which does not exist as of January 20...
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
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
doConfirmEdit(WikiPage $page, $newtext, $section, IContextSource $context)
Backend function for confirmEditMerged()
badLoginKey()
Internal cache key for badlogin checks.
confirmEditMerged( $context, $content, $status, $summary, $user, $minorEdit)
An efficient edit filter callback based on the text after section merging.
isIPWhitelisted()
Check if the current IP is allowed to skip captchas.
isBadLoginTriggered()
Check if a bad login has already been registered for this IP address.
log( $message)
Log the status and any triggering info for debugging or statistics.
retrieveCaptcha( $index)
Fetch this session's captcha info.
createAuthenticationRequest()
needCreateAccountCaptcha(User $creatingUser=null)
Logic to check if we need to pass a captcha for the current user to create a new account,...
addFormInformationToOutput(OutputPage $out, array $formInformation)
Processes the given $formInformation array and adds the options (see getFormInformation()) to the giv...
Demo CAPTCHA (not for production usage) and base class for real CAPTCHAs.
getError()
Return the error from the last passCaptcha* call.
storeCaptcha( $info)
Generate a captcha session ID and save the info in PHP's session storage.
static getMain()
Static methods.
getMessage( $action)
Show a message asking the user to enter a captcha on edit The result will be treated as wiki text.
Interface for objects which can provide a MediaWiki context on request.
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
describeCaptchaType()
Describes the captcha type for API clients.
isBadLoginPerUserTriggered( $u)
Is the per-user captcha triggered?
Base interface for content objects.
isAPICaptchaModule( $module)
Represents a title within MediaWiki.
string $trigger
Used in log messages.
static getContentText(Content $content=null)
Convenience function for getting flat text from a Content object.
shouldCheck(WikiPage $page, $content, $section, $context, $oldtext=null)
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
static getMainWANInstance()
Get the main WAN cache object.
increaseBadLoginCounter( $username)
Increase bad login counter after a failed login.
boolean null $captchaSolved
Was the CAPTCHA already passed and if yes, with which result?
passCaptcha( $index, $word)
Given a required captcha run, test form input for correct input on the open session.
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
getLinksFromTracker( $title)
Load external links from the externallinks table.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
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
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 hooks can tweak the array to change how login etc forms should look $requests
prepareContentForEdit(Content $content, $revision=null, User $user=null, $serialFormat=null, $useCache=true)
Prepare content which is about to be saved.
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
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 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 "<
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
if(! $wgDBerrorLogTZ) $wgRequest
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Variant of the Message class.
APIGetAllowedParams(&$module, &$params, $flags)
showEditFormFields(&$editPage, &$out)
Show error message for missing or incorrect captcha on EditPage.
getFormInformation( $tabIndex=1)
Insert a captcha prompt into the edit form.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
this hook is for auditing only or null if authentication failed before getting that far $username
passCaptchaFromRequest(WebRequest $request, User $user)
Given a required captcha run, test form input for correct input on the open session.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
const AS_HOOK_ERROR_EXPECTED
Status: A hook function returned an error.
static isIPAddress( $ip)
Determine if a string is as valid IP address or network (CIDR prefix).
the array() calling protocol came about after MediaWiki 1.4rc1.
Generic captcha authentication request class.
buildValidIPs(array $input)
From a list of unvalidated input, get all the valid IP addresses and IP ranges from it.
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
clearCaptcha( $index)
Clear out existing captcha info from the session, to ensure it can't be reused.