Added spaces before and removed spaces after 'array'
[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 $linkToDiffs = false;
38 private $linkToSections = false;
39
40 /**
41 * This module uses a custom feed wrapper printer.
42 *
43 * @return ApiFormatFeedWrapper
44 */
45 public function getCustomPrinter() {
46 return new ApiFormatFeedWrapper( $this->getMain() );
47 }
48
49 /**
50 * Make a nested call to the API to request watchlist items in the last $hours.
51 * Wrap the result as an RSS/Atom feed.
52 */
53 public function execute() {
54 global $wgFeed, $wgFeedClasses, $wgFeedLimit, $wgSitename, $wgLanguageCode;
55
56 try {
57 $params = $this->extractRequestParams();
58
59 if( !$wgFeed ) {
60 $this->dieUsage( 'Syndication feeds are not available', 'feed-unavailable' );
61 }
62
63 if( !isset( $wgFeedClasses[$params['feedformat']] ) ) {
64 $this->dieUsage( 'Invalid subscription feed type', 'feed-invalid' );
65 }
66
67 // limit to the number of hours going from now back
68 $endTime = wfTimestamp( TS_MW, time() - intval( $params['hours'] * 60 * 60 ) );
69
70 // Prepare parameters for nested request
71 $fauxReqArr = array(
72 'action' => 'query',
73 'meta' => 'siteinfo',
74 'siprop' => 'general',
75 'list' => 'watchlist',
76 'wlprop' => 'title|user|comment|timestamp',
77 'wldir' => 'older', // reverse order - from newest to oldest
78 'wlend' => $endTime, // stop at this time
79 'wllimit' => ( 50 > $wgFeedLimit ) ? $wgFeedLimit : 50
80 );
81
82 if ( $params['wlowner'] !== null ) {
83 $fauxReqArr['wlowner'] = $params['wlowner'];
84 }
85 if ( $params['wltoken'] !== null ) {
86 $fauxReqArr['wltoken'] = $params['wltoken'];
87 }
88 if ( $params['wlexcludeuser'] !== null ) {
89 $fauxReqArr['wlexcludeuser'] = $params['wlexcludeuser'];
90 }
91 if ( $params['wlshow'] !== null ) {
92 $fauxReqArr['wlshow'] = $params['wlshow'];
93 }
94
95 // Support linking to diffs instead of article
96 if ( $params['linktodiffs'] ) {
97 $this->linkToDiffs = true;
98 $fauxReqArr['wlprop'] .= '|ids';
99 }
100
101 // Support linking directly to sections when possible
102 // (possible only if section name is present in comment)
103 if ( $params['linktosections'] ) {
104 $this->linkToSections = true;
105 }
106
107 // Check for 'allrev' parameter, and if found, show all revisions to each page on wl.
108 if ( $params['allrev'] ) {
109 $fauxReqArr['wlallrev'] = '';
110 }
111
112 // Create the request
113 $fauxReq = new FauxRequest( $fauxReqArr );
114
115 // Execute
116 $module = new ApiMain( $fauxReq );
117 $module->execute();
118
119 // Get data array
120 $data = $module->getResultData();
121
122 $feedItems = array();
123 foreach ( (array)$data['query']['watchlist'] as $info ) {
124 $feedItems[] = $this->createFeedItem( $info );
125 }
126
127 $msg = wfMessage( 'watchlist' )->inContentLanguage()->text();
128
129 $feedTitle = $wgSitename . ' - ' . $msg . ' [' . $wgLanguageCode . ']';
130 $feedUrl = SpecialPage::getTitleFor( 'Watchlist' )->getFullURL();
131
132 $feed = new $wgFeedClasses[$params['feedformat']] ( $feedTitle, htmlspecialchars( $msg ), $feedUrl );
133
134 ApiFormatFeedWrapper::setResult( $this->getResult(), $feed, $feedItems );
135
136 } catch ( Exception $e ) {
137
138 // Error results should not be cached
139 $this->getMain()->setCacheMaxAge( 0 );
140
141 $feedTitle = $wgSitename . ' - Error - ' . wfMessage( 'watchlist' )->inContentLanguage()->text() . ' [' . $wgLanguageCode . ']';
142 $feedUrl = SpecialPage::getTitleFor( 'Watchlist' )->getFullURL();
143
144 $feedFormat = isset( $params['feedformat'] ) ? $params['feedformat'] : 'rss';
145 $msg = wfMessage( 'watchlist' )->inContentLanguage()->escaped();
146 $feed = new $wgFeedClasses[$feedFormat] ( $feedTitle, $msg, $feedUrl );
147
148 if ( $e instanceof UsageException ) {
149 $errorCode = $e->getCodeString();
150 } else {
151 // Something is seriously wrong
152 $errorCode = 'internal_api_error';
153 }
154
155 $errorText = $e->getMessage();
156 $feedItems[] = new FeedItem( "Error ($errorCode)", $errorText, '', '', '' );
157 ApiFormatFeedWrapper::setResult( $this->getResult(), $feed, $feedItems );
158 }
159 }
160
161 /**
162 * @param $info array
163 * @return FeedItem
164 */
165 private function createFeedItem( $info ) {
166 $titleStr = $info['title'];
167 $title = Title::newFromText( $titleStr );
168 if ( $this->linkToDiffs && isset( $info['revid'] ) ) {
169 $titleUrl = $title->getFullURL( array( 'diff' => $info['revid'] ) );
170 } else {
171 $titleUrl = $title->getFullURL();
172 }
173 $comment = isset( $info['comment'] ) ? $info['comment'] : null;
174
175 // Create an anchor to section.
176 // The anchor won't work for sections that have dupes on page
177 // as there's no way to strip that info from ApiWatchlist (apparently?).
178 // RegExp in the line below is equal to Linker::formatAutocomments().
179 if ( $this->linkToSections && $comment !== null && preg_match( '!(.*)/\*\s*(.*?)\s*\*/(.*)!', $comment, $matches ) ) {
180 global $wgParser;
181 $sectionTitle = $wgParser->stripSectionName( $matches[2] );
182 $sectionTitle = Sanitizer::normalizeSectionNameWhitespace( $sectionTitle );
183 $titleUrl .= Title::newFromText( '#' . $sectionTitle )->getFragmentForURL();
184 }
185
186 $timestamp = $info['timestamp'];
187 $user = $info['user'];
188
189 $completeText = "$comment ($user)";
190
191 return new FeedItem( $titleStr, $completeText, $titleUrl, $timestamp, $user );
192 }
193
194 private function getWatchlistModule() {
195 if ( $this->watchlistModule === null ) {
196 $this->watchlistModule = $this->getMain()->getModuleManager()->getModule( 'query' )
197 ->getModuleManager()->getModule( 'watchlist' );
198 }
199 return $this->watchlistModule;
200 }
201
202 public function getAllowedParams( $flags = 0 ) {
203 global $wgFeedClasses;
204 $feedFormatNames = array_keys( $wgFeedClasses );
205 $ret = array(
206 'feedformat' => array(
207 ApiBase::PARAM_DFLT => 'rss',
208 ApiBase::PARAM_TYPE => $feedFormatNames
209 ),
210 'hours' => array(
211 ApiBase::PARAM_DFLT => 24,
212 ApiBase::PARAM_TYPE => 'integer',
213 ApiBase::PARAM_MIN => 1,
214 ApiBase::PARAM_MAX => 72,
215 ),
216 'linktodiffs' => false,
217 'linktosections' => false,
218 );
219 if ( $flags ) {
220 $wlparams = $this->getWatchlistModule()->getAllowedParams( $flags );
221 $ret['allrev'] = $wlparams['allrev'];
222 $ret['wlowner'] = $wlparams['owner'];
223 $ret['wltoken'] = $wlparams['token'];
224 $ret['wlshow'] = $wlparams['show'];
225 $ret['wlexcludeuser'] = $wlparams['excludeuser'];
226 } else {
227 $ret['allrev'] = null;
228 $ret['wlowner'] = null;
229 $ret['wltoken'] = null;
230 $ret['wlshow'] = null;
231 $ret['wlexcludeuser'] = null;
232 }
233 return $ret;
234 }
235
236 public function getParamDescription() {
237 $wldescr = $this->getWatchlistModule()->getParamDescription();
238 return array(
239 'feedformat' => 'The format of the feed',
240 'hours' => 'List pages modified within this many hours from now',
241 'linktodiffs' => 'Link to change differences instead of article pages',
242 'linktosections' => 'Link directly to changed sections if possible',
243 'allrev' => $wldescr['allrev'],
244 'wlowner' => $wldescr['owner'],
245 'wltoken' => $wldescr['token'],
246 'wlshow' => $wldescr['show'],
247 'wlexcludeuser' => $wldescr['excludeuser'],
248 );
249 }
250
251 public function getDescription() {
252 return 'Returns a watchlist feed';
253 }
254
255 public function getPossibleErrors() {
256 return array_merge( parent::getPossibleErrors(), array(
257 array( 'code' => 'feed-unavailable', 'info' => 'Syndication feeds are not available' ),
258 array( 'code' => 'feed-invalid', 'info' => 'Invalid subscription feed type' ),
259 ) );
260 }
261
262 public function getExamples() {
263 return array(
264 'api.php?action=feedwatchlist',
265 'api.php?action=feedwatchlist&allrev=&linktodiffs=&hours=6'
266 );
267 }
268
269 public function getHelpUrls() {
270 return 'https://www.mediawiki.org/wiki/API:Watchlist_feed';
271 }
272 }