50 $feedClasses = $config->get(
'FeedClasses' );
55 if ( !$config->get(
'Feed' ) ) {
59 if ( !isset( $feedClasses[
$params[
'feedformat']] ) ) {
70 'siprop' =>
'general',
71 'list' =>
'watchlist',
72 'wlprop' =>
'title|user|comment|timestamp|ids|loginfo',
75 'wllimit' => min( 50, $this->
getConfig()->
get(
'FeedLimit' ) )
78 if ( $params[
'wlowner'] !==
null ) {
79 $fauxReqArr[
'wlowner'] =
$params[
'wlowner'];
81 if (
$params[
'wltoken'] !==
null ) {
82 $fauxReqArr[
'wltoken'] =
$params[
'wltoken'];
84 if (
$params[
'wlexcludeuser'] !==
null ) {
85 $fauxReqArr[
'wlexcludeuser'] =
$params[
'wlexcludeuser'];
87 if (
$params[
'wlshow'] !==
null ) {
88 $fauxReqArr[
'wlshow'] =
$params[
'wlshow'];
90 if (
$params[
'wltype'] !==
null ) {
91 $fauxReqArr[
'wltype'] =
$params[
'wltype'];
96 if (
$params[
'linktosections'] ) {
97 $this->linkToSections =
true;
102 $fauxReqArr[
'wlallrev'] =
'';
107 $module =
new ApiMain( $fauxReq );
110 $data = $module->getResult()->getResultData( [
'query',
'watchlist' ] );
118 $feedItems[] = $feedItem;
122 $msg =
wfMessage(
'watchlist' )->inContentLanguage()->text();
124 $feedTitle = $this->
getConfig()->get(
'Sitename' ) .
' - ' . $msg .
125 ' [' . $this->
getConfig()->get(
'LanguageCode' ) .
']';
126 $feedUrl = SpecialPage::getTitleFor(
'Watchlist' )->getFullURL();
128 $feed =
new $feedClasses[
$params[
'feedformat']] (
130 htmlspecialchars( $msg ),
135 }
catch ( Exception
$e ) {
137 $this->
getMain()->setCacheMaxAge( 0 );
140 $feedTitle = $this->
getConfig()->get(
'Sitename' ) .
' - Error - ' .
141 wfMessage(
'watchlist' )->inContentLanguage()->text() .
142 ' [' . $this->
getConfig()->get(
'LanguageCode' ) .
']';
143 $feedUrl = SpecialPage::getTitleFor(
'Watchlist' )->getFullURL();
145 $feedFormat =
$params[
'feedformat'] ??
'rss';
146 $msg =
wfMessage(
'watchlist' )->inContentLanguage()->escaped();
147 $feed =
new $feedClasses[$feedFormat] ( $feedTitle, $msg, $feedUrl );
150 foreach (
$e->getStatusValue()->getErrors()
as $error ) {
153 $errorTitle = $this->
msg(
'api-feed-error-title', $msg->getApiCode() );
154 $errorText = $msg->text();
155 $feedItems[] =
new FeedItem( $errorTitle, $errorText,
'',
'',
'' );
159 $errorCode =
'internal_api_error';
160 $errorTitle = $this->
msg(
'api-feed-error-title', $errorCode );
161 $errorText =
$e->getMessage();
162 $feedItems[] =
new FeedItem( $errorTitle, $errorText,
'',
'',
'' );
174 if ( !isset( $info[
'title'] ) ) {
179 $titleStr = $info[
'title'];
180 $title = Title::newFromText( $titleStr );
185 if ( isset( $info[
'pageid'] ) ) {
186 $title = Title::newFromID( $info[
'pageid'] );
187 $curidParam = [
'curid' => $info[
'pageid'] ];
193 if ( isset( $info[
'revid'] ) ) {
194 if ( $info[
'revid'] === 0 && isset( $info[
'logid'] ) ) {
195 $logTitle = Title::makeTitle(
NS_SPECIAL,
'Log' );
196 $titleUrl = $logTitle->getFullURL( [
'logid' => $info[
'logid'] ] );
198 $titleUrl =
$title->getFullURL( [
'diff' => $info[
'revid'] ] );
201 $titleUrl =
$title->getFullURL( $curidParam );
203 $comment = $info[
'comment'] ??
null;
209 if ( $this->linkToSections && $comment !==
null &&
210 preg_match(
'!(.*)/\*\s*(.*?)\s*\*/(.*)!', $comment,
$matches )
216 $timestamp = $info[
'timestamp'];
218 if ( isset( $info[
'user'] ) ) {
219 $user = $info[
'user'];
220 $completeText =
"$comment ($user)";
223 $completeText = (
string)$comment;
226 return new FeedItem( $titleStr, $completeText, $titleUrl, $timestamp,
$user );
230 if ( $this->watchlistModule ===
null ) {
231 $this->watchlistModule = $this->
getMain()->getModuleManager()->getModule(
'query' )
232 ->getModuleManager()->getModule(
'watchlist' );
239 $feedFormatNames = array_keys( $this->
getConfig()->
get(
'FeedClasses' ) );
251 'linktosections' =>
false,
255 'allrev' =>
'allrev',
256 'owner' =>
'wlowner',
257 'token' =>
'wltoken',
260 'excludeuser' =>
'wlexcludeuser',
264 foreach ( $copyParams
as $from => $to ) {
265 $p = $wlparams[$from];
266 if ( !is_array( $p ) ) {
284 foreach ( $copyParams
as $from => $to ) {
294 'action=feedwatchlist'
295 =>
'apihelp-feedwatchlist-example-default',
296 'action=feedwatchlist&allrev=&hours=6'
297 =>
'apihelp-feedwatchlist-example-all6hrs',
302 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.
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.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
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()
WebRequest clone which takes values from a provided array.
A base class for basic support for outputting syndication feeds in RSS and other formats.
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
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
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
namespace and then decline to actually register it file or subcat img or subcat $title
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
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 "<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
return true to allow those checks to and false if checking is done & $user
returning false will NOT prevent logging $e
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
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))