5 * Created on June 06, 2011
7 * Copyright © 2011 Sam Reed
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
30 class ApiFeedContributions
extends ApiBase
{
33 * This module uses a custom feed wrapper printer.
35 * @return ApiFormatFeedWrapper
37 public function getCustomPrinter() {
38 return new ApiFormatFeedWrapper( $this->getMain() );
41 public function execute() {
42 $params = $this->extractRequestParams();
44 global $wgFeed, $wgFeedClasses, $wgFeedLimit, $wgSitename, $wgLanguageCode;
47 $this->dieUsage( 'Syndication feeds are not available', 'feed-unavailable' );
50 if ( !isset( $wgFeedClasses[$params['feedformat']] ) ) {
51 $this->dieUsage( 'Invalid subscription feed type', 'feed-invalid' );
55 if ( $params['showsizediff'] && $wgMiserMode ) {
56 $this->dieUsage( 'Size difference is disabled in Miser Mode', 'sizediffdisabled' );
59 $msg = wfMessage( 'Contributions' )->inContentLanguage()->text();
60 $feedTitle = $wgSitename . ' - ' . $msg . ' [' . $wgLanguageCode . ']';
61 $feedUrl = SpecialPage
::getTitleFor( 'Contributions', $params['user'] )->getFullURL();
63 $target = $params['user'] == 'newbies'
65 : Title
::makeTitleSafe( NS_USER
, $params['user'] )->getText();
67 $feed = new $wgFeedClasses[$params['feedformat']] (
69 htmlspecialchars( $msg ),
73 $pager = new ContribsPager( $this->getContext(), array(
75 'namespace' => $params['namespace'],
76 'year' => $params['year'],
77 'month' => $params['month'],
78 'tagFilter' => $params['tagfilter'],
79 'deletedOnly' => $params['deletedonly'],
80 'topOnly' => $params['toponly'],
81 'showSizeDiff' => $params['showsizediff'],
84 if ( $pager->getLimit() > $wgFeedLimit ) {
85 $pager->setLimit( $wgFeedLimit );
89 if ( $pager->getNumRows() > 0 ) {
90 foreach ( $pager->mResult
as $row ) {
91 $feedItems[] = $this->feedItem( $row );
95 ApiFormatFeedWrapper
::setResult( $this->getResult(), $feed, $feedItems );
98 protected function feedItem( $row ) {
99 $title = Title
::makeTitle( intval( $row->page_namespace
), $row->page_title
);
100 if ( $title && $title->userCan( 'read', $this->getUser() ) ) {
101 $date = $row->rev_timestamp
;
102 $comments = $title->getTalkPage()->getFullURL();
103 $revision = Revision
::newFromRow( $row );
106 $title->getPrefixedText(),
107 $this->feedItemDesc( $revision ),
108 $title->getFullURL(),
110 $this->feedItemAuthor( $revision ),
119 * @param $revision Revision
122 protected function feedItemAuthor( $revision ) {
123 return $revision->getUserText();
127 * @param $revision Revision
130 protected function feedItemDesc( $revision ) {
132 $msg = wfMessage( 'colon-separator' )->inContentLanguage()->text();
133 $content = $revision->getContent();
135 if ( $content instanceof TextContent
) {
136 // only textual content has a "source view".
137 $html = nl2br( htmlspecialchars( $content->getNativeData() ) );
139 //XXX: we could get an HTML representation of the content via getParserOutput, but that may
140 // contain JS magic and generally may not be suitable for inclusion in a feed.
141 // Perhaps Content should have a getDescriptiveHtml method and/or a getSourceText method.
142 //Compare also FeedUtils::formatDiffRow.
146 return '<p>' . htmlspecialchars( $revision->getUserText() ) . $msg .
147 htmlspecialchars( FeedItem
::stripComment( $revision->getComment() ) ) .
148 "</p>\n<hr />\n<div>" . $html . "</div>";
154 public function getAllowedParams() {
155 global $wgFeedClasses;
156 $feedFormatNames = array_keys( $wgFeedClasses );
159 'feedformat' => array(
160 ApiBase
::PARAM_DFLT
=> 'rss',
161 ApiBase
::PARAM_TYPE
=> $feedFormatNames
164 ApiBase
::PARAM_TYPE
=> 'user',
165 ApiBase
::PARAM_REQUIRED
=> true,
167 'namespace' => array(
168 ApiBase
::PARAM_TYPE
=> 'namespace'
171 ApiBase
::PARAM_TYPE
=> 'integer'
174 ApiBase
::PARAM_TYPE
=> 'integer'
176 'tagfilter' => array(
177 ApiBase
::PARAM_ISMULTI
=> true,
178 ApiBase
::PARAM_TYPE
=> array_values( ChangeTags
::listDefinedTags() ),
179 ApiBase
::PARAM_DFLT
=> '',
181 'deletedonly' => false,
183 'showsizediff' => false,
187 public function getParamDescription() {
189 'feedformat' => 'The format of the feed',
190 'user' => 'What users to get the contributions for',
191 'namespace' => 'What namespace to filter the contributions by',
192 'year' => 'From year (and earlier)',
193 'month' => 'From month (and earlier)',
194 'tagfilter' => 'Filter contributions that have these tags',
195 'deletedonly' => 'Show only deleted contributions',
196 'toponly' => 'Only show edits that are latest revisions',
197 'showsizediff' => 'Show the size difference between revisions. Disabled in Miser Mode',
201 public function getDescription() {
202 return 'Returns a user contributions feed';
205 public function getPossibleErrors() {
206 return array_merge( parent
::getPossibleErrors(), array(
207 array( 'code' => 'feed-unavailable', 'info' => 'Syndication feeds are not available' ),
208 array( 'code' => 'feed-invalid', 'info' => 'Invalid subscription feed type' ),
209 array( 'code' => 'sizediffdisabled', 'info' => 'Size difference is disabled in Miser Mode' ),
213 public function getExamples() {
215 'api.php?action=feedcontributions&user=Reedy',