MediaWiki  1.27.2
ApiQueryWatchlistRaw.php
Go to the documentation of this file.
1 <?php
34 
35  public function __construct( ApiQuery $query, $moduleName ) {
36  parent::__construct( $query, $moduleName, 'wr' );
37  }
38 
39  public function execute() {
40  $this->run();
41  }
42 
43  public function executeGenerator( $resultPageSet ) {
44  $this->run( $resultPageSet );
45  }
46 
51  private function run( $resultPageSet = null ) {
52  $this->selectNamedDB( 'watchlist', DB_SLAVE, 'watchlist' );
53 
54  $params = $this->extractRequestParams();
55 
56  $user = $this->getWatchlistUser( $params );
57 
58  $prop = array_flip( (array)$params['prop'] );
59  $show = array_flip( (array)$params['show'] );
60  if ( isset( $show['changed'] ) && isset( $show['!changed'] ) ) {
61  $this->dieUsageMsg( 'show' );
62  }
63 
64  $this->addTables( 'watchlist' );
65  $this->addFields( [ 'wl_namespace', 'wl_title' ] );
66  $this->addFieldsIf( 'wl_notificationtimestamp', isset( $prop['changed'] ) );
67  $this->addWhereFld( 'wl_user', $user->getId() );
68  $this->addWhereFld( 'wl_namespace', $params['namespace'] );
69  $this->addWhereIf( 'wl_notificationtimestamp IS NOT NULL', isset( $show['changed'] ) );
70  $this->addWhereIf( 'wl_notificationtimestamp IS NULL', isset( $show['!changed'] ) );
71 
72  if ( isset( $params['continue'] ) ) {
73  $cont = explode( '|', $params['continue'] );
74  $this->dieContinueUsageIf( count( $cont ) != 2 );
75  $ns = intval( $cont[0] );
76  $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
77  $title = $this->getDB()->addQuotes( $cont[1] );
78  $op = $params['dir'] == 'ascending' ? '>' : '<';
79  $this->addWhere(
80  "wl_namespace $op $ns OR " .
81  "(wl_namespace = $ns AND " .
82  "wl_title $op= $title)"
83  );
84  }
85 
86  if ( isset( $params['fromtitle'] ) ) {
87  list( $ns, $title ) = $this->prefixedTitlePartToKey( $params['fromtitle'] );
88  $title = $this->getDB()->addQuotes( $title );
89  $op = $params['dir'] == 'ascending' ? '>' : '<';
90  $this->addWhere(
91  "wl_namespace $op $ns OR " .
92  "(wl_namespace = $ns AND " .
93  "wl_title $op= $title)"
94  );
95  }
96 
97  if ( isset( $params['totitle'] ) ) {
98  list( $ns, $title ) = $this->prefixedTitlePartToKey( $params['totitle'] );
99  $title = $this->getDB()->addQuotes( $title );
100  $op = $params['dir'] == 'ascending' ? '<' : '>'; // Reversed from above!
101  $this->addWhere(
102  "wl_namespace $op $ns OR " .
103  "(wl_namespace = $ns AND " .
104  "wl_title $op= $title)"
105  );
106  }
107 
108  $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
109  // Don't ORDER BY wl_namespace if it's constant in the WHERE clause
110  if ( count( $params['namespace'] ) == 1 ) {
111  $this->addOption( 'ORDER BY', 'wl_title' . $sort );
112  } else {
113  $this->addOption( 'ORDER BY', [
114  'wl_namespace' . $sort,
115  'wl_title' . $sort
116  ] );
117  }
118  $this->addOption( 'LIMIT', $params['limit'] + 1 );
119  $res = $this->select( __METHOD__ );
120 
121  $titles = [];
122  $count = 0;
123  foreach ( $res as $row ) {
124  if ( ++$count > $params['limit'] ) {
125  // We've reached the one extra which shows that there are
126  // additional pages to be had. Stop here...
127  $this->setContinueEnumParameter( 'continue', $row->wl_namespace . '|' . $row->wl_title );
128  break;
129  }
130  $t = Title::makeTitle( $row->wl_namespace, $row->wl_title );
131 
132  if ( is_null( $resultPageSet ) ) {
133  $vals = [];
134  ApiQueryBase::addTitleInfo( $vals, $t );
135  if ( isset( $prop['changed'] ) && !is_null( $row->wl_notificationtimestamp ) ) {
136  $vals['changed'] = wfTimestamp( TS_ISO_8601, $row->wl_notificationtimestamp );
137  }
138  $fit = $this->getResult()->addValue( $this->getModuleName(), null, $vals );
139  if ( !$fit ) {
140  $this->setContinueEnumParameter( 'continue', $row->wl_namespace . '|' . $row->wl_title );
141  break;
142  }
143  } else {
144  $titles[] = $t;
145  }
146  }
147  if ( is_null( $resultPageSet ) ) {
148  $this->getResult()->addIndexedTagName( $this->getModuleName(), 'wr' );
149  } else {
150  $resultPageSet->populateFromTitles( $titles );
151  }
152  }
153 
154  public function getAllowedParams() {
155  return [
156  'continue' => [
157  ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
158  ],
159  'namespace' => [
160  ApiBase::PARAM_ISMULTI => true,
161  ApiBase::PARAM_TYPE => 'namespace'
162  ],
163  'limit' => [
164  ApiBase::PARAM_DFLT => 10,
165  ApiBase::PARAM_TYPE => 'limit',
166  ApiBase::PARAM_MIN => 1,
169  ],
170  'prop' => [
171  ApiBase::PARAM_ISMULTI => true,
173  'changed',
174  ],
176  ],
177  'show' => [
178  ApiBase::PARAM_ISMULTI => true,
180  'changed',
181  '!changed',
182  ]
183  ],
184  'owner' => [
185  ApiBase::PARAM_TYPE => 'user'
186  ],
187  'token' => [
188  ApiBase::PARAM_TYPE => 'string',
189  ApiBase::PARAM_SENSITIVE => true,
190  ],
191  'dir' => [
192  ApiBase::PARAM_DFLT => 'ascending',
194  'ascending',
195  'descending'
196  ],
197  ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
198  ],
199  'fromtitle' => [
200  ApiBase::PARAM_TYPE => 'string'
201  ],
202  'totitle' => [
203  ApiBase::PARAM_TYPE => 'string'
204  ],
205  ];
206  }
207 
208  protected function getExamplesMessages() {
209  return [
210  'action=query&list=watchlistraw'
211  => 'apihelp-query+watchlistraw-example-simple',
212  'action=query&generator=watchlistraw&gwrshow=changed&prop=info'
213  => 'apihelp-query+watchlistraw-example-generator',
214  ];
215  }
216 
217  public function getHelpUrls() {
218  return 'https://www.mediawiki.org/wiki/API:Watchlistraw';
219  }
220 }
select($method, $extraQuery=[])
Execute a SELECT query based on the values in the internal arrays.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below...
Definition: ApiBase.php:88
getDB()
Get the Query database connection (read-only)
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition: ApiBase.php:186
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
Definition: deferred.txt:11
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1418
getResult()
Get the result object.
Definition: ApiBase.php:584
getWatchlistUser($params)
Gets the user for whom to get the watchlist.
Definition: ApiBase.php:1406
addWhereFld($field, $value)
Equivalent to addWhere(array($field => $value))
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:50
const LIMIT_BIG1
Fast query, standard limit.
Definition: ApiBase.php:184
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:91
$sort
extractRequestParams($parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user...
Definition: ApiBase.php:685
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
Definition: ApiBase.php:157
setContinueEnumParameter($paramName, $paramValue)
Overridden to set the generator param if in generator mode.
addWhere($value)
Add a set of WHERE clauses to the internal array.
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
const TS_ISO_8601
ISO 8601 format with no timezone: 1986-02-09T20:00:00Z.
addWhereIf($value, $condition)
Same as addWhere(), but add the WHERE clauses only if a condition is met.
$res
Definition: database.txt:21
addOption($name, $value=null)
Add an option such as LIMIT or USE INDEX.
$params
prefixedTitlePartToKey($titlePart, $defaultNamespace=NS_MAIN)
Convert an input title or title prefix into a namespace constant and dbkey.
const DB_SLAVE
Definition: Defines.php:46
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:464
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right, for PARAM_TYPE 'limit'.
Definition: ApiBase.php:97
This is the main query class.
Definition: ApiQuery.php:38
__construct(ApiQuery $query, $moduleName)
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:9
dieContinueUsageIf($condition)
Die with the $prefix.
Definition: ApiBase.php:2181
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter...
Definition: ApiBase.php:125
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 local account $user
Definition: hooks.txt:242
executeGenerator($resultPageSet)
const PARAM_SENSITIVE
(boolean) Is the parameter sensitive? Note 'password'-type fields are always sensitive regardless of ...
Definition: ApiBase.php:179
addFieldsIf($value, $condition)
Same as addFields(), but add the fields only if a condition is met.
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:35
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
Definition: linkcache.txt:17
run($resultPageSet=null)
addFields($value)
Add a set of fields to select to the internal array.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:53
$count
This query action allows clients to retrieve a list of pages on the logged-in user's watchlist...
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:100
static addTitleInfo(&$arr, $title, $prefix= '')
Add information (title and namespace) about a Title object to a result array.
addTables($tables, $alias=null)
Add a set of tables to the internal array.
dieUsageMsg($error)
Output the error message related to a certain array.
Definition: ApiBase.php:2144
static & makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:524
selectNamedDB($name, $db, $groups)
Selects the query database connection with the given name.