Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / api / ApiFeedWatchlist.php
blobbfa750bfa415519c4a299fc055ec014368e500bf
1 <?php
2 /**
5 * Created on Oct 13, 2006
7 * Copyright © 2006 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
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.
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.
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
24 * @file
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.
32 * @ingroup API
34 class ApiFeedWatchlist extends ApiBase {
36 private $watchlistModule = null;
37 private $linkToSections = false;
39 /**
40 * This module uses a custom feed wrapper printer.
42 * @return ApiFormatFeedWrapper
44 public function getCustomPrinter() {
45 return new ApiFormatFeedWrapper( $this->getMain() );
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.
52 public function execute() {
53 $config = $this->getConfig();
54 $feedClasses = $config->get( 'FeedClasses' );
55 try {
56 $params = $this->extractRequestParams();
58 if ( !$config->get( 'Feed' ) ) {
59 $this->dieUsage( 'Syndication feeds are not available', 'feed-unavailable' );
62 if ( !isset( $feedClasses[$params['feedformat']] ) ) {
63 $this->dieUsage( 'Invalid subscription feed type', 'feed-invalid' );
66 // limit to the number of hours going from now back
67 $endTime = wfTimestamp( TS_MW, time() - intval( $params['hours'] * 60 * 60 ) );
69 // Prepare parameters for nested request
70 $fauxReqArr = array(
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' ) )
81 if ( $params['wlowner'] !== null ) {
82 $fauxReqArr['wlowner'] = $params['wlowner'];
84 if ( $params['wltoken'] !== null ) {
85 $fauxReqArr['wltoken'] = $params['wltoken'];
87 if ( $params['wlexcludeuser'] !== null ) {
88 $fauxReqArr['wlexcludeuser'] = $params['wlexcludeuser'];
90 if ( $params['wlshow'] !== null ) {
91 $fauxReqArr['wlshow'] = $params['wlshow'];
93 if ( $params['wltype'] !== null ) {
94 $fauxReqArr['wltype'] = $params['wltype'];
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;
103 // Check for 'allrev' parameter, and if found, show all revisions to each page on wl.
104 if ( $params['allrev'] ) {
105 $fauxReqArr['wlallrev'] = '';
108 // Create the request
109 $fauxReq = new FauxRequest( $fauxReqArr );
111 // Execute
112 $module = new ApiMain( $fauxReq );
113 $module->execute();
115 // Get data array
116 $data = $module->getResultData();
118 $feedItems = array();
119 foreach ( (array)$data['query']['watchlist'] as $info ) {
120 $feedItem = $this->createFeedItem( $info );
121 if ( $feedItem ) {
122 $feedItems[] = $feedItem;
126 $msg = wfMessage( 'watchlist' )->inContentLanguage()->text();
128 $feedTitle = $this->getConfig()->get( 'Sitename' ) . ' - ' . $msg . ' [' . $this->getConfig()->get( 'LanguageCode' ) . ']';
129 $feedUrl = SpecialPage::getTitleFor( 'Watchlist' )->getFullURL();
131 $feed = new $feedClasses[$params['feedformat']] (
132 $feedTitle,
133 htmlspecialchars( $msg ),
134 $feedUrl
137 ApiFormatFeedWrapper::setResult( $this->getResult(), $feed, $feedItems );
138 } catch ( Exception $e ) {
139 // Error results should not be cached
140 $this->getMain()->setCacheMaxAge( 0 );
142 // @todo FIXME: Localise brackets
143 $feedTitle = $this->getConfig()->get( 'Sitename' ) . ' - Error - ' .
144 wfMessage( 'watchlist' )->inContentLanguage()->text() .
145 ' [' . $this->getConfig()->get( 'LanguageCode' ) . ']';
146 $feedUrl = SpecialPage::getTitleFor( 'Watchlist' )->getFullURL();
148 $feedFormat = isset( $params['feedformat'] ) ? $params['feedformat'] : 'rss';
149 $msg = wfMessage( 'watchlist' )->inContentLanguage()->escaped();
150 $feed = new $feedClasses[$feedFormat] ( $feedTitle, $msg, $feedUrl );
152 if ( $e instanceof UsageException ) {
153 $errorCode = $e->getCodeString();
154 } else {
155 // Something is seriously wrong
156 $errorCode = 'internal_api_error';
159 $errorText = $e->getMessage();
160 $feedItems[] = new FeedItem( "Error ($errorCode)", $errorText, '', '', '' );
161 ApiFormatFeedWrapper::setResult( $this->getResult(), $feed, $feedItems );
166 * @param array $info
167 * @return FeedItem
169 private function createFeedItem( $info ) {
170 $titleStr = $info['title'];
171 $title = Title::newFromText( $titleStr );
172 $curidParam = array();
173 if ( !$title || $title->isExternal() ) {
174 // Probably a formerly-valid title that's now conflicting with an
175 // interwiki prefix or the like.
176 if ( isset( $info['pageid'] ) ) {
177 $title = Title::newFromId( $info['pageid'] );
178 $curidParam = array( 'curid' => $info['pageid'] );
180 if ( !$title || $title->isExternal() ) {
181 return null;
184 if ( isset( $info['revid'] ) ) {
185 $titleUrl = $title->getFullURL( array( 'diff' => $info['revid'] ) );
186 } else {
187 $titleUrl = $title->getFullURL( $curidParam );
189 $comment = isset( $info['comment'] ) ? $info['comment'] : null;
191 // Create an anchor to section.
192 // The anchor won't work for sections that have dupes on page
193 // as there's no way to strip that info from ApiWatchlist (apparently?).
194 // RegExp in the line below is equal to Linker::formatAutocomments().
195 if ( $this->linkToSections && $comment !== null &&
196 preg_match( '!(.*)/\*\s*(.*?)\s*\*/(.*)!', $comment, $matches )
198 global $wgParser;
200 $sectionTitle = $wgParser->stripSectionName( $matches[2] );
201 $sectionTitle = Sanitizer::normalizeSectionNameWhitespace( $sectionTitle );
202 $titleUrl .= Title::newFromText( '#' . $sectionTitle )->getFragmentForURL();
205 $timestamp = $info['timestamp'];
206 $user = $info['user'];
208 $completeText = "$comment ($user)";
210 return new FeedItem( $titleStr, $completeText, $titleUrl, $timestamp, $user );
213 private function getWatchlistModule() {
214 if ( $this->watchlistModule === null ) {
215 $this->watchlistModule = $this->getMain()->getModuleManager()->getModule( 'query' )
216 ->getModuleManager()->getModule( 'watchlist' );
219 return $this->watchlistModule;
222 public function getAllowedParams( $flags = 0 ) {
223 $feedFormatNames = array_keys( $this->getConfig()->get( 'FeedClasses' ) );
224 $ret = array(
225 'feedformat' => array(
226 ApiBase::PARAM_DFLT => 'rss',
227 ApiBase::PARAM_TYPE => $feedFormatNames
229 'hours' => array(
230 ApiBase::PARAM_DFLT => 24,
231 ApiBase::PARAM_TYPE => 'integer',
232 ApiBase::PARAM_MIN => 1,
233 ApiBase::PARAM_MAX => 72,
235 'linktosections' => false,
238 $copyParams = array(
239 'allrev' => 'allrev',
240 'owner' => 'wlowner',
241 'token' => 'wltoken',
242 'show' => 'wlshow',
243 'type' => 'wltype',
244 'excludeuser' => 'wlexcludeuser',
246 if ( $flags ) {
247 $wlparams = $this->getWatchlistModule()->getAllowedParams( $flags );
248 foreach ( $copyParams as $from => $to ) {
249 $p = $wlparams[$from];
250 if ( !is_array( $p ) ) {
251 $p = array( ApiBase::PARAM_DFLT => $p );
253 if ( !isset( $p[ApiBase::PARAM_HELP_MSG] ) ) {
254 $p[ApiBase::PARAM_HELP_MSG] = "apihelp-query+watchlist-param-$from";
256 $ret[$to] = $p;
258 } else {
259 foreach ( $copyParams as $from => $to ) {
260 $ret[$to] = null;
264 return $ret;
267 protected function getExamplesMessages() {
268 return array(
269 'action=feedwatchlist'
270 => 'apihelp-feedwatchlist-example-default',
271 'action=feedwatchlist&allrev=&hours=6'
272 => 'apihelp-feedwatchlist-example-all6hrs',
276 public function getHelpUrls() {
277 return 'https://www.mediawiki.org/wiki/API:Watchlist_feed';