MediaWiki master
ActivityUpdateJob.php
Go to the documentation of this file.
1<?php
24
37class ActivityUpdateJob extends Job {
42 public function __construct( $title, array $params ) {
43 // If we know its a PageReference, we could just pass that to the parent
44 // constructor, but its simpler to just extract namespace and dbkey, and
45 // that works for both LinkTarget and PageReference
46 $params['namespace'] = $title->getNamespace();
47 $params['title'] = $title->getDBkey();
48
49 parent::__construct( 'activityUpdateJob', $params );
50
51 static $required = [ 'type', 'userid', 'notifTime', 'curTime' ];
52 $missing = implode( ', ', array_diff( $required, array_keys( $this->params ) ) );
53 if ( $missing != '' ) {
54 throw new InvalidArgumentException( "Missing parameter(s) $missing" );
55 }
56
57 $this->removeDuplicates = true;
58 }
59
60 public function run() {
61 if ( $this->params['type'] === 'updateWatchlistNotification' ) {
63 } else {
64 throw new InvalidArgumentException( "Invalid 'type' '{$this->params['type']}'." );
65 }
66
67 return true;
68 }
69
70 protected function updateWatchlistNotification() {
71 $casTimestamp = $this->params['notifTime'] ?? $this->params['curTime'];
72
73 // TODO: Inject
74 $dbw = MediaWikiServices::getInstance()->getConnectionProvider()->getPrimaryDatabase();
75 // Add a "check and set" style comparison to handle conflicts.
76 // The inequality always avoids updates when the current value
77 // is already NULL per ANSI SQL. This is desired since NULL means
78 // that the user is "caught up" on edits already. When the field
79 // is non-NULL, make sure not to set it back in time or set it to
80 // NULL when newer revisions were in fact added to the page.
81 $casTimeCond = $dbw->expr( 'wl_notificationtimestamp', '<', $dbw->timestamp( $casTimestamp ) );
82
83 // select primary key first instead of directly update to avoid deadlocks per T204561
84 $wlId = $dbw->newSelectQueryBuilder()
85 ->select( 'wl_id' )
86 ->from( 'watchlist' )
87 ->where( [
88 'wl_user' => $this->params['userid'],
89 'wl_namespace' => $this->title->getNamespace(),
90 'wl_title' => $this->title->getDBkey(),
91 $casTimeCond
92 ] )->caller( __METHOD__ )->fetchField();
93
94 if ( !$wlId ) {
95 return;
96 }
97 $dbw->newUpdateQueryBuilder()
98 ->update( 'watchlist' )
99 ->set( [ 'wl_notificationtimestamp' => $dbw->timestampOrNull( $this->params['notifTime'] ) ] )
100 ->where( [ 'wl_id' => (int)$wlId, $casTimeCond ] )
101 ->caller( __METHOD__ )->execute();
102 }
103}
array $params
The job parameters.
Job for updating user activity like "last viewed" timestamps.
__construct( $title, array $params)
Describe and execute a background job.
Definition Job.php:40
Title $title
Definition Job.php:51
Service locator for MediaWiki core services.
getNamespace()
Get the namespace index, i.e.
Definition Title.php:1044
getDBkey()
Get the main part with underscores.
Definition Title.php:1035
Represents the target of a wiki link.
Interface for objects (potentially) representing a page that can be viewable and linked to on a wiki.