MediaWiki REL1_28
MachineReadableRCFeedFormatter.php
Go to the documentation of this file.
1<?php
2
28
34 abstract protected function formatArray( array $packet );
35
40 public function getLine( array $feed, RecentChange $rc, $actionComment ) {
42
43 $packet = [
44 // Usually, RC ID is exposed only for patrolling purposes,
45 // but there is no real reason not to expose it in other cases,
46 // and I can see how this may be potentially useful for clients.
47 'id' => $rc->getAttribute( 'rc_id' ),
48 'type' => RecentChange::parseFromRCType( $rc->getAttribute( 'rc_type' ) ),
49 'namespace' => $rc->getTitle()->getNamespace(),
50 'title' => $rc->getTitle()->getPrefixedText(),
51 'comment' => $rc->getAttribute( 'rc_comment' ),
52 'timestamp' => (int)wfTimestamp( TS_UNIX, $rc->getAttribute( 'rc_timestamp' ) ),
53 'user' => $rc->getAttribute( 'rc_user_text' ),
54 'bot' => (bool)$rc->getAttribute( 'rc_bot' ),
55 ];
56
57 if ( isset( $feed['channel'] ) ) {
58 $packet['channel'] = $feed['channel'];
59 }
60
61 $type = $rc->getAttribute( 'rc_type' );
62 if ( $type == RC_EDIT || $type == RC_NEW ) {
64
65 $packet['minor'] = (bool)$rc->getAttribute( 'rc_minor' );
66 if ( $wgUseRCPatrol || ( $type == RC_NEW && $wgUseNPPatrol ) ) {
67 $packet['patrolled'] = (bool)$rc->getAttribute( 'rc_patrolled' );
68 }
69 }
70
71 switch ( $type ) {
72 case RC_EDIT:
73 $packet['length'] = [
74 'old' => $rc->getAttribute( 'rc_old_len' ),
75 'new' => $rc->getAttribute( 'rc_new_len' )
76 ];
77 $packet['revision'] = [
78 'old' => $rc->getAttribute( 'rc_last_oldid' ),
79 'new' => $rc->getAttribute( 'rc_this_oldid' )
80 ];
81 break;
82
83 case RC_NEW:
84 $packet['length'] = [ 'old' => null, 'new' => $rc->getAttribute( 'rc_new_len' ) ];
85 $packet['revision'] = [ 'old' => null, 'new' => $rc->getAttribute( 'rc_this_oldid' ) ];
86 break;
87
88 case RC_LOG:
89 $packet['log_id'] = $rc->getAttribute( 'rc_logid' );
90 $packet['log_type'] = $rc->getAttribute( 'rc_log_type' );
91 $packet['log_action'] = $rc->getAttribute( 'rc_log_action' );
92 if ( $rc->getAttribute( 'rc_params' ) ) {
93 $params = $rc->parseParams();
94 if (
95 // If it's an actual serialised false...
96 $rc->getAttribute( 'rc_params' ) == serialize( false ) ||
97 // Or if we did not get false back when trying to unserialise
98 $params !== false
99 ) {
100 // From ApiQueryLogEvents::addLogParams
101 $logParams = [];
102 // Keys like "4::paramname" can't be used for output so we change them to "paramname"
103 foreach ( $params as $key => $value ) {
104 if ( strpos( $key, ':' ) === false ) {
105 $logParams[$key] = $value;
106 continue;
107 }
108 $logParam = explode( ':', $key, 3 );
109 $logParams[$logParam[2]] = $value;
110 }
111 $packet['log_params'] = $logParams;
112 } else {
113 $packet['log_params'] = explode( "\n", $rc->getAttribute( 'rc_params' ) );
114 }
115 }
116 $packet['log_action_comment'] = $actionComment;
117 break;
118 }
119
120 $packet['server_url'] = $wgCanonicalServer;
121 $packet['server_name'] = $wgServerName;
122
123 $packet['server_script_path'] = $wgScriptPath ?: '/';
124 $packet['wiki'] = wfWikiID();
125
126 return $this->formatArray( $packet );
127 }
128}
serialize()
$wgServerName
Server name.
$wgUseRCPatrol
Use RC Patrolling to check for vandalism (from recent changes and watchlists) New pages and new files...
$wgUseNPPatrol
Use new page patrolling to check new pages on Special:Newpages.
$wgScriptPath
The path we should point to.
$wgCanonicalServer
Canonical URL of the server, to use in IRC feeds and notification e-mails.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Abstract class so there can be multiple formatters outputting the same data.
formatArray(array $packet)
Take the packet and return the formatted string.
getLine(array $feed, RecentChange $rc, $actionComment)
Generates a notification that can be easily interpreted by a machine.
Utility class for creating new RC entries.
parseParams()
Parses and returns the rc_params attribute.
static parseFromRCType( $rcType)
Parsing RC_* constants to human-readable test.
getAttribute( $name)
Get an attribute value.
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
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
const RC_NEW
Definition Defines.php:137
const RC_LOG
Definition Defines.php:138
const RC_EDIT
Definition Defines.php:136
the array() calling protocol came about after MediaWiki 1.4rc1.
namespace are movable Hooks may change this value to override the return value of MWNamespace::isMovable(). 'NewDifferenceEngine' do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition hooks.txt:2568
processing should stop and the error should be shown to the user * false
Definition hooks.txt:189
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:37
Interface for RC feed formatters.
$params
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
Definition defines.php:6