48 parent::__construct(
'fixDoubleRedirect', $title, $params );
49 $this->reason = $params[
'reason'];
62 # Need to use the master to get the redirect table updated in the same transaction
65 [
'redirect',
'page' ],
66 [
'page_namespace',
'page_title' ],
72 if ( !
$res->numRows() ) {
82 $jobs[] =
new self(
$title, [
85 # Avoid excessive memory usage
86 if ( count( $jobs ) > 10000 ) {
98 if ( !$this->redirTitle ) {
106 wfDebug( __METHOD__ .
": target redirect already deleted, ignoring\n" );
110 $content = $targetRev->getContent();
112 if ( !$currentDest || !$currentDest->equals( $this->redirTitle ) ) {
113 wfDebug( __METHOD__ .
": Redirect has changed since the job was queued\n" );
120 if (
$content->matchMagicWord( $mw ) ) {
121 wfDebug( __METHOD__ .
": skipping: suppressed with __STATICREDIRECT__\n" );
127 $newTitle = self::getFinalDestination( $this->redirTitle );
130 ": skipping: single redirect, circular redirect or invalid redirect destination\n" );
134 if ( $newTitle->equals( $this->redirTitle ) ) {
137 wfDebug( __METHOD__ .
" : skipping, already good\n" );
141 $newTitle =
Title::makeTitle( $newTitle->getNamespace(), $newTitle->getDBkey(),
142 $currentDest->getFragment(), $newTitle->getInterwiki() );
145 $newContent =
$content->updateRedirect( $newTitle );
147 if ( $newContent->equals(
$content ) ) {
168 $this->redirTitle->getPrefixedText(), $newTitle->getPrefixedText()
169 )->inContentLanguage()->text();
194 if ( isset( $seenTitles[$titleText] ) ) {
195 wfDebug( __METHOD__,
"Circular redirect detected, aborting\n" );
199 $seenTitles[$titleText] =
true;
209 $row = $dbw->selectRow(
210 [
'redirect',
'page' ],
211 [
'rd_namespace',
'rd_title',
'rd_interwiki' ],
218 # No redirect from here, chain terminates
244 # User::newFromName() can return false on a badly configured wiki.
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
static fixRedirects($reason, $redirTitle, $destTitle=false)
Insert jobs into the job queue to fix redirects to the given title.
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
the array() calling protocol came about after MediaWiki 1.4rc1.
Class to both describe a background job and handle jobs.
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
getUser()
Get a user object for doing edits, from a request-lifetime cache False will be returned if the user n...
it s the revision text itself In either if gzip is the revision text is gzipped $flags
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
when a variable name is used in a it is silently declared as a new local masking the global
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target...
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
isExternal()
Is this Title interwiki?
Title $redirTitle
The title which has changed, redirects pointing to this title are fixed.
getDBkey()
Get the main part with underscores.
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 unsetoffset-wrap String Wrap the message in html(usually something like"<
getNamespace()
Get the namespace index, i.e.
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
static & get($id)
Factory: creates an object representing an ID.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
static singleton($wiki=false)
__construct(Title $title, array $params)
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
this hook is for auditing only or null if authentication failed before getting that far $username
static getFinalDestination($title)
Get the final destination of a redirect.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
string $reason
Reason for the change, 'maintenance' or 'move'.
array $params
Array of job parameters.
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
getPrefixedDBkey()
Get the prefixed database key form.
Job to fix double redirects after moving a page.