* Update plural for uk
[mediawiki.git] / includes / LogPage.php
blobfcc245a62ecf60b40616625d535781cffeca33ce
1 <?php
3 # Copyright (C) 2002, 2004 Brion Vibber <brion@pobox.com>
4 # http://www.mediawiki.org/
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 # http://www.gnu.org/copyleft/gpl.html
21 /**
22 * Contain log classes
23 * @file
26 /**
27 * Class to simplify the use of log pages.
28 * The logs are now kept in a table which is easier to manage and trim
29 * than ever-growing wiki pages.
32 class LogPage {
33 const DELETED_ACTION = 1;
34 const DELETED_COMMENT = 2;
35 const DELETED_USER = 4;
36 const DELETED_RESTRICTED = 8;
37 /* @access private */
38 var $type, $action, $comment, $params, $target;
39 /* @acess public */
40 var $updateRecentChanges;
42 /**
43 * Constructor
45 * @param string $type One of '', 'block', 'protect', 'rights', 'delete',
46 * 'upload', 'move'
47 * @param bool $rc Whether to update recent changes as well as the logging table
49 function __construct( $type, $rc = true ) {
50 $this->type = $type;
51 $this->updateRecentChanges = $rc;
54 protected function saveContent() {
55 global $wgUser, $wgLogRestrictions;
56 $fname = 'LogPage::saveContent';
58 $dbw = wfGetDB( DB_MASTER );
59 $uid = $wgUser->getId();
60 $log_id = $dbw->nextSequenceValue( 'log_log_id_seq' );
62 $this->timestamp = $now = wfTimestampNow();
63 $data = array(
64 'log_id' => $log_id,
65 'log_type' => $this->type,
66 'log_action' => $this->action,
67 'log_timestamp' => $dbw->timestamp( $now ),
68 'log_user' => $uid,
69 'log_namespace' => $this->target->getNamespace(),
70 'log_title' => $this->target->getDBkey(),
71 'log_comment' => $this->comment,
72 'log_params' => $this->params
74 $dbw->insert( 'logging', $data, $fname );
75 $newId = !is_null($log_id) ? $log_id : $dbw->insertId();
77 if( !($dbw->affectedRows() > 0) ) {
78 wfDebugLog( "logging", "LogPage::saveContent failed to insert row - Error {$dbw->lastErrno()}: {$dbw->lastError()}" );
80 # And update recentchanges
81 if( $this->updateRecentChanges ) {
82 # Don't add private logs to RC!
83 if( !isset($wgLogRestrictions[$this->type]) || $wgLogRestrictions[$this->type]=='*' ) {
84 $titleObj = SpecialPage::getTitleFor( 'Log', $this->type );
85 $rcComment = $this->getRcComment();
86 RecentChange::notifyLog( $now, $titleObj, $wgUser, $rcComment, '',
87 $this->type, $this->action, $this->target, $this->comment, $this->params, $newId );
90 return true;
93 public function getRcComment() {
94 $rcComment = $this->actionText;
95 if( '' != $this->comment ) {
96 if ($rcComment == '')
97 $rcComment = $this->comment;
98 else
99 $rcComment .= ': ' . $this->comment;
101 return $rcComment;
105 * @static
107 public static function validTypes() {
108 global $wgLogTypes;
109 return $wgLogTypes;
113 * @static
115 public static function isLogType( $type ) {
116 return in_array( $type, LogPage::validTypes() );
120 * @static
122 public static function logName( $type ) {
123 global $wgLogNames, $wgMessageCache;
125 if( isset( $wgLogNames[$type] ) ) {
126 $wgMessageCache->loadAllMessages();
127 return str_replace( '_', ' ', wfMsg( $wgLogNames[$type] ) );
128 } else {
129 // Bogus log types? Perhaps an extension was removed.
130 return $type;
135 * @todo handle missing log types
136 * @param string $type logtype
137 * @return string Headertext of this logtype
139 static function logHeader( $type ) {
140 global $wgLogHeaders;
141 return wfMsgExt($wgLogHeaders[$type],array('parseinline'));
145 * @static
147 static function actionText( $type, $action, $title = NULL, $skin = NULL, $params = array(), $filterWikilinks=false ) {
148 global $wgLang, $wgContLang, $wgLogActions;
150 $key = "$type/$action";
152 if( $key == 'patrol/patrol' )
153 return PatrolLog::makeActionText( $title, $params, $skin );
155 if( isset( $wgLogActions[$key] ) ) {
156 if( is_null( $title ) ) {
157 $rv=wfMsg( $wgLogActions[$key] );
158 } else {
159 if( $skin ) {
161 switch( $type ) {
162 case 'move':
163 $titleLink = $skin->makeLinkObj( $title, htmlspecialchars( $title->getPrefixedText() ), 'redirect=no' );
164 $params[0] = $skin->makeLinkObj( Title::newFromText( $params[0] ), htmlspecialchars( $params[0] ) );
165 break;
166 case 'block':
167 if( substr( $title->getText(), 0, 1 ) == '#' ) {
168 $titleLink = $title->getText();
169 } else {
170 // TODO: Store the user identifier in the parameters
171 // to make this faster for future log entries
172 $id = User::idFromName( $title->getText() );
173 $titleLink = $skin->userLink( $id, $title->getText() )
174 . $skin->userToolLinks( $id, $title->getText(), false, Linker::TOOL_LINKS_NOBLOCK );
176 break;
177 case 'rights':
178 $text = $wgContLang->ucfirst( $title->getText() );
179 $titleLink = $skin->makeLinkObj( Title::makeTitle( NS_USER, $text ) );
180 break;
181 case 'merge':
182 $titleLink = $skin->makeLinkObj( $title, $title->getPrefixedText(), 'redirect=no' );
183 $params[0] = $skin->makeLinkObj( Title::newFromText( $params[0] ), htmlspecialchars( $params[0] ) );
184 $params[1] = $wgLang->timeanddate( $params[1] );
185 break;
186 default:
187 $titleLink = $skin->makeLinkObj( $title );
190 } else {
191 $titleLink = $title->getPrefixedText();
193 if( $key == 'rights/rights' ) {
194 if ($skin) {
195 $rightsnone = wfMsg( 'rightsnone' );
196 } else {
197 $rightsnone = wfMsgForContent( 'rightsnone' );
199 if( !isset( $params[0] ) || trim( $params[0] ) == '' )
200 $params[0] = $rightsnone;
201 if( !isset( $params[1] ) || trim( $params[1] ) == '' )
202 $params[1] = $rightsnone;
204 if( count( $params ) == 0 ) {
205 if ( $skin ) {
206 $rv = wfMsg( $wgLogActions[$key], $titleLink );
207 } else {
208 $rv = wfMsgForContent( $wgLogActions[$key], $titleLink );
210 } else {
211 array_unshift( $params, $titleLink );
212 if ( $key == 'block/block' || $key == 'suppress/block' ) {
213 if ( $skin ) {
214 $params[1] = '<span title="' . htmlspecialchars( $params[1] ). '">' . $wgLang->translateBlockExpiry( $params[1] ) . '</span>';
215 } else {
216 $params[1] = $wgContLang->translateBlockExpiry( $params[1] );
218 $params[2] = isset( $params[2] )
219 ? self::formatBlockFlags( $params[2], is_null( $skin ) )
220 : '';
222 $rv = wfMsgReal( $wgLogActions[$key], $params, true, !$skin );
225 } else {
226 global $wgLogActionsHandlers;
227 if( isset( $wgLogActionsHandlers[$key] ) ) {
228 $args = func_get_args();
229 $rv = call_user_func_array( $wgLogActionsHandlers[$key], $args );
230 } else {
231 wfDebug( "LogPage::actionText - unknown action $key\n" );
232 $rv = "$action";
235 if( $filterWikilinks ) {
236 $rv = str_replace( "[[", "", $rv );
237 $rv = str_replace( "]]", "", $rv );
239 return $rv;
243 * Add a log entry
244 * @param string $action one of '', 'block', 'protect', 'rights', 'delete', 'upload', 'move', 'move_redir'
245 * @param object &$target A title object.
246 * @param string $comment Description associated
247 * @param array $params Parameters passed later to wfMsg.* functions
249 function addEntry( $action, $target, $comment, $params = array() ) {
250 if ( !is_array( $params ) ) {
251 $params = array( $params );
254 $this->action = $action;
255 $this->target = $target;
256 $this->comment = $comment;
257 $this->params = LogPage::makeParamBlob( $params );
259 $this->actionText = LogPage::actionText( $this->type, $action, $target, NULL, $params );
261 return $this->saveContent();
265 * Create a blob from a parameter array
266 * @static
268 static function makeParamBlob( $params ) {
269 return implode( "\n", $params );
273 * Extract a parameter array from a blob
274 * @static
276 static function extractParams( $blob ) {
277 if ( $blob === '' ) {
278 return array();
279 } else {
280 return explode( "\n", $blob );
285 * Convert a comma-delimited list of block log flags
286 * into a more readable (and translated) form
288 * @param $flags Flags to format
289 * @param $forContent Whether to localize the message depending of the user
290 * language
291 * @return string
293 public static function formatBlockFlags( $flags, $forContent = false ) {
294 $flags = explode( ',', trim( $flags ) );
295 if( count( $flags ) > 0 ) {
296 for( $i = 0; $i < count( $flags ); $i++ )
297 $flags[$i] = self::formatBlockFlag( $flags[$i], $forContent );
298 return '(' . implode( ', ', $flags ) . ')';
299 } else {
300 return '';
305 * Translate a block log flag if possible
307 * @param $flag Flag to translate
308 * @param $forContent Whether to localize the message depending of the user
309 * language
310 * @return string
312 public static function formatBlockFlag( $flag, $forContent = false ) {
313 static $messages = array();
314 if( !isset( $messages[$flag] ) ) {
315 $k = 'block-log-flags-' . $flag;
316 if( $forContent )
317 $msg = wfMsgForContent( $k );
318 else
319 $msg = wfMsg( $k );
320 $messages[$flag] = htmlspecialchars( wfEmptyMsg( $k, $msg ) ? $flag : $msg );
322 return $messages[$flag];
327 * Aliases for backwards compatibility with 1.6
329 define( 'MW_LOG_DELETED_ACTION', LogPage::DELETED_ACTION );
330 define( 'MW_LOG_DELETED_USER', LogPage::DELETED_USER );
331 define( 'MW_LOG_DELETED_COMMENT', LogPage::DELETED_COMMENT );
332 define( 'MW_LOG_DELETED_RESTRICTED', LogPage::DELETED_RESTRICTED );