MediaWiki  REL1_31
ClearWatchlistNotificationsJob.php
Go to the documentation of this file.
1 <?php
23 
36  parent::__construct( 'clearWatchlistNotifications', $title, $params );
37 
38  static $required = [ 'userId', 'casTime' ];
39  $missing = implode( ', ', array_diff( $required, array_keys( $this->params ) ) );
40  if ( $missing != '' ) {
41  throw new InvalidArgumentException( "Missing paramter(s) $missing" );
42  }
43 
44  $this->removeDuplicates = true;
45  }
46 
47  public function run() {
48  $services = MediaWikiServices::getInstance();
49  $lbFactory = $services->getDBLoadBalancerFactory();
50  $rowsPerQuery = $services->getMainConfig()->get( 'UpdateRowsPerQuery' );
51 
52  $dbw = $lbFactory->getMainLB()->getConnection( DB_MASTER );
53  $ticket = $lbFactory->getEmptyTransactionTicket( __METHOD__ );
54 
55  $asOfTimes = array_unique( $dbw->selectFieldValues(
56  'watchlist',
57  'wl_notificationtimestamp',
58  [ 'wl_user' => $this->params['userId'], 'wl_notificationtimestamp IS NOT NULL' ],
59  __METHOD__,
60  [ 'ORDER BY' => 'wl_notificationtimestamp DESC' ]
61  ) );
62 
63  foreach ( array_chunk( $asOfTimes, $rowsPerQuery ) as $asOfTimeBatch ) {
64  $dbw->update(
65  'watchlist',
66  [ 'wl_notificationtimestamp' => null ],
67  [
68  'wl_user' => $this->params['userId'],
69  'wl_notificationtimestamp' => $asOfTimeBatch,
70  // New notifications since the reset should not be cleared
71  'wl_notificationtimestamp < ' .
72  $dbw->addQuotes( $dbw->timestamp( $this->params['casTime'] ) )
73  ],
74  __METHOD__
75  );
76  $lbFactory->commitAndWaitForReplication( __METHOD__, $ticket );
77  }
78  }
79 }
use
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Definition: APACHE-LICENSE-2.0.txt:10
array
the array() calling protocol came about after MediaWiki 1.4rc1.
Job\$title
Title $title
Definition: Job.php:42
ClearWatchlistNotificationsJob
Job for clearing all of the "last viewed" timestamps for a user's watchlist.
Definition: ClearWatchlistNotificationsJob.php:34
Job\$params
array $params
Array of job parameters.
Definition: Job.php:36
php
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
Definition: injection.txt:37
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:31
ClearWatchlistNotificationsJob\__construct
__construct(Title $title, array $params)
Definition: ClearWatchlistNotificationsJob.php:35
DB_MASTER
const DB_MASTER
Definition: defines.php:29
$services
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
Definition: hooks.txt:2273
Title
Represents a title within MediaWiki.
Definition: Title.php:39
as
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
Definition: distributors.txt:22
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:25
ClearWatchlistNotificationsJob\run
run()
Run the job.
Definition: ClearWatchlistNotificationsJob.php:47