Kill various unused variables
[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 $joins = array(
131 // IP's don't have an entry in user table
132 'user' => array( 'LEFT JOIN', 'log_user=user_id' ),
133 );
134
135 return array(
136 'tables' => $tables,
137 'fields' => $fields,
138 'conds' => array(),
139 'options' => array(),
140 'join_conds' => $joins,
141 );
142 }
143
144 /**
145 * Constructs new LogEntry from database result row.
146 * Supports rows from both logging and recentchanges table.
147 * @param $row
148 * @return DatabaseLogEntry
149 */
150 public static function newFromRow( $row ) {
151 if ( is_array( $row ) && isset( $row['rc_logid'] ) ) {
152 return new RCDatabaseLogEntry( (object) $row );
153 } else {
154 return new self( $row );
155 }
156 }
157
158 // Non-static->
159
160 /// Database result row.
161 protected $row;
162
163 protected function __construct( $row ) {
164 $this->row = $row;
165 }
166
167 /**
168 * Returns the unique database id.
169 * @return int
170 */
171 public function getId() {
172 return (int)$this->row->log_id;
173 }
174
175 /**
176 * Returns whatever is stored in the database field.
177 * @return string
178 */
179 protected function getRawParameters() {
180 return $this->row->log_params;
181 }
182
183 // LogEntryBase->
184
185 public function isLegacy() {
186 // This does the check
187 $this->getParameters();
188 return $this->legacy;
189 }
190
191 // LogEntry->
192
193 public function getType() {
194 return $this->row->log_type;
195 }
196
197 public function getSubtype() {
198 return $this->row->log_action;
199 }
200
201 public function getParameters() {
202 if ( !isset( $this->params ) ) {
203 $blob = $this->getRawParameters();
204 wfSuppressWarnings();
205 $params = unserialize( $blob );
206 wfRestoreWarnings();
207 if ( $params !== false ) {
208 $this->params = $params;
209 $this->legacy = false;
210 } else {
211 $this->params = $blob === '' ? array() : 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 $dbw = wfGetDB( DB_MASTER );
364 $id = $dbw->nextSequenceValue( 'logging_log_id_seq' );
365
366 if ( $this->timestamp === null ) {
367 $this->timestamp = wfTimestampNow();
368 }
369
370 $data = array(
371 'log_id' => $id,
372 'log_type' => $this->getType(),
373 'log_action' => $this->getSubtype(),
374 'log_timestamp' => $dbw->timestamp( $this->getTimestamp() ),
375 'log_user' => $this->getPerformer()->getId(),
376 'log_user_text' => $this->getPerformer()->getName(),
377 'log_namespace' => $this->getTarget()->getNamespace(),
378 'log_title' => $this->getTarget()->getDBkey(),
379 'log_page' => $this->getTarget()->getArticleId(),
380 'log_comment' => $this->getComment(),
381 'log_params' => serialize( (array) $this->getParameters() ),
382 );
383 $dbw->insert( 'logging', $data, __METHOD__ );
384 $this->id = !is_null( $id ) ? $id : $dbw->insertId();
385 return $this->id;
386 }
387
388 /**
389 * Publishes the log entry.
390 * @param $newId int id of the log entry.
391 * @param $to string: rcandudp (default), rc, udp
392 */
393 public function publish( $newId, $to = 'rcandudp' ) {
394 $log = new LogPage( $this->getType() );
395 if ( $log->isRestricted() ) {
396 return;
397 }
398
399 $formatter = LogFormatter::newFromEntry( $this );
400 $context = RequestContext::newExtraneousContext( $this->getTarget() );
401 $formatter->setContext( $context );
402
403 $logpage = SpecialPage::getTitleFor( 'Log', $this->getType() );
404 $user = $this->getPerformer();
405 $rc = RecentChange::newLogEntry(
406 $this->getTimestamp(),
407 $logpage,
408 $user,
409 $formatter->getPlainActionText(), // Used for IRC feeds
410 $user->isAnon() ? $user->getName() : '',
411 $this->getType(),
412 $this->getSubtype(),
413 $this->getTarget(),
414 $this->getComment(),
415 serialize( (array) $this->getParameters() ),
416 $newId
417 );
418
419 if ( $to === 'rc' || $to === 'rcandudp' ) {
420 $rc->save();
421 }
422
423 if ( $to === 'udp' || $to === 'rcandudp' ) {
424 $rc->notifyRC2UDP();
425 }
426 }
427
428 // LogEntry->
429
430 public function getType() {
431 return $this->type;
432 }
433
434 public function getSubtype() {
435 return $this->subtype;
436 }
437
438 public function getParameters() {
439 return $this->parameters;
440 }
441
442 public function getPerformer() {
443 return $this->performer;
444 }
445
446 public function getTarget() {
447 return $this->target;
448 }
449
450 public function getTimestamp() {
451 $ts = $this->timestamp !== null ? $this->timestamp : wfTimestampNow();
452 return wfTimestamp( TS_MW, $ts );
453 }
454
455 public function getComment() {
456 return $this->comment;
457 }
458
459 public function getDeleted() {
460 return (int) $this->deleted;
461 }
462
463 }