Merge "ProfilerOutputStats: allow a key prefix to be specified"
[mediawiki.git] / includes / revisiondelete / RevDelLogItem.php
blob49adf204a8448625793fb779b26557f0da7a0ba6
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
18 * @file
19 * @ingroup RevisionDelete
22 /**
23 * Item class for a logging table row
25 class RevDelLogItem extends RevDelItem {
26 public function getIdField() {
27 return 'log_id';
30 public function getTimestampField() {
31 return 'log_timestamp';
34 public function getAuthorIdField() {
35 return 'log_user';
38 public function getAuthorNameField() {
39 return 'log_user_text';
42 public function canView() {
43 return LogEventsList::userCan( $this->row, Revision::DELETED_RESTRICTED, $this->list->getUser() );
46 public function canViewContent() {
47 return true; // none
50 public function getBits() {
51 return $this->row->log_deleted;
54 public function setBits( $bits ) {
55 $dbw = wfGetDB( DB_MASTER );
56 $dbw->update( 'recentchanges',
57 array(
58 'rc_deleted' => $bits,
59 'rc_patrolled' => 1
61 array(
62 'rc_logid' => $this->row->log_id,
63 'rc_timestamp' => $this->row->log_timestamp // index
65 __METHOD__
67 $dbw->update( 'logging',
68 array( 'log_deleted' => $bits ),
69 array(
70 'log_id' => $this->row->log_id,
71 'log_deleted' => $this->getBits()
73 __METHOD__
76 return (bool)$dbw->affectedRows();
79 public function getHTML() {
80 $date = htmlspecialchars( $this->list->getLanguage()->userTimeAndDate(
81 $this->row->log_timestamp, $this->list->getUser() ) );
82 $title = Title::makeTitle( $this->row->log_namespace, $this->row->log_title );
83 $formatter = LogFormatter::newFromRow( $this->row );
84 $formatter->setContext( $this->list->getContext() );
85 $formatter->setAudience( LogFormatter::FOR_THIS_USER );
87 // Log link for this page
88 $loglink = Linker::link(
89 SpecialPage::getTitleFor( 'Log' ),
90 $this->list->msg( 'log' )->escaped(),
91 array(),
92 array( 'page' => $title->getPrefixedText() )
94 $loglink = $this->list->msg( 'parentheses' )->rawParams( $loglink )->escaped();
95 // User links and action text
96 $action = $formatter->getActionText();
97 // Comment
98 $comment = $this->list->getLanguage()->getDirMark()
99 . Linker::commentBlock( $this->row->log_comment );
101 if ( LogEventsList::isDeleted( $this->row, LogPage::DELETED_COMMENT ) ) {
102 $comment = '<span class="history-deleted">' . $comment . '</span>';
105 return "<li>$loglink $date $action $comment</li>";
108 public function getApiData( ApiResult $result ) {
109 $logEntry = DatabaseLogEntry::newFromRow( $this->row );
110 $user = $this->list->getUser();
111 $ret = array(
112 'id' => $logEntry->getId(),
113 'type' => $logEntry->getType(),
114 'action' => $logEntry->getSubtype(),
116 $ret += $logEntry->isDeleted( LogPage::DELETED_USER )
117 ? array( 'userhidden' => '' )
118 : array();
119 $ret += $logEntry->isDeleted( LogPage::DELETED_COMMENT )
120 ? array( 'commenthidden' => '' )
121 : array();
122 $ret += $logEntry->isDeleted( LogPage::DELETED_ACTION )
123 ? array( 'actionhidden' => '' )
124 : array();
126 if ( LogEventsList::userCan( $this->row, LogPage::DELETED_ACTION, $user ) ) {
127 $ret['params'] = LogFormatter::newFromEntry( $logEntry )->formatParametersForApi();
129 if ( LogEventsList::userCan( $this->row, LogPage::DELETED_USER, $user ) ) {
130 $ret += array(
131 'userid' => $this->row->log_user,
132 'user' => $this->row->log_user_text,
135 if ( LogEventsList::userCan( $this->row, LogPage::DELETED_COMMENT, $user ) ) {
136 $ret += array(
137 'comment' => $this->row->log_comment,
141 return $ret;