39 if ( $user->isAnon() ) {
40 $this->
dieWithError(
'watchlistanontext',
'notloggedin' );
51 if (
$params[
'entirewatchlist'] && $pageSet->getDataSource() !==
null ) {
54 'apierror-invalidparammix-cannotusewith',
56 $pageSet->encodeParamName( $pageSet->getDataSource() )
65 if ( isset(
$params[
'timestamp'] ) ) {
66 $timestamp = $dbw->timestamp(
$params[
'timestamp'] );
69 if ( !
$params[
'entirewatchlist'] ) {
73 if ( isset(
$params[
'torevid'] ) ) {
74 if (
$params[
'entirewatchlist'] || $pageSet->getGoodTitleCount() > 1 ) {
77 $titles = $pageSet->getGoodTitles();
80 $timestamp = MediaWikiServices::getInstance()->getRevisionStore()
81 ->getTimestampFromId( $title,
$params[
'torevid'], IDBAccessObject::READ_LATEST );
83 $timestamp = $dbw->timestamp( $timestamp );
88 } elseif ( isset(
$params[
'newerthanrevid'] ) ) {
89 if (
$params[
'entirewatchlist'] || $pageSet->getGoodTitleCount() > 1 ) {
92 $titles = $pageSet->getGoodTitles();
95 $revid = $title->getNextRevisionID(
$params[
'newerthanrevid'], Title::GAID_FOR_UPDATE );
97 $timestamp = $dbw->timestamp(
98 MediaWikiServices::getInstance()->getRevisionStore()->getTimestampFromId( $title, $revid )
106 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
109 if (
$params[
'entirewatchlist'] ) {
111 $watchedItemStore->setNotificationTimestampsForUser(
116 $result[
'notificationtimestamp'] = is_null( $timestamp )
121 foreach ( $pageSet->getInvalidTitlesAndReasons() as $r ) {
122 $r[
'invalid'] =
true;
125 foreach ( $pageSet->getMissingPageIDs() as $p ) {
127 $page[
'pageid'] = $p;
128 $page[
'missing'] =
true;
129 $page[
'notwatched'] =
true;
132 foreach ( $pageSet->getMissingRevisionIDs() as $r ) {
135 $rev[
'missing'] =
true;
136 $rev[
'notwatched'] =
true;
140 if ( $pageSet->getTitles() ) {
142 $watchedItemStore->setNotificationTimestampsForUser(
145 $pageSet->getTitles()
149 $timestamps = $watchedItemStore->getNotificationTimestampsBatch(
151 $pageSet->getTitles()
156 foreach ( $pageSet->getTitles() as $title ) {
157 $ns = $title->getNamespace();
158 $dbkey = $title->getDBkey();
160 'ns' => intval( $ns ),
161 'title' => $title->getPrefixedText(),
163 if ( !$title->exists() ) {
164 $r[
'missing'] =
true;
165 if ( $title->isKnown() ) {
169 if ( isset( $timestamps[$ns] ) && array_key_exists( $dbkey, $timestamps[$ns] ) ) {
170 $r[
'notificationtimestamp'] =
'';
171 if ( $timestamps[$ns][$dbkey] !==
null ) {
172 $r[
'notificationtimestamp'] =
wfTimestamp( TS_ISO_8601, $timestamps[$ns][$dbkey] );
175 $r[
'notwatched'] =
true;
183 $apiResult->addValue(
null, $this->
getModuleName(), $result );
186 $continuationManager->setContinuationIntoResult( $apiResult );
194 if ( $this->mPageSet ===
null ) {
215 'entirewatchlist' => [
224 'newerthanrevid' => [
232 $result += $this->
getPageSet()->getFinalParams( $flags );
240 'action=setnotificationtimestamp&entirewatchlist=&token=123ABC'
241 =>
'apihelp-setnotificationtimestamp-example-all',
242 'action=setnotificationtimestamp&titles=Main_page&token=123ABC'
243 =>
'apihelp-setnotificationtimestamp-example-page',
244 'action=setnotificationtimestamp&titles=Main_page&' .
245 'timestamp=2012-01-01T00:00:00Z&token=123ABC'
246 =>
'apihelp-setnotificationtimestamp-example-pagetimestamp',
247 'action=setnotificationtimestamp&generator=allpages&gapnamespace=2&token=123ABC'
248 =>
'apihelp-setnotificationtimestamp-example-allpages',
253 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:SetNotificationTimestamp';
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
This abstract class implements many basic API functions, and is the base of all API classes.
checkUserRightsAny( $rights, $user=null)
Helper function for permission-denied errors.
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
setContinuationManager(ApiContinuationManager $manager=null)
Set the continuation manager.
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
getModuleName()
Get the name of the module being executed by this instance.
This manages continuation state.
This class contains a list of pages that the client has requested.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
API interface for setting the wl_notificationtimestamp field.
getExamplesMessages()
Returns usage examples for this module.
getPageSet()
Get a cached instance of an ApiPageSet object.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getAllowedParams( $flags=0)
getHelpUrls()
Return links to more detailed help pages about the module.
mustBePosted()
Indicates whether this module must be called with a POST request.
needsToken()
Returns the token type this module requires in order to execute.
isWriteMode()
Indicates whether this module requires write mode.
namespace being checked & $result
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles