54 $feedClasses = $config->get(
'FeedClasses' );
59 if ( !$config->get(
'Feed' ) ) {
63 if ( !isset( $feedClasses[
$params[
'feedformat']] ) ) {
74 'siprop' =>
'general',
75 'list' =>
'watchlist',
76 'wlprop' =>
'title|user|comment|timestamp|ids',
79 'wllimit' => min( 50, $this->
getConfig()->
get(
'FeedLimit' ) )
82 if ( $params[
'wlowner'] !==
null ) {
83 $fauxReqArr[
'wlowner'] =
$params[
'wlowner'];
85 if (
$params[
'wltoken'] !==
null ) {
86 $fauxReqArr[
'wltoken'] =
$params[
'wltoken'];
88 if (
$params[
'wlexcludeuser'] !==
null ) {
89 $fauxReqArr[
'wlexcludeuser'] =
$params[
'wlexcludeuser'];
91 if (
$params[
'wlshow'] !==
null ) {
92 $fauxReqArr[
'wlshow'] =
$params[
'wlshow'];
94 if (
$params[
'wltype'] !==
null ) {
95 $fauxReqArr[
'wltype'] =
$params[
'wltype'];
100 if (
$params[
'linktosections'] ) {
101 $this->linkToSections =
true;
106 $fauxReqArr[
'wlallrev'] =
'';
113 $module =
new ApiMain( $fauxReq );
116 $data = $module->getResult()->getResultData( [
'query',
'watchlist' ] );
118 foreach ( (array)$data as $key => $info ) {
124 $feedItems[] = $feedItem;
128 $msg =
wfMessage(
'watchlist' )->inContentLanguage()->text();
130 $feedTitle = $this->
getConfig()->get(
'Sitename' ) .
' - ' . $msg .
131 ' [' . $this->
getConfig()->get(
'LanguageCode' ) .
']';
134 $feed =
new $feedClasses[
$params[
'feedformat']] (
136 htmlspecialchars( $msg ),
141 }
catch ( Exception
$e ) {
143 $this->
getMain()->setCacheMaxAge( 0 );
146 $feedTitle = $this->
getConfig()->get(
'Sitename' ) .
' - Error - ' .
147 wfMessage(
'watchlist' )->inContentLanguage()->text() .
148 ' [' . $this->
getConfig()->get(
'LanguageCode' ) .
']';
151 $feedFormat = isset(
$params[
'feedformat'] ) ?
$params[
'feedformat'] :
'rss';
152 $msg =
wfMessage(
'watchlist' )->inContentLanguage()->escaped();
153 $feed =
new $feedClasses[$feedFormat] ( $feedTitle, $msg, $feedUrl );
156 foreach (
$e->getStatusValue()->getErrors() as $error ) {
159 $errorTitle = $this->
msg(
'api-feed-error-title', $msg->getApiCode() );
160 $errorText = $msg->text();
161 $feedItems[] =
new FeedItem( $errorTitle, $errorText,
'',
'',
'' );
165 $errorCode =
$e->getCodeString();
168 $errorCode =
'internal_api_error';
170 $errorTitle = $this->
msg(
'api-feed-error-title', $errorCode );
171 $errorText =
$e->getMessage();
172 $feedItems[] =
new FeedItem( $errorTitle, $errorText,
'',
'',
'' );
184 if ( !isset( $info[
'title'] ) ) {
189 $titleStr = $info[
'title'];
190 $title = Title::newFromText( $titleStr );
192 if ( !$title || $title->isExternal() ) {
195 if ( isset( $info[
'pageid'] ) ) {
196 $title = Title::newFromID( $info[
'pageid'] );
197 $curidParam = [
'curid' => $info[
'pageid'] ];
199 if ( !$title || $title->isExternal() ) {
203 if ( isset( $info[
'revid'] ) ) {
204 $titleUrl = $title->getFullURL( [
'diff' => $info[
'revid'] ] );
206 $titleUrl = $title->getFullURL( $curidParam );
208 $comment = isset( $info[
'comment'] ) ? $info[
'comment'] :
null;
214 if ( $this->linkToSections && $comment !==
null &&
215 preg_match(
'!(.*)/\*\s*(.*?)\s*\*/(.*)!', $comment,
$matches )
220 $sectionTitle = Sanitizer::normalizeSectionNameWhitespace( $sectionTitle );
221 $titleUrl .= Title::newFromText(
'#' . $sectionTitle )->getFragmentForURL();
224 $timestamp = $info[
'timestamp'];
226 if ( isset( $info[
'user'] ) ) {
227 $user = $info[
'user'];
228 $completeText =
"$comment ($user)";
231 $completeText = (
string)$comment;
234 return new FeedItem( $titleStr, $completeText, $titleUrl, $timestamp, $user );
238 if ( $this->watchlistModule ===
null ) {
239 $this->watchlistModule = $this->
getMain()->getModuleManager()->getModule(
'query' )
240 ->getModuleManager()->getModule(
'watchlist' );
247 $feedFormatNames = array_keys( $this->
getConfig()->
get(
'FeedClasses' ) );
259 'linktosections' =>
false,
263 'allrev' =>
'allrev',
264 'owner' =>
'wlowner',
265 'token' =>
'wltoken',
268 'excludeuser' =>
'wlexcludeuser',
272 foreach ( $copyParams as $from => $to ) {
273 $p = $wlparams[$from];
274 if ( !is_array( $p ) ) {
292 foreach ( $copyParams as $from => $to ) {
302 'action=feedwatchlist'
303 =>
'apihelp-feedwatchlist-example-default',
304 'action=feedwatchlist&allrev=&hours=6'
305 =>
'apihelp-feedwatchlist-example-all6hrs',
310 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Watchlist_feed';
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
This abstract class implements many basic API functions, and is the base of all API classes.
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
getMain()
Get the main module.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
getResult()
Get the result object.
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
This action allows users to get their watchlist items in RSS/Atom formats.
getAllowedParams( $flags=0)
getExamplesMessages()
Returns usage examples for this module.
getHelpUrls()
Return links to more detailed help pages about the module.
getCustomPrinter()
This module uses a custom feed wrapper printer.
execute()
Make a nested call to the API to request watchlist items in the last $hours.
This is the main API class, used for both external and internal processing.
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
static isMetadataKey( $key)
Test whether a key should be considered metadata.
Exception used to abort API execution with an error.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
getConfig()
Get the Config object.
getLanguage()
Get the Language object.
WebRequest clone which takes values from a provided array.
A base class for basic support for outputting syndication feeds in RSS and other formats.
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,...
This exception will be thrown when dieUsage is called to stop module execution.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
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 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 "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
it s the revision text itself In either if gzip is the revision text is gzipped $flags
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
returning false will NOT prevent logging $e