MediaWiki  1.34.0
MachineReadableRCFeedFormatter.php
Go to the documentation of this file.
1 <?php
2 
28 
34  abstract protected function formatArray( array $packet );
35 
44  public function getLine( array $feed, RecentChange $rc, $actionComment ) {
46 
47  $packet = [
48  // Usually, RC ID is exposed only for patrolling purposes,
49  // but there is no real reason not to expose it in other cases,
50  // and I can see how this may be potentially useful for clients.
51  'id' => $rc->getAttribute( 'rc_id' ),
52  'type' => RecentChange::parseFromRCType( $rc->getAttribute( 'rc_type' ) ),
53  'namespace' => $rc->getTitle()->getNamespace(),
54  'title' => $rc->getTitle()->getPrefixedText(),
55  'comment' => $rc->getAttribute( 'rc_comment' ),
56  'timestamp' => (int)wfTimestamp( TS_UNIX, $rc->getAttribute( 'rc_timestamp' ) ),
57  'user' => $rc->getAttribute( 'rc_user_text' ),
58  'bot' => (bool)$rc->getAttribute( 'rc_bot' ),
59  ];
60 
61  if ( isset( $feed['channel'] ) ) {
62  $packet['channel'] = $feed['channel'];
63  }
64 
65  $type = $rc->getAttribute( 'rc_type' );
66  if ( $type == RC_EDIT || $type == RC_NEW ) {
68 
69  $packet['minor'] = (bool)$rc->getAttribute( 'rc_minor' );
70  if ( $wgUseRCPatrol || ( $type == RC_NEW && $wgUseNPPatrol ) ) {
71  $packet['patrolled'] = (bool)$rc->getAttribute( 'rc_patrolled' );
72  }
73  }
74 
75  switch ( $type ) {
76  case RC_EDIT:
77  $packet['length'] = [
78  'old' => $rc->getAttribute( 'rc_old_len' ),
79  'new' => $rc->getAttribute( 'rc_new_len' )
80  ];
81  $packet['revision'] = [
82  'old' => $rc->getAttribute( 'rc_last_oldid' ),
83  'new' => $rc->getAttribute( 'rc_this_oldid' )
84  ];
85  break;
86 
87  case RC_NEW:
88  $packet['length'] = [ 'old' => null, 'new' => $rc->getAttribute( 'rc_new_len' ) ];
89  $packet['revision'] = [ 'old' => null, 'new' => $rc->getAttribute( 'rc_this_oldid' ) ];
90  break;
91 
92  case RC_LOG:
93  $packet['log_id'] = $rc->getAttribute( 'rc_logid' );
94  $packet['log_type'] = $rc->getAttribute( 'rc_log_type' );
95  $packet['log_action'] = $rc->getAttribute( 'rc_log_action' );
96  if ( $rc->getAttribute( 'rc_params' ) ) {
97  $params = $rc->parseParams();
98  if (
99  // If it's an actual serialised false...
100  $rc->getAttribute( 'rc_params' ) == serialize( false ) ||
101  // Or if we did not get false back when trying to unserialise
102  $params !== false
103  ) {
104  // From ApiQueryLogEvents::addLogParams
105  $logParams = [];
106  // Keys like "4::paramname" can't be used for output so we change them to "paramname"
107  foreach ( $params as $key => $value ) {
108  if ( strpos( $key, ':' ) === false ) {
109  $logParams[$key] = $value;
110  continue;
111  }
112  $logParam = explode( ':', $key, 3 );
113  $logParams[$logParam[2]] = $value;
114  }
115  $packet['log_params'] = $logParams;
116  } else {
117  $packet['log_params'] = explode( "\n", $rc->getAttribute( 'rc_params' ) );
118  }
119  }
120  $packet['log_action_comment'] = $actionComment;
121  break;
122  }
123 
124  $packet['server_url'] = $wgCanonicalServer;
125  $packet['server_name'] = $wgServerName;
126 
127  $packet['server_script_path'] = $wgScriptPath ?: '/';
129 
130  return $this->formatArray( $packet );
131  }
132 }
WikiMap\getCurrentWikiDbDomain
static getCurrentWikiDbDomain()
Definition: WikiMap.php:292
RecentChange
Utility class for creating new RC entries.
Definition: RecentChange.php:70
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1869
RC_LOG
const RC_LOG
Definition: Defines.php:124
MachineReadableRCFeedFormatter
Abstract class so there can be multiple formatters outputting the same data.
Definition: MachineReadableRCFeedFormatter.php:27
RC_EDIT
const RC_EDIT
Definition: Defines.php:122
serialize
serialize()
Definition: ApiMessageTrait.php:138
$wgUseRCPatrol
$wgUseRCPatrol
Use RC Patrolling to check for vandalism (from recent changes and watchlists) New pages and new files...
Definition: DefaultSettings.php:6927
$wgUseNPPatrol
$wgUseNPPatrol
Use new page patrolling to check new pages on Special:Newpages.
Definition: DefaultSettings.php:6943
RecentChange\parseParams
parseParams()
Parses and returns the rc_params attribute.
Definition: RecentChange.php:1143
MachineReadableRCFeedFormatter\formatArray
formatArray(array $packet)
Take the packet and return the formatted string.
WikiMap\getWikiIdFromDbDomain
static getWikiIdFromDbDomain( $domain)
Get the wiki ID of a database domain.
Definition: WikiMap.php:268
$wgCanonicalServer
$wgCanonicalServer
Canonical URL of the server, to use in IRC feeds and notification e-mails.
Definition: DefaultSettings.php:114
$wgServerName
$wgServerName
Server name.
Definition: DefaultSettings.php:121
RC_NEW
const RC_NEW
Definition: Defines.php:123
RecentChange\getAttribute
getAttribute( $name)
Get an attribute value.
Definition: RecentChange.php:1028
RecentChange\parseFromRCType
static parseFromRCType( $rcType)
Parsing RC_* constants to human-readable test.
Definition: RecentChange.php:173
MachineReadableRCFeedFormatter\getLine
getLine(array $feed, RecentChange $rc, $actionComment)
Generates a notification that can be easily interpreted by a machine.
Definition: MachineReadableRCFeedFormatter.php:44
RecentChange\getTitle
& getTitle()
Definition: RecentChange.php:284
RCFeedFormatter
Interface for RC feed formatters.
Definition: RCFeedFormatter.php:27
$wgScriptPath
$wgScriptPath
The path we should point to.
Definition: DefaultSettings.php:137
$type
$type
Definition: testCompression.php:48