24 require_once __DIR__ .
'/Maintenance.php';
33 parent::__construct();
35 $this->
addOption(
'dfn-only',
'Delete links from nonexistent articles only' );
36 $this->
addOption(
'new-only',
'Only affect articles with just a single edit' );
37 $this->
addOption(
'redirects-only',
'Only fix redirects, not all links' );
38 $this->
addOption(
'old-redirects-only',
'Only fix redirects with no redirect table entry' );
39 $this->
addOption(
'e',
'Last page id to refresh',
false,
true );
40 $this->
addOption(
'dfn-chunk-size',
'Maximum number of existent IDs to check per ' .
41 'query, default 100000',
false,
true );
42 $this->
addArg(
'start',
'Page_id to start from, default 1',
false );
51 $start = (int)$this->
getArg( 0 ) ?: null;
52 $end = (int)$this->
getOption(
'e' ) ?: null;
53 $dfnChunkSize = (int)$this->
getOption(
'dfn-chunk-size', 100000 );
55 $new = $this->
getOption(
'new-only',
false );
56 $redir = $this->
getOption(
'redirects-only',
false );
57 $oldRedir = $this->
getOption(
'old-redirects-only',
false );
74 $end = null, $redirectsOnly =
false, $oldRedirectsOnly =
false
76 $reportingInterval = 100;
79 if ( $start === null ) {
84 Hooks::run(
'MaintenanceRefreshLinksInit', [ $this ] );
86 $what = $redirectsOnly ?
"redirects" :
"links";
88 if ( $oldRedirectsOnly ) {
89 # This entire code path is cut-and-pasted from below. Hurrah.
94 self::intervalCond(
$dbr,
'page_id', $start, $end ),
98 [
'page',
'redirect' ],
103 [
'redirect' => [
"LEFT JOIN",
"page_id=rd_from" ] ]
105 $num =
$res->numRows();
106 $this->
output(
"Refreshing $num old redirects from $start...\n" );
110 foreach (
$res as $row ) {
111 if ( !( ++$i % $reportingInterval ) ) {
117 } elseif ( $newOnly ) {
118 $this->
output(
"Refreshing $what from " );
123 self::intervalCond(
$dbr,
'page_id', $start, $end ),
127 $num =
$res->numRows();
128 $this->
output(
"$num new articles...\n" );
131 foreach (
$res as $row ) {
132 if ( !( ++$i % $reportingInterval ) ) {
136 if ( $redirectsOnly ) {
139 self::fixLinksFromArticle( $row->page_id );
144 $maxPage =
$dbr->selectField(
'page',
'max(page_id)',
false );
145 $maxRD =
$dbr->selectField(
'redirect',
'max(rd_from)',
false );
146 $end = max( $maxPage, $maxRD );
148 $this->
output(
"Refreshing redirects table.\n" );
149 $this->
output(
"Starting from page_id $start of $end.\n" );
151 for ( $id = $start; $id <= $end; $id++ ) {
153 if ( !( $id % $reportingInterval ) ) {
160 if ( !$redirectsOnly ) {
161 $this->
output(
"Refreshing links tables.\n" );
162 $this->
output(
"Starting from page_id $start of $end.\n" );
164 for ( $id = $start; $id <= $end; $id++ ) {
166 if ( !( $id % $reportingInterval ) ) {
170 self::fixLinksFromArticle( $id );
192 if (
$page === null ) {
195 $dbw->delete(
'redirect', [
'rd_from' => $id ],
204 $rt =
$content->getUltimateRedirectTarget();
207 if ( $rt === null ) {
210 $dbw->delete(
'redirect', [
'rd_from' => $id ], __METHOD__ );
213 $page->insertRedirectEntry( $rt );
218 $dbw->update(
'page', [
'page_is_redirect' => $fieldValue ],
219 [
'page_id' => $id ], __METHOD__ );
231 if (
$page === null ) {
240 $updates =
$content->getSecondaryDataUpdates(
$page->getTitle() );
259 $this->
output(
"Deleting illegal entries from the links tables...\n" );
264 $nextStart =
$dbr->selectField(
267 self::intervalCond(
$dbr,
'page_id', $start, $end ),
269 [
'ORDER BY' =>
'page_id',
'OFFSET' => $chunkSize ]
272 if ( $nextStart !==
false ) {
277 $chunkEnd = $nextStart - 1;
283 $fmtStart = $start !== null ?
"[$start" :
'(-INF';
284 $fmtChunkEnd = $chunkEnd !== null ?
"$chunkEnd]" :
'INF)';
285 $this->
output(
" Checking interval $fmtStart, $fmtChunkEnd\n" );
290 }
while ( $nextStart !==
false );
304 'pagelinks' =>
'pl_from',
305 'imagelinks' =>
'il_from',
306 'categorylinks' =>
'cl_from',
307 'templatelinks' =>
'tl_from',
308 'externallinks' =>
'el_from',
309 'iwlinks' =>
'iwl_from',
310 'langlinks' =>
'll_from',
311 'redirect' =>
'rd_from',
312 'page_props' =>
'pp_page',
315 foreach ( $linksTables
as $table => $field ) {
316 $this->
output(
" $table: 0" );
317 $tableStart = $start;
320 $ids =
$dbr->selectFieldValues(
324 self::intervalCond(
$dbr, $field, $tableStart, $end ),
325 "$field NOT IN ({$dbr->selectSQLText( 'page', 'page_id' )})",
328 [
'DISTINCT',
'ORDER BY' => $field,
'LIMIT' => $batchSize ]
331 $numIds = count( $ids );
334 $dbw->delete( $table, [ $field => $ids ], __METHOD__ );
335 $this->
output(
", $counter" );
336 $tableStart = $ids[$numIds - 1] + 1;
340 }
while ( $numIds >= $batchSize && ( $end === null || $tableStart <= $end ) );
342 $this->
output(
" deleted.\n" );
358 if ( $start === null && $end === null ) {
359 return "$var IS NOT NULL";
360 } elseif ( $end === null ) {
361 return "$var >= {$db->addQuotes( $start )}";
362 } elseif ( $start === null ) {
363 return "$var <= {$db->addQuotes( $end )}";
365 return "$var BETWEEN {$db->addQuotes( $start )} AND {$db->addQuotes( $end )}";
static fixLinksFromArticle($id)
Run LinksUpdate for all links on a given page_id.
wfWaitForSlaves($ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the slaves to catch up to the master position.
addArg($arg, $description, $required=true)
Add some args that are needed.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
fixRedirect($id)
Update the redirect entry for a given page.
getDB($db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption($name)
Checks to see if a particular param exists.
require_once RUN_MAINTENANCE_IF_MAIN
deleteLinksFromNonexistent($start=null, $end=null, $batchSize=100, $chunkSize=100000)
Removes non-existing links from pages from pagelinks, imagelinks, categorylinks, templatelinks, externallinks, interwikilinks, langlinks and redirect tables.
static runUpdates(array $updates, $mode= 'run')
Convenience method, calls doUpdate() on every DataUpdate in the array.
addOption($name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
static singleton()
Get an instance of this class.
doRefreshLinks($start, $newOnly=false, $end=null, $redirectsOnly=false, $oldRedirectsOnly=false)
Do the actual link refreshing.
Maintenance script to refresh link tables.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
addDescription($text)
Set the description text.
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
getOption($name, $default=null)
Get an option, or return the default.
output($out, $channel=null)
Throw some output to the user.
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 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
static newFromID($id, $from= 'fromdb')
Constructor from a page id.
getArg($argId=0, $default=null)
Get an argument.
setBatchSize($s=0)
Set the batch size.
static intervalCond(IDatabase $db, $var, $start, $end)
Build a SQL expression for a closed interval (i.e.
Basic database interface for live and lazy-loaded DB handles.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
dfnCheckInterval($start=null, $end=null, $batchSize=100)