MediaWiki REL1_37
DeleteLinksJob.php
Go to the documentation of this file.
1<?php
25
34class DeleteLinksJob extends Job {
35 public function __construct( Title $title, array $params ) {
36 parent::__construct( 'deleteLinks', $title, $params );
37 $this->removeDuplicates = true;
38 }
39
40 public function run() {
41 if ( $this->title === null ) {
42 $this->setLastError( "deleteLinks: Invalid title" );
43 return false;
44 }
45
46 $pageId = $this->params['pageId'];
47
48 // Serialize links updates by page ID so they see each others' changes
49 $scopedLock = LinksUpdate::acquirePageLock( wfGetDB( DB_PRIMARY ), $pageId, 'job' );
50 if ( $scopedLock === null ) {
51 $this->setLastError( 'LinksUpdate already running for this page, try again later.' );
52 return false;
53 }
54
55 $services = MediaWikiServices::getInstance();
56 $wikiPageFactory = $services->getWikiPageFactory();
57 if ( $wikiPageFactory->newFromID( $pageId, WikiPage::READ_LATEST ) ) {
58 // The page was restored somehow or something went wrong
59 $this->setLastError( "deleteLinks: Page #$pageId exists" );
60 return false;
61 }
62
63 $factory = $services->getDBLoadBalancerFactory();
64 $timestamp = $this->params['timestamp'] ?? null;
65 $page = $wikiPageFactory->newFromTitle( $this->title ); // title when deleted
66
67 $update = new LinksDeletionUpdate( $page, $pageId, $timestamp );
68 $update->setTransactionTicket( $factory->getEmptyTransactionTicket( __METHOD__ ) );
69 $update->doUpdate();
70
71 return true;
72 }
73}
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Job to prune link tables for pages that were deleted.
__construct(Title $title, array $params)
run()
Run the job.
Class to both describe a background job and handle jobs.
Definition Job.php:37
Title $title
Definition Job.php:48
setLastError( $error)
Definition Job.php:466
array $params
Array of job parameters.
Definition Job.php:42
Update object handling the cleanup of links tables after a page was deleted.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Represents a title within MediaWiki.
Definition Title.php:48
const DB_PRIMARY
Definition defines.php:27