Merge "Add configuration for running etsy/phan against core"
[lhc/web/wiklou.git] / includes / api / ApiFeedWatchlist.php
1 <?php
2 /**
3 *
4 *
5 * Created on Oct 13, 2006
6 *
7 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * This action allows users to get their watchlist items in RSS/Atom formats.
29 * When executed, it performs a nested call to the API to get the needed data,
30 * and formats it in a proper format.
31 *
32 * @ingroup API
33 */
34 class ApiFeedWatchlist extends ApiBase {
35
36 private $watchlistModule = null;
37 private $linkToSections = false;
38
39 /**
40 * This module uses a custom feed wrapper printer.
41 *
42 * @return ApiFormatFeedWrapper
43 */
44 public function getCustomPrinter() {
45 return new ApiFormatFeedWrapper( $this->getMain() );
46 }
47
48 /**
49 * Make a nested call to the API to request watchlist items in the last $hours.
50 * Wrap the result as an RSS/Atom feed.
51 */
52 public function execute() {
53 $config = $this->getConfig();
54 $feedClasses = $config->get( 'FeedClasses' );
55 try {
56 $params = $this->extractRequestParams();
57
58 if ( !$config->get( 'Feed' ) ) {
59 $this->dieWithError( 'feed-unavailable' );
60 }
61
62 if ( !isset( $feedClasses[$params['feedformat']] ) ) {
63 $this->dieWithError( 'feed-invalid' );
64 }
65
66 // limit to the number of hours going from now back
67 $endTime = wfTimestamp( TS_MW, time() - intval( $params['hours'] * 60 * 60 ) );
68
69 // Prepare parameters for nested request
70 $fauxReqArr = [
71 'action' => 'query',
72 'meta' => 'siteinfo',
73 'siprop' => 'general',
74 'list' => 'watchlist',
75 'wlprop' => 'title|user|comment|timestamp|ids',
76 'wldir' => 'older', // reverse order - from newest to oldest
77 'wlend' => $endTime, // stop at this time
78 'wllimit' => min( 50, $this->getConfig()->get( 'FeedLimit' ) )
79 ];
80
81 if ( $params['wlowner'] !== null ) {
82 $fauxReqArr['wlowner'] = $params['wlowner'];
83 }
84 if ( $params['wltoken'] !== null ) {
85 $fauxReqArr['wltoken'] = $params['wltoken'];
86 }
87 if ( $params['wlexcludeuser'] !== null ) {
88 $fauxReqArr['wlexcludeuser'] = $params['wlexcludeuser'];
89 }
90 if ( $params['wlshow'] !== null ) {
91 $fauxReqArr['wlshow'] = $params['wlshow'];
92 }
93 if ( $params['wltype'] !== null ) {
94 $fauxReqArr['wltype'] = $params['wltype'];
95 }
96
97 // Support linking directly to sections when possible
98 // (possible only if section name is present in comment)
99 if ( $params['linktosections'] ) {
100 $this->linkToSections = true;
101 }
102
103 // Check for 'allrev' parameter, and if found, show all revisions to each page on wl.
104 if ( $params['allrev'] ) {
105 $fauxReqArr['wlallrev'] = '';
106 }
107
108 // Create the request
109 $fauxReq = new FauxRequest( $fauxReqArr );
110
111 // Execute
112 $module = new ApiMain( $fauxReq );
113 $module->execute();
114
115 $data = $module->getResult()->getResultData( [ 'query', 'watchlist' ] );
116 $feedItems = [];
117 foreach ( (array)$data as $key => $info ) {
118 if ( ApiResult::isMetadataKey( $key ) ) {
119 continue;
120 }
121 $feedItem = $this->createFeedItem( $info );
122 if ( $feedItem ) {
123 $feedItems[] = $feedItem;
124 }
125 }
126
127 $msg = wfMessage( 'watchlist' )->inContentLanguage()->text();
128
129 $feedTitle = $this->getConfig()->get( 'Sitename' ) . ' - ' . $msg .
130 ' [' . $this->getConfig()->get( 'LanguageCode' ) . ']';
131 $feedUrl = SpecialPage::getTitleFor( 'Watchlist' )->getFullURL();
132
133 $feed = new $feedClasses[$params['feedformat']] (
134 $feedTitle,
135 htmlspecialchars( $msg ),
136 $feedUrl
137 );
138
139 ApiFormatFeedWrapper::setResult( $this->getResult(), $feed, $feedItems );
140 } catch ( Exception $e ) {
141 // Error results should not be cached
142 $this->getMain()->setCacheMaxAge( 0 );
143
144 // @todo FIXME: Localise brackets
145 $feedTitle = $this->getConfig()->get( 'Sitename' ) . ' - Error - ' .
146 wfMessage( 'watchlist' )->inContentLanguage()->text() .
147 ' [' . $this->getConfig()->get( 'LanguageCode' ) . ']';
148 $feedUrl = SpecialPage::getTitleFor( 'Watchlist' )->getFullURL();
149
150 $feedFormat = isset( $params['feedformat'] ) ? $params['feedformat'] : 'rss';
151 $msg = wfMessage( 'watchlist' )->inContentLanguage()->escaped();
152 $feed = new $feedClasses[$feedFormat] ( $feedTitle, $msg, $feedUrl );
153
154 if ( $e instanceof ApiUsageException ) {
155 foreach ( $e->getStatusValue()->getErrors() as $error ) {
156 $msg = ApiMessage::create( $error )
157 ->inLanguage( $this->getLanguage() );
158 $errorTitle = $this->msg( 'api-feed-error-title', $msg->getApiCode() );
159 $errorText = $msg->text();
160 $feedItems[] = new FeedItem( $errorTitle, $errorText, '', '', '' );
161 }
162 } else {
163 if ( $e instanceof UsageException ) {
164 $errorCode = $e->getCodeString();
165 } else {
166 // Something is seriously wrong
167 $errorCode = 'internal_api_error';
168 }
169 $errorTitle = $this->msg( 'api-feed-error-title', $msg->getApiCode() );
170 $errorText = $e->getMessage();
171 $feedItems[] = new FeedItem( $errorTitle, $errorText, '', '', '' );
172 }
173
174 ApiFormatFeedWrapper::setResult( $this->getResult(), $feed, $feedItems );
175 }
176 }
177
178 /**
179 * @param array $info
180 * @return FeedItem
181 */
182 private function createFeedItem( $info ) {
183 if ( !isset( $info['title'] ) ) {
184 // Probably a revdeled log entry, skip it.
185 return null;
186 }
187
188 $titleStr = $info['title'];
189 $title = Title::newFromText( $titleStr );
190 $curidParam = [];
191 if ( !$title || $title->isExternal() ) {
192 // Probably a formerly-valid title that's now conflicting with an
193 // interwiki prefix or the like.
194 if ( isset( $info['pageid'] ) ) {
195 $title = Title::newFromID( $info['pageid'] );
196 $curidParam = [ 'curid' => $info['pageid'] ];
197 }
198 if ( !$title || $title->isExternal() ) {
199 return null;
200 }
201 }
202 if ( isset( $info['revid'] ) ) {
203 $titleUrl = $title->getFullURL( [ 'diff' => $info['revid'] ] );
204 } else {
205 $titleUrl = $title->getFullURL( $curidParam );
206 }
207 $comment = isset( $info['comment'] ) ? $info['comment'] : null;
208
209 // Create an anchor to section.
210 // The anchor won't work for sections that have dupes on page
211 // as there's no way to strip that info from ApiWatchlist (apparently?).
212 // RegExp in the line below is equal to Linker::formatAutocomments().
213 if ( $this->linkToSections && $comment !== null &&
214 preg_match( '!(.*)/\*\s*(.*?)\s*\*/(.*)!', $comment, $matches )
215 ) {
216 global $wgParser;
217
218 $sectionTitle = $wgParser->stripSectionName( $matches[2] );
219 $sectionTitle = Sanitizer::normalizeSectionNameWhitespace( $sectionTitle );
220 $titleUrl .= Title::newFromText( '#' . $sectionTitle )->getFragmentForURL();
221 }
222
223 $timestamp = $info['timestamp'];
224
225 if ( isset( $info['user'] ) ) {
226 $user = $info['user'];
227 $completeText = "$comment ($user)";
228 } else {
229 $user = '';
230 $completeText = (string)$comment;
231 }
232
233 return new FeedItem( $titleStr, $completeText, $titleUrl, $timestamp, $user );
234 }
235
236 private function getWatchlistModule() {
237 if ( $this->watchlistModule === null ) {
238 $this->watchlistModule = $this->getMain()->getModuleManager()->getModule( 'query' )
239 ->getModuleManager()->getModule( 'watchlist' );
240 }
241
242 return $this->watchlistModule;
243 }
244
245 public function getAllowedParams( $flags = 0 ) {
246 $feedFormatNames = array_keys( $this->getConfig()->get( 'FeedClasses' ) );
247 $ret = [
248 'feedformat' => [
249 ApiBase::PARAM_DFLT => 'rss',
250 ApiBase::PARAM_TYPE => $feedFormatNames
251 ],
252 'hours' => [
253 ApiBase::PARAM_DFLT => 24,
254 ApiBase::PARAM_TYPE => 'integer',
255 ApiBase::PARAM_MIN => 1,
256 ApiBase::PARAM_MAX => 72,
257 ],
258 'linktosections' => false,
259 ];
260
261 $copyParams = [
262 'allrev' => 'allrev',
263 'owner' => 'wlowner',
264 'token' => 'wltoken',
265 'show' => 'wlshow',
266 'type' => 'wltype',
267 'excludeuser' => 'wlexcludeuser',
268 ];
269 if ( $flags ) {
270 $wlparams = $this->getWatchlistModule()->getAllowedParams( $flags );
271 foreach ( $copyParams as $from => $to ) {
272 $p = $wlparams[$from];
273 if ( !is_array( $p ) ) {
274 $p = [ ApiBase::PARAM_DFLT => $p ];
275 }
276 if ( !isset( $p[ApiBase::PARAM_HELP_MSG] ) ) {
277 $p[ApiBase::PARAM_HELP_MSG] = "apihelp-query+watchlist-param-$from";
278 }
279 if ( isset( $p[ApiBase::PARAM_TYPE] ) && is_array( $p[ApiBase::PARAM_TYPE] ) &&
280 isset( $p[ApiBase::PARAM_HELP_MSG_PER_VALUE] )
281 ) {
282 foreach ( $p[ApiBase::PARAM_TYPE] as $v ) {
283 if ( !isset( $p[ApiBase::PARAM_HELP_MSG_PER_VALUE][$v] ) ) {
284 $p[ApiBase::PARAM_HELP_MSG_PER_VALUE][$v] = "apihelp-query+watchlist-paramvalue-$from-$v";
285 }
286 }
287 }
288 $ret[$to] = $p;
289 }
290 } else {
291 foreach ( $copyParams as $from => $to ) {
292 $ret[$to] = null;
293 }
294 }
295
296 return $ret;
297 }
298
299 protected function getExamplesMessages() {
300 return [
301 'action=feedwatchlist'
302 => 'apihelp-feedwatchlist-example-default',
303 'action=feedwatchlist&allrev=&hours=6'
304 => 'apihelp-feedwatchlist-example-all6hrs',
305 ];
306 }
307
308 public function getHelpUrls() {
309 return 'https://www.mediawiki.org/wiki/API:Watchlist_feed';
310 }
311 }