MediaWiki  1.32.0
ApiFeedContributions.php
Go to the documentation of this file.
1 <?php
28 
33 
35  private $revisionStore;
36 
42  public function getCustomPrinter() {
43  return new ApiFormatFeedWrapper( $this->getMain() );
44  }
45 
46  public function execute() {
47  $this->revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
48 
49  $params = $this->extractRequestParams();
50 
51  $config = $this->getConfig();
52  if ( !$config->get( 'Feed' ) ) {
53  $this->dieWithError( 'feed-unavailable' );
54  }
55 
56  $feedClasses = $config->get( 'FeedClasses' );
57  if ( !isset( $feedClasses[$params['feedformat']] ) ) {
58  $this->dieWithError( 'feed-invalid' );
59  }
60 
61  if ( $params['showsizediff'] && $this->getConfig()->get( 'MiserMode' ) ) {
62  $this->dieWithError( 'apierror-sizediffdisabled' );
63  }
64 
65  $msg = wfMessage( 'Contributions' )->inContentLanguage()->text();
66  $feedTitle = $config->get( 'Sitename' ) . ' - ' . $msg .
67  ' [' . $config->get( 'LanguageCode' ) . ']';
68  $feedUrl = SpecialPage::getTitleFor( 'Contributions', $params['user'] )->getFullURL();
69 
70  $target = $params['user'] == 'newbies'
71  ? 'newbies'
72  : Title::makeTitleSafe( NS_USER, $params['user'] )->getText();
73 
74  $feed = new $feedClasses[$params['feedformat']] (
75  $feedTitle,
76  htmlspecialchars( $msg ),
77  $feedUrl
78  );
79 
80  // Convert year/month parameters to end parameter
81  $params['start'] = '';
82  $params['end'] = '';
84 
85  $pager = new ContribsPager( $this->getContext(), [
86  'target' => $target,
87  'namespace' => $params['namespace'],
88  'start' => $params['start'],
89  'end' => $params['end'],
90  'tagFilter' => $params['tagfilter'],
91  'deletedOnly' => $params['deletedonly'],
92  'topOnly' => $params['toponly'],
93  'newOnly' => $params['newonly'],
94  'hideMinor' => $params['hideminor'],
95  'showSizeDiff' => $params['showsizediff'],
96  ] );
97 
98  $feedLimit = $this->getConfig()->get( 'FeedLimit' );
99  if ( $pager->getLimit() > $feedLimit ) {
100  $pager->setLimit( $feedLimit );
101  }
102 
103  $feedItems = [];
104  if ( $pager->getNumRows() > 0 ) {
105  $count = 0;
106  $limit = $pager->getLimit();
107  foreach ( $pager->mResult as $row ) {
108  // ContribsPager selects one more row for navigation, skip that row
109  if ( ++$count > $limit ) {
110  break;
111  }
112  $item = $this->feedItem( $row );
113  if ( $item !== null ) {
114  $feedItems[] = $item;
115  }
116  }
117  }
118 
119  ApiFormatFeedWrapper::setResult( $this->getResult(), $feed, $feedItems );
120  }
121 
122  protected function feedItem( $row ) {
123  // This hook is the api contributions equivalent to the
124  // ContributionsLineEnding hook. Hook implementers may cancel
125  // the hook to signal the user is not allowed to read this item.
126  $feedItem = null;
127  $hookResult = Hooks::run(
128  'ApiFeedContributions::feedItem',
129  [ $row, $this->getContext(), &$feedItem ]
130  );
131  // Hook returned a valid feed item
132  if ( $feedItem instanceof FeedItem ) {
133  return $feedItem;
134  // Hook was canceled and did not return a valid feed item
135  } elseif ( !$hookResult ) {
136  return null;
137  }
138 
139  // Hook completed and did not return a valid feed item
140  $title = Title::makeTitle( intval( $row->page_namespace ), $row->page_title );
141  if ( $title && $title->userCan( 'read', $this->getUser() ) ) {
142  $date = $row->rev_timestamp;
143  $comments = $title->getTalkPage()->getFullURL();
144  $revision = $this->revisionStore->newRevisionFromRow( $row );
145 
146  return new FeedItem(
147  $title->getPrefixedText(),
148  $this->feedItemDesc( $revision ),
149  $title->getFullURL( [ 'diff' => $revision->getId() ] ),
150  $date,
151  $this->feedItemAuthor( $revision ),
152  $comments
153  );
154  }
155 
156  return null;
157  }
158 
164  protected function feedItemAuthor( RevisionRecord $revision ) {
165  $user = $revision->getUser();
166  return $user ? $user->getName() : '';
167  }
168 
174  protected function feedItemDesc( RevisionRecord $revision ) {
175  if ( $revision ) {
176  $msg = wfMessage( 'colon-separator' )->inContentLanguage()->text();
177  try {
178  $content = $revision->getContent( SlotRecord::MAIN );
179  } catch ( RevisionAccessException $e ) {
180  $content = null;
181  }
182 
183  if ( $content instanceof TextContent ) {
184  // only textual content has a "source view".
185  $html = nl2br( htmlspecialchars( $content->getNativeData() ) );
186  } else {
187  // XXX: we could get an HTML representation of the content via getParserOutput, but that may
188  // contain JS magic and generally may not be suitable for inclusion in a feed.
189  // Perhaps Content should have a getDescriptiveHtml method and/or a getSourceText method.
190  // Compare also FeedUtils::formatDiffRow.
191  $html = '';
192  }
193 
194  $comment = $revision->getComment();
195 
196  return '<p>' . htmlspecialchars( $this->feedItemAuthor( $revision ) ) . $msg .
197  htmlspecialchars( FeedItem::stripComment( $comment ? $comment->text : '' ) ) .
198  "</p>\n<hr />\n<div>" . $html . '</div>';
199  }
200 
201  return '';
202  }
203 
204  public function getAllowedParams() {
205  $feedFormatNames = array_keys( $this->getConfig()->get( 'FeedClasses' ) );
206 
207  $ret = [
208  'feedformat' => [
209  ApiBase::PARAM_DFLT => 'rss',
210  ApiBase::PARAM_TYPE => $feedFormatNames
211  ],
212  'user' => [
213  ApiBase::PARAM_TYPE => 'user',
214  ApiBase::PARAM_REQUIRED => true,
215  ],
216  'namespace' => [
217  ApiBase::PARAM_TYPE => 'namespace'
218  ],
219  'year' => [
220  ApiBase::PARAM_TYPE => 'integer'
221  ],
222  'month' => [
223  ApiBase::PARAM_TYPE => 'integer'
224  ],
225  'tagfilter' => [
226  ApiBase::PARAM_ISMULTI => true,
228  ApiBase::PARAM_DFLT => '',
229  ],
230  'deletedonly' => false,
231  'toponly' => false,
232  'newonly' => false,
233  'hideminor' => false,
234  'showsizediff' => [
235  ApiBase::PARAM_DFLT => false,
236  ],
237  ];
238 
239  if ( $this->getConfig()->get( 'MiserMode' ) ) {
240  $ret['showsizediff'][ApiBase::PARAM_HELP_MSG] = 'api-help-param-disabled-in-miser-mode';
241  }
242 
243  return $ret;
244  }
245 
246  protected function getExamplesMessages() {
247  return [
248  'action=feedcontributions&user=Example'
249  => 'apihelp-feedcontributions-example-simple',
250  ];
251  }
252 }
ContextSource\getConfig
getConfig()
Definition: ContextSource.php:63
$user
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 account $user
Definition: hooks.txt:244
Revision\RevisionAccessException
Exception representing a failure to look up a revision.
Definition: RevisionAccessException.php:33
FeedItem
A base class for basic support for outputting syndication feeds in RSS and other formats.
Definition: Feed.php:38
ContextSource\getContext
getContext()
Get the base IContextSource object.
Definition: ContextSource.php:40
Revision\RevisionRecord
Page revision base class.
Definition: RevisionRecord.php:45
ApiBase\PARAM_REQUIRED
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition: ApiBase.php:111
Revision\RevisionStore
Service for looking up page revisions.
Definition: RevisionStore.php:76
ApiBase\dieWithError
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition: ApiBase.php:1987
ApiBase\PARAM_HELP_MSG
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:124
ApiFeedContributions\getCustomPrinter
getCustomPrinter()
This module uses a custom feed wrapper printer.
Definition: ApiFeedContributions.php:42
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:87
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:659
ApiFeedContributions\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiFeedContributions.php:46
FeedItem\stripComment
static stripComment( $text)
Quickie hack...
Definition: Feed.php:223
$params
$params
Definition: styleTest.css.php:44
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
php
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
ApiBase
This abstract class implements many basic API functions, and is the base of all API classes.
Definition: ApiBase.php:37
ContribsPager\processDateFilter
static processDateFilter(array $opts)
Set up date filter options, given request data.
Definition: ContribsPager.php:655
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:2036
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
ApiFormatFeedWrapper
This printer is used to wrap an instance of the Feed class.
Definition: ApiFormatFeedWrapper.php:27
Revision\RevisionRecord\getUser
getUser( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision's author's user identity, if it's available to the specified audience.
Definition: RevisionRecord.php:365
ApiFeedContributions\feedItemAuthor
feedItemAuthor(RevisionRecord $revision)
Definition: ApiFeedContributions.php:164
ApiFeedContributions
Definition: ApiFeedContributions.php:32
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
ApiBase\extractRequestParams
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:770
ChangeTags\listDefinedTags
static listDefinedTags()
Basically lists defined tags which count even if they aren't applied to anything.
Definition: ChangeTags.php:1458
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:545
ApiFeedContributions\$revisionStore
RevisionStore $revisionStore
Definition: ApiFeedContributions.php:35
ContribsPager
Definition: ContribsPager.php:31
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:573
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2213
$ret
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:2036
Revision\RevisionRecord\getComment
getComment( $audience=self::FOR_PUBLIC, User $user=null)
Fetch revision comment, if it's available to the specified audience.
Definition: RevisionRecord.php:390
TextContent
Content object implementation for representing flat text.
Definition: TextContent.php:37
ApiFeedContributions\feedItemDesc
feedItemDesc(RevisionRecord $revision)
Definition: ApiFeedContributions.php:174
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:48
as
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
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:51
Revision\RevisionRecord\getContent
getContent( $role, $audience=self::FOR_PUBLIC, User $user=null)
Returns the Content of the given slot of this revision.
Definition: RevisionRecord.php:167
NS_USER
const NS_USER
Definition: Defines.php:66
$content
$content
Definition: pageupdater.txt:72
ApiFeedContributions\feedItem
feedItem( $row)
Definition: ApiFeedContributions.php:122
ApiBase\getMain
getMain()
Get the main module.
Definition: ApiBase.php:555
ApiFeedContributions\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiFeedContributions.php:204
ApiFeedContributions\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiFeedContributions.php:246
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
ApiFormatFeedWrapper\setResult
static setResult( $result, $feed, $feedItems)
Call this method to initialize output data.
Definition: ApiFormatFeedWrapper.php:39
Revision\SlotRecord
Value object representing a content slot associated with a page revision.
Definition: SlotRecord.php:39