Committing my new logging classes for review. Will later commit changes that use...
[lhc/web/wiklou.git] / includes / logging / LogEntry.php
1 <?php
2 /**
3 * Contain classes for dealing with individual log entries
4 *
5 * This is how I see the log system history:
6 * - appending to plain wiki pages
7 * - formatting log entries based on database fields
8 * - user is now part of the action message
9 *
10 * @file
11 * @author Niklas Laxström
12 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
13 * @since 1.19
14 */
15
16 /**
17 * Interface for log entries. Every log entry has these methods.
18 * @since 1.19
19 */
20 interface LogEntry {
21
22 /**
23 * The main log type.
24 * @return string
25 */
26 public function getType();
27
28 /**
29 * The log subtype.
30 * @return string
31 */
32 public function getSubtype();
33
34 /**
35 * The full logtype in format maintype/subtype.
36 * @return string
37 */
38 public function getFullType();
39
40 /**
41 * Get the extra parameters stored for this message.
42 * @return array
43 */
44 public function getParameters();
45
46 /**
47 * Get the user for performed this action.
48 * @return User
49 */
50 public function getPerformer();
51
52 /**
53 * Get the target page of this action.
54 * @return Title
55 */
56 public function getTarget();
57
58 /**
59 * Get the timestamp when the action was executed.
60 * @return string
61 */
62 public function getTimestamp();
63
64 /**
65 * Get the user provided comment.
66 * @return string
67 */
68 public function getComment();
69
70 /**
71 * Get the access restriction.
72 * @return string
73 */
74 public function getDeleted();
75
76 /**
77 * @param $field Integer: one of LogPage::DELETED_* bitfield constants
78 * @return Boolean
79 */
80 public function isDeleted( $field );
81 }
82
83 /**
84 * Extends the LogEntryInterface with some basic functionality
85 * @since 1.19
86 */
87 abstract class LogEntryBase implements LogEntry {
88
89 public function getFullType() {
90 return $this->getType() . '/' . $this->getSubtype();
91 }
92
93 public function isDeleted( $field ) {
94 return ( $this->getDeleted() & $field ) === $field;
95 }
96
97 /**
98 * Whether the parameters for this log are stored in new or
99 * old format.
100 */
101 public function isLegacy() {
102 return false;
103 }
104
105 }
106
107 /**
108 * This class wraps around database result row.
109 * @since 1.19
110 */
111 class DatabaseLogEntry extends LogEntryBase {
112 // Static->
113
114 /**
115 * Returns array of information that is needed for querying
116 * log entries. Array contains the following keys:
117 * tables, fields, conds, options and join_conds
118 * @return array
119 */
120 public static function getSelectQueryData() {
121 $tables = array( 'logging', 'user' );
122 $fields = array(
123 'log_id', 'log_type', 'log_action', 'log_timestamp',
124 'log_user', 'log_user_text',
125 'log_namespace', 'log_title', //unused log_page
126 'log_comment', 'log_params', 'log_deleted',
127 'user_id', 'user_name', 'user_editcount',
128 );
129
130 $conds = array();
131
132 $joins = array(
133 // IP's don't have an entry in user table
134 'user' => array( 'LEFT JOIN', 'log_user=user_id' ),
135 );
136
137 return array(
138 'tables' => $tables,
139 'fields' => $fields,
140 'conds' => array(),
141 'options' => array(),
142 'join_conds' => $joins,
143 );
144 }
145
146 /**
147 * Constructs new LogEntry from database result row.
148 * Supports rows from both logging and recentchanges table.
149 * @param $row
150 * @return DatabaseLogEntry
151 */
152 public static function newFromRow( $row ) {
153 if ( is_array( $row ) && isset( $row['rc_logid'] ) ) {
154 return new RCDatabaseLogEntry( (object) $row );
155 } else {
156 return new self( $row );
157 }
158 }
159
160 // Non-static->
161
162 /// Database result row.
163 protected $row;
164
165 protected function __construct( $row ) {
166 $this->row = $row;
167 }
168
169 /**
170 * Returns the unique database id.
171 * @return int
172 */
173 public function getId() {
174 return (int)$this->row->log_id;
175 }
176
177 /**
178 * Returns whatever is stored in the database field.
179 * @return string
180 */
181 protected function getRawParameters() {
182 return $this->row->log_params;
183 }
184
185 // LogEntryBase->
186
187 public function isLegacy() {
188 // This does the check
189 $this->getParameters();
190 return $this->legacy;
191 }
192
193 // LogEntry->
194
195 public function getType() {
196 return $this->row->log_type;
197 }
198
199 public function getSubtype() {
200 return $this->row->log_action;
201 }
202
203 public function getParameters() {
204 if ( !isset( $this->params ) ) {
205 $blob = $this->getRawParameters();
206 $params = FormatJson::decode( $blob, true /* array */ );
207 if ( $params !== null ) {
208 $this->params = $params;
209 $this->legacy = false;
210 } else {
211 $this->params = explode( "\n", $blob );
212 $this->legacy = true;
213 }
214 }
215 return $this->params;
216 }
217
218 public function getPerformer() {
219 $userId = (int) $this->row->log_user;
220 if ( $userId !== 0 ) {
221 return User::newFromRow( $this->row );
222 } else {
223 $userText = $this->row->log_user_text;
224 return User::newFromName( $userText, false );
225 }
226 }
227
228 public function getTarget() {
229 $namespace = $this->row->log_namespace;
230 $page = $this->row->log_title;
231 $title = Title::makeTitle( $namespace, $page );
232 return $title;
233 }
234
235 public function getTimestamp() {
236 return wfTimestamp( TS_MW, $this->row->log_timestamp );
237 }
238
239 public function getComment() {
240 return $this->row->log_comment;
241 }
242
243 public function getDeleted() {
244 return $this->row->log_deleted;
245 }
246
247 }
248
249 class RCDatabaseLogEntry extends DatabaseLogEntry {
250
251 public function getId() {
252 return $this->row->rc_logid;
253 }
254
255 protected function getRawParameters() {
256 return $this->row->rc_params;
257 }
258
259 // LogEntry->
260
261 public function getType() {
262 return $this->row->rc_log_type;
263 }
264
265 public function getSubtype() {
266 return $this->row->rc_log_action;
267 }
268
269 public function getPerformer() {
270 $userId = (int) $this->row->rc_user;
271 if ( $userId !== 0 ) {
272 return User::newFromId( $userId );
273 } else {
274 $userText = $this->row->rc_user_text;
275 // Might be an IP, don't validate the username
276 return User::newFromName( $userText, false );
277 }
278 }
279
280 public function getTarget() {
281 $namespace = $this->row->rc_namespace;
282 $page = $this->row->rc_title;
283 $title = Title::makeTitle( $namespace, $page );
284 return $title;
285 }
286
287 public function getTimestamp() {
288 return wfTimestamp( TS_MW, $this->row->rc_timestamp );
289 }
290
291 public function getComment() {
292 return $this->row->rc_comment;
293 }
294
295 public function getDeleted() {
296 return $this->row->rc_deleted;
297 }
298
299 }
300
301 /**
302 * Class for creating log entries manually, for
303 * example to inject them into the database.
304 * @since 1.19
305 */
306 class ManualLogEntry extends LogEntryBase {
307 protected $type; ///!< @var string
308 protected $subtype; ///!< @var string
309 protected $parameters = array(); ///!< @var array
310 protected $performer; ///!< @var User
311 protected $target; ///!< @var Title
312 protected $timestamp; ///!< @var string
313 protected $comment; ///!< @var string
314 protected $deleted; ///!< @var int
315
316 public function __construct( $type, $subtype ) {
317 $this->type = $type;
318 $this->subtype = $subtype;
319 }
320
321 /**
322 * Set extra log parameters.
323 * You can pass params to the log action message
324 * by prefixing the keys with a number and colon.
325 * The numbering should start with number 4, the
326 * first three parameters are hardcoded for every
327 * message. Example:
328 * $entry->setParameters(
329 * '4:color' => 'blue',
330 * 'animal' => 'dog'
331 * );
332 * @param $parameters Associative array
333 */
334 public function setParameters( $parameters ) {
335 $this->parameters = $parameters;
336 }
337
338 public function setPerformer( User $performer ) {
339 $this->performer = $performer;
340 }
341
342 public function setTarget( Title $target ) {
343 $this->target = $target;
344 }
345
346 public function setTimestamp( $timestamp ) {
347 $this->timestamp = $timestamp;
348 }
349
350 public function setComment( $comment ) {
351 $this->comment = $comment;
352 }
353
354 public function setDeleted( $deleted ) {
355 $this->deleted = $deleted;
356 }
357
358 /**
359 * Inserts the entry into the logging table.
360 * @return int If of the log entry
361 */
362 public function insert() {
363 global $wgLogRestrictions;
364
365 $dbw = wfGetDB( DB_MASTER );
366 $id = $dbw->nextSequenceValue( 'logging_log_id_seq' );
367
368 if ( $this->timestamp === null ) {
369 $this->timestamp = wfTimestampNow();
370 }
371
372 $data = array(
373 'log_id' => $id,
374 'log_type' => $this->getType(),
375 'log_action' => $this->getSubtype(),
376 'log_timestamp' => $dbw->timestamp( $this->getTimestamp() ),
377 'log_user' => $this->getPerformer()->getId(),
378 'log_user_text' => $this->getPerformer()->getName(),
379 'log_namespace' => $this->getTarget()->getNamespace(),
380 'log_title' => $this->getTarget()->getDBkey(),
381 'log_page' => $this->getTarget()->getArticleId(),
382 'log_comment' => $this->getComment(),
383 'log_params' => FormatJson::encode( (array) $this->getParameters() ),
384 );
385 $dbw->insert( 'logging', $data, __METHOD__ );
386 $this->id = !is_null( $id ) ? $id : $dbw->insertId();
387 return $this->id;
388 }
389
390 /**
391 * Publishes the log entry.
392 * @param $newId int id of the log entry.
393 * @param $to string: rcandudp (default), rc, udp
394 */
395 public function publish( $newId, $to = 'rcandudp' ) {
396 $log = new LogPage( $this->getType() );
397 if ( $log->isRestricted() ) {
398 return;
399 }
400
401 $formatter = LogFormatter::newFromEntry( $this );
402 $context = RequestContext::newExtraneousContext( $this->getTarget() );
403 $formatter->setContext( $context );
404
405 $logpage = SpecialPage::getTitleFor( 'Log', $this->getType() );
406 $user = $this->getPerformer();
407 $rc = RecentChange::newLogEntry(
408 $this->getTimestamp(),
409 $logpage,
410 $user,
411 $formatter->getPlainActionText(), // Used for IRC feeds
412 $user->isAnon() ? $user->getName() : '',
413 $this->getType(),
414 $this->getSubtype(),
415 $this->getTarget(),
416 $this->getComment(),
417 FormatJson::encode( (array) $this->getParameters() ),
418 $newId
419 );
420
421 if ( $to === 'rc' || $to === 'rcandudp' ) {
422 $rc->save();
423 }
424
425 if ( $to === 'udp' || $to === 'rcandudp' ) {
426 $rc->notifyRC2UDP();
427 }
428 }
429
430 // LogEntry->
431
432 public function getType() {
433 return $this->type;
434 }
435
436 public function getSubtype() {
437 return $this->subtype;
438 }
439
440 public function getParameters() {
441 return $this->parameters;
442 }
443
444 public function getPerformer() {
445 return $this->performer;
446 }
447
448 public function getTarget() {
449 return $this->target;
450 }
451
452 public function getTimestamp() {
453 $ts = $this->timestamp !== null ? $this->timestamp : wfTimestampNow();
454 return wfTimestamp( TS_MW, $ts );
455 }
456
457 public function getComment() {
458 return $this->comment;
459 }
460
461 public function getDeleted() {
462 return (int) $this->deleted;
463 }
464
465 }