Go to the documentation of this file.
4 use Liuggio\StatsdClient\Factory\StatsdDataFactoryInterface;
6 use Wikimedia\Assert\Assert;
7 use Wikimedia\ScopedCallback;
86 $this->deferredUpdatesAddCallableUpdateCallback =
88 $this->revisionGetTimestampFromIdCallback =
112 if ( !defined(
'MW_PHPUNIT_TEST' ) ) {
114 'Cannot override DeferredUpdates::addCallableUpdate callback in operation.'
118 $this->deferredUpdatesAddCallableUpdateCallback = $callback;
119 return new ScopedCallback(
function ()
use ( $previousValue ) {
120 $this->deferredUpdatesAddCallableUpdateCallback = $previousValue;
135 if ( !defined(
'MW_PHPUNIT_TEST' ) ) {
137 'Cannot override Revision::getTimestampFromId callback in operation.'
141 $this->revisionGetTimestampFromIdCallback = $callback;
142 return new ScopedCallback(
function ()
use ( $previousValue ) {
143 $this->revisionGetTimestampFromIdCallback = $previousValue;
148 return $this->
cache->makeKey(
159 $this->
cache->set( $key, $item );
160 $this->cacheIndex[$target->getNamespace()][$target->getDBkey()][
$user->getId()] = $key;
161 $this->stats->increment(
'WatchedItemStore.cache' );
167 $this->stats->increment(
'WatchedItemStore.uncache' );
171 $this->stats->increment(
'WatchedItemStore.uncacheLinkTarget' );
176 $this->stats->increment(
'WatchedItemStore.uncacheLinkTarget.items' );
177 $this->
cache->delete( $key );
182 $this->stats->increment(
'WatchedItemStore.uncacheUser' );
183 foreach ( $this->cacheIndex
as $ns => $dbKeyArray ) {
184 foreach ( $dbKeyArray
as $dbKey => $userArray ) {
185 if ( isset( $userArray[
$user->getId()] ) ) {
186 $this->stats->increment(
'WatchedItemStore.uncacheUser.items' );
187 $this->
cache->delete( $userArray[
$user->getId()] );
214 'wl_user' =>
$user->getId(),
227 return $this->loadBalancer->getConnectionRef( $dbIndex, [
'watchlist' ] );
245 $dbw = $this->loadBalancer->getConnectionRef(
DB_MASTER );
248 [
'wl_user' =>
$user->getId() ],
257 $userId =
$user->getId();
258 foreach ( $this->cacheIndex
as $ns => $dbKeyIndex ) {
259 foreach ( $dbKeyIndex
as $dbKey => $userIndex ) {
260 if ( array_key_exists( $userId, $userIndex ) ) {
261 $this->
cache->delete( $userIndex[$userId] );
262 unset( $this->cacheIndex[$ns][$dbKey][$userId] );
268 foreach ( $this->cacheIndex
as $ns => $dbKeyIndex ) {
269 foreach ( $dbKeyIndex
as $dbKey => $userIndex ) {
270 if ( empty( $this->cacheIndex[$ns][$dbKey] ) ) {
271 unset( $this->cacheIndex[$ns][$dbKey] );
274 if ( empty( $this->cacheIndex[$ns] ) ) {
275 unset( $this->cacheIndex[$ns] );
299 return (
int)
$dbr->selectField(
314 $return = (int)
$dbr->selectField(
318 'wl_user' =>
$user->getId()
333 $return = (int)
$dbr->selectField(
354 $visitingWatchers = (int)
$dbr->selectField(
360 'wl_notificationtimestamp >= ' .
361 $dbr->addQuotes(
$dbr->timestamp( $threshold ) ) .
362 ' OR wl_notificationtimestamp IS NULL'
367 return $visitingWatchers;
377 $dbOptions = [
'GROUP BY' => [
'wl_namespace',
'wl_title' ] ];
381 if ( array_key_exists(
'minimumWatchers',
$options ) ) {
382 $dbOptions[
'HAVING'] =
'COUNT(*) >= ' . (int)
$options[
'minimumWatchers'];
388 [
'wl_title',
'wl_namespace',
'watchers' =>
'COUNT(*)' ],
389 [ $lb->constructSet(
'wl',
$dbr ) ],
395 foreach ( $targets
as $linkTarget ) {
396 $watchCounts[$linkTarget->getNamespace()][$linkTarget->getDBkey()] = 0;
399 foreach (
$res as $row ) {
400 $watchCounts[$row->wl_namespace][$row->wl_title] = (int)$row->watchers;
413 array $targetsWithVisitThresholds,
414 $minimumWatchers =
null
416 if ( $targetsWithVisitThresholds === [] ) {
425 $dbOptions = [
'GROUP BY' => [
'wl_namespace',
'wl_title' ] ];
426 if ( $minimumWatchers !==
null ) {
427 $dbOptions[
'HAVING'] =
'COUNT(*) >= ' . (int)$minimumWatchers;
431 [
'wl_namespace',
'wl_title',
'watchers' =>
'COUNT(*)' ],
438 foreach ( $targetsWithVisitThresholds
as list( $target ) ) {
440 $watcherCounts[$target->getNamespace()][$target->getDBkey()] = 0;
443 foreach (
$res as $row ) {
444 $watcherCounts[$row->wl_namespace][$row->wl_title] = (int)$row->watchers;
447 return $watcherCounts;
459 array $targetsWithVisitThresholds
461 $missingTargets = [];
462 $namespaceConds = [];
463 foreach ( $targetsWithVisitThresholds
as list( $target, $threshold ) ) {
464 if ( $threshold ===
null ) {
465 $missingTargets[] = $target;
469 $namespaceConds[$target->getNamespace()][] = $db->
makeList( [
470 'wl_title = ' . $db->
addQuotes( $target->getDBkey() ),
473 'wl_notificationtimestamp IS NULL'
479 foreach ( $namespaceConds
as $namespace => $pageConds ) {
481 'wl_namespace = ' . $namespace,
486 if ( $missingTargets ) {
488 $conds[] = $lb->constructSet(
'wl', $db );
501 if (
$user->isAnon() ) {
505 $cached = $this->
getCached( $user, $target );
507 $this->stats->increment(
'WatchedItemStore.getWatchedItem.cached' );
510 $this->stats->increment(
'WatchedItemStore.getWatchedItem.load' );
522 if (
$user->isAnon() ) {
527 $row =
$dbr->selectRow(
529 'wl_notificationtimestamp',
530 $this->
dbCond( $user, $target ),
543 $this->
cache( $item );
558 if ( array_key_exists(
'sort',
$options ) ) {
560 ( in_array(
$options[
'sort'], [ self::SORT_ASC, self::SORT_DESC ] ) ),
561 '$options[\'sort\']',
562 'must be SORT_ASC or SORT_DESC'
564 $dbOptions[
'ORDER BY'] = [
565 "wl_namespace {$options['sort']}",
566 "wl_title {$options['sort']}"
573 [
'wl_namespace',
'wl_title',
'wl_notificationtimestamp' ],
574 [
'wl_user' =>
$user->getId() ],
580 foreach (
$res as $row ) {
584 new TitleValue( (
int)$row->wl_namespace, $row->wl_title ),
585 $row->wl_notificationtimestamp
589 return $watchedItems;
610 foreach ( $targets
as $target ) {
611 $timestamps[$target->getNamespace()][$target->getDBkey()] =
false;
614 if (
$user->isAnon() ) {
619 foreach ( $targets
as $target ) {
620 $cachedItem = $this->
getCached( $user, $target );
622 $timestamps[$target->getNamespace()][$target->getDBkey()] =
623 $cachedItem->getNotificationTimestamp();
625 $targetsToLoad[] = $target;
629 if ( !$targetsToLoad ) {
638 [
'wl_namespace',
'wl_title',
'wl_notificationtimestamp' ],
640 $lb->constructSet(
'wl',
$dbr ),
641 'wl_user' =>
$user->getId(),
646 foreach (
$res as $row ) {
647 $timestamps[$row->wl_namespace][$row->wl_title] =
670 if ( $this->readOnlyMode->isReadOnly() ) {
674 if (
$user->isAnon() ) {
684 foreach ( $targets
as $target ) {
686 'wl_user' =>
$user->getId(),
687 'wl_namespace' => $target->getNamespace(),
688 'wl_title' => $target->getDBkey(),
689 'wl_notificationtimestamp' =>
null,
696 $this->
uncache( $user, $target );
700 foreach ( array_chunk(
$rows, 100 )
as $toInsert ) {
703 $dbw->insert(
'watchlist', $toInsert, __METHOD__,
'IGNORE' );
708 foreach ( $items
as $item ) {
709 $this->
cache( $item );
723 if ( $this->readOnlyMode->isReadOnly() ||
$user->isAnon() ) {
727 $this->
uncache( $user, $target );
730 $dbw->delete(
'watchlist',
732 'wl_user' =>
$user->getId(),
737 $success = (bool)$dbw->affectedRows();
751 if (
$user->isAnon() ) {
757 $conds = [
'wl_user' =>
$user->getId() ];
760 $conds[] =
$batch->constructSet(
'wl', $dbw );
763 if ( $timestamp !==
null ) {
764 $timestamp = $dbw->timestamp( $timestamp );
769 [
'wl_notificationtimestamp' => $timestamp ],
781 if (
$user->isAnon() ) {
787 $user->getUserPage(),
788 [
'userId' =>
$user->getId(),
'casTime' => time() ]
794 $this->deferredUpdatesAddCallableUpdateCallback,
810 $uids = $dbw->selectFieldValues(
814 'wl_user != ' . intval(
$editor->getId() ),
817 'wl_notificationtimestamp IS NULL',
822 $watchers = array_map(
'intval', $uids );
827 function ()
use ( $timestamp, $watchers, $target,
$fname ) {
829 $ticket = $this->lbFactory->getEmptyTransactionTicket(
$fname );
831 $watchersChunks = array_chunk( $watchers, $this->updateRowsPerQuery );
832 foreach ( $watchersChunks
as $watchersChunk ) {
833 $dbw->update(
'watchlist',
835 'wl_notificationtimestamp' => $dbw->timestamp( $timestamp )
837 'wl_user' => $watchersChunk,
842 if (
count( $watchersChunks ) > 1 ) {
843 $this->lbFactory->commitAndWaitForReplication(
844 $fname, $ticket, [
'domain' => $dbw->getDomainID() ]
868 if ( $this->readOnlyMode->isReadOnly() ||
$user->isAnon() ) {
873 if ( $force !=
'force' ) {
875 if ( !$item || $item->getNotificationTimestamp() === null ) {
884 'type' =>
'updateWatchlistNotification',
885 'userid' =>
$user->getId(),
894 $this->deferredUpdatesAddCallableUpdateCallback,
911 if ( !
$title->getNextRevisionID( $oldid ) ) {
916 if ( $item ===
null ) {
928 $notificationTimestamp = call_user_func(
929 $this->revisionGetTimestampFromIdCallback,
937 $ts->timestamp->add(
new DateInterval(
'PT1S' ) );
938 $notificationTimestamp = $ts->getTimestamp( TS_MW );
941 if ( $force !=
'force' ) {
945 return $item->getNotificationTimestamp();
949 return $notificationTimestamp;
960 if ( $unreadLimit !==
null ) {
961 $unreadLimit = (int)$unreadLimit;
962 $queryOptions[
'LIMIT'] = $unreadLimit;
966 $rowCount =
$dbr->selectRowCount(
970 'wl_user' =>
$user->getId(),
971 'wl_notificationtimestamp IS NOT NULL',
977 if ( !isset( $unreadLimit ) ) {
981 if ( $rowCount >= $unreadLimit ) {
997 $this->
duplicateEntry( $oldTarget->getSubjectPage(), $newTarget->getSubjectPage() );
998 $this->
duplicateEntry( $oldTarget->getTalkPage(), $newTarget->getTalkPage() );
1011 [
'wl_user',
'wl_notificationtimestamp' ],
1014 'wl_title' => $oldTarget->
getDBkey(),
1021 $newDBkey = $newTarget->
getDBkey();
1023 # Construct array to replace into the watchlist
1027 'wl_user' => $row->wl_user,
1028 'wl_namespace' => $newNamespace,
1029 'wl_title' => $newDBkey,
1030 'wl_notificationtimestamp' => $row->wl_notificationtimestamp,
1034 if ( !empty( $values ) ) {
1036 # Note that multi-row replace is very efficient for MySQL but may be inefficient for
1037 # some other DBMSes, mostly due to poor simulation by us
1040 [ [
'wl_user',
'wl_namespace',
'wl_title' ] ],
getNotificationTimestampsBatch(User $user, array $targets)
Library for creating and parsing MW-style timestamps.
countUnreadNotifications(User $user, $unreadLimit=null)
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 account $user
overrideRevisionGetTimestampFromIdCallback(callable $callback)
Overrides the Revision::getTimestampFromId callback This is intended for use while testing and will f...
Job for updating user activity like "last viewed" timestamps.
addWatch(User $user, LinkTarget $target)
processing should stop and the error should be shown to the user * false
Simple store for keeping values in an associative array for the current process.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
getVisitingWatchersCondition(IDatabase $db, array $targetsWithVisitThresholds)
Generates condition for the query used in a batch count visiting watchers.
removeWatch(User $user, LinkTarget $target)
getWatchedItem(User $user, LinkTarget $target)
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
A service class for fetching the wiki's current read-only mode.
countVisitingWatchers(LinkTarget $target, $threshold)
Job for clearing all of the "last viewed" timestamps for a user's watchlist.
duplicateAllAssociatedEntries(LinkTarget $oldTarget, LinkTarget $newTarget)
resetAllNotificationTimestampsForUser(User $user)
Reset all watchlist notificaton timestamps for a user using the job queue.
LoadBalancer $loadBalancer
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
updateNotificationTimestamp(User $editor, LinkTarget $target, $timestamp)
resetNotificationTimestamp(User $user, Title $title, $force='', $oldid=0)
ReadOnlyMode $readOnlyMode
overrideDeferredUpdatesAddCallableUpdateCallback(callable $callback)
Overrides the DeferredUpdates::addCallableUpdate callback This is intended for use while testing and ...
namespace and then decline to actually register it file or subcat img or subcat $title
static newFromLinkTarget(LinkTarget $linkTarget)
Create a new Title from a LinkTarget.
clearUserWatchedItems(User $user)
Deletes ALL watched items for the given user when under $updateRowsPerQuery entries exist.
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
duplicateEntry(LinkTarget $oldTarget, LinkTarget $newTarget)
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
addWatchBatchForUser(User $user, array $targets)
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
passed in as a query string parameter to the various URLs constructed here(i.e. $prevlink) $ldel you ll need to handle error etc yourself modifying $error and returning true will cause the contents of $error to be echoed at the top of the edit form as wikitext Return true without altering $error to allow the edit to proceed & $editor
uncacheLinkTarget(LinkTarget $target)
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
getConnectionRef( $dbIndex)
callable null $deferredUpdatesAddCallableUpdateCallback
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
uncache(User $user, LinkTarget $target)
dbCond(User $user, LinkTarget $target)
Return an array of conditions to select or update the appropriate database row.
__construct(ILBFactory $lbFactory, HashBagOStuff $cache, ReadOnlyMode $readOnlyMode, $updateRowsPerQuery)
Describes a Statsd aware interface.
uncacheAllItemsForUser(User $user)
array[] $cacheIndex
Looks like $cacheIndex[Namespace ID][Target DB Key][User Id] => 'key' The index is needed so that on ...
Representation of a pair of user and title for watchlist entries.
setNotificationTimestampsForUser(User $user, $timestamp, array $targets=[])
Storage layer class for WatchedItems.
countWatchedItems(User $user)
Represents a title within MediaWiki.
static singleton( $domain=false)
getWatchedItemsForUser(User $user, array $options=[])
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
StatsdDataFactoryInterface $stats
countWatchers(LinkTarget $target)
loadWatchedItem(User $user, LinkTarget $target)
if(count( $args)< 1) $job
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
getCached(User $user, LinkTarget $target)
countVisitingWatchersMultiple(array $targetsWithVisitThresholds, $minimumWatchers=null)
setStatsdDataFactory(StatsdDataFactoryInterface $stats)
static newForUser(User $user, $maxWatchlistId)
clearUserWatchedItemsUsingJobQueue(User $user)
Queues a job that will clear the users watchlist using the Job Queue.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
isWatched(User $user, LinkTarget $target)
callable null $revisionGetTimestampFromIdCallback
getNotificationTimestamp(User $user, Title $title, $item, $force, $oldid)
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static addCallableUpdate( $callable, $stage=self::POSTSEND, $dbw=null)
Add a callable update.
getCacheKey(User $user, LinkTarget $target)
countWatchersMultiple(array $targets, array $options=[])
Represents a page (or page fragment) title within MediaWiki.