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
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.
34 var $type, $action, $comment, $params, $target;
36 var $updateRecentChanges;
41 * @param string $type One of '', 'block', 'protect', 'rights', 'delete',
43 * @param bool $rc Whether to update recent changes as well as the logging table
45 function __construct( $type, $rc = true ) {
47 $this->updateRecentChanges
= $rc;
50 function saveContent() {
51 if( wfReadOnly() ) return false;
54 $fname = 'LogPage::saveContent';
56 $dbw = wfGetDB( DB_MASTER
);
57 $uid = $wgUser->getID();
58 $log_id = $dbw->nextSequenceValue( 'log_log_id_seq' );
60 $this->timestamp
= $now = wfTimestampNow();
62 'log_type' => $this->type
,
63 'log_action' => $this->action
,
64 'log_timestamp' => $dbw->timestamp( $now ),
66 'log_namespace' => $this->target
->getNamespace(),
67 'log_title' => $this->target
->getDBkey(),
68 'log_comment' => $this->comment
,
69 'log_params' => $this->params
72 # log_id doesn't exist on Wikimedia servers yet, and it's a tricky
73 # schema update to do. Hack it for now to ignore the field on MySQL.
74 if ( !is_null( $log_id ) ) {
75 $data['log_id'] = $log_id;
77 $dbw->insert( 'logging', $data, $fname );
79 # And update recentchanges
80 if ( $this->updateRecentChanges
) {
81 $titleObj = SpecialPage
::getTitleFor( 'Log', $this->type
);
82 $rcComment = $this->actionText
;
83 if( '' != $this->comment
) {
85 $rcComment = $this->comment
;
87 $rcComment .= ': ' . $this->comment
;
90 RecentChange
::notifyLog( $now, $titleObj, $wgUser, $rcComment, '',
91 $this->type
, $this->action
, $this->target
, $this->comment
, $this->params
);
99 public static function validTypes() {
107 public static function isLogType( $type ) {
108 return in_array( $type, LogPage
::validTypes() );
114 public static function logName( $type ) {
117 if( isset( $wgLogNames[$type] ) ) {
118 return str_replace( '_', ' ', wfMsg( $wgLogNames[$type] ) );
120 // Bogus log types? Perhaps an extension was removed.
126 * @todo handle missing log types
129 static function logHeader( $type ) {
130 global $wgLogHeaders;
131 return wfMsg( $wgLogHeaders[$type] );
137 static function actionText( $type, $action, $title = NULL, $skin = NULL, $params = array(), $filterWikilinks=false, $translate=false ) {
138 global $wgLang, $wgContLang, $wgLogActions;
140 $key = "$type/$action";
142 if( $key == 'patrol/patrol' )
143 return PatrolLog
::makeActionText( $title, $params, $skin );
145 if( isset( $wgLogActions[$key] ) ) {
146 if( is_null( $title ) ) {
147 $rv=wfMsg( $wgLogActions[$key] );
153 $titleLink = $skin->makeLinkObj( $title, $title->getPrefixedText(), 'redirect=no' );
154 $params[0] = $skin->makeLinkObj( Title
::newFromText( $params[0] ), $params[0] );
157 if( substr( $title->getText(), 0, 1 ) == '#' ) {
158 $titleLink = $title->getText();
160 $titleLink = $skin->makeLinkObj( $title, $title->getText() );
161 $titleLink .= ' (' . $skin->makeKnownLinkObj( SpecialPage
::getTitleFor( 'Contributions', $title->getDBkey() ), wfMsg( 'contribslink' ) ) . ')';
165 $text = $wgContLang->ucfirst( $title->getText() );
166 $titleLink = $skin->makeLinkObj( Title
::makeTitle( NS_USER
, $text ) );
169 $titleLink = $skin->makeLinkObj( $title );
173 $titleLink = $title->getPrefixedText();
175 if( $key == 'rights/rights' ) {
177 $rightsnone = wfMsg( 'rightsnone' );
179 $rightsnone = wfMsgForContent( 'rightsnone' );
181 if( !isset( $params[0] ) ||
trim( $params[0] ) == '' )
182 $params[0] = $rightsnone;
183 if( !isset( $params[1] ) ||
trim( $params[1] ) == '' )
184 $params[1] = $rightsnone;
186 if( count( $params ) == 0 ) {
188 $rv = wfMsg( $wgLogActions[$key], $titleLink );
190 $rv = wfMsgForContent( $wgLogActions[$key], $titleLink );
193 array_unshift( $params, $titleLink );
194 if ( $key == 'block/block' ) {
196 $params[1] = $wgLang->translateBlockExpiry( $params[1] );
198 $params[2] = isset( $params[2] )
199 ? self
::formatBlockFlags( $params[2] )
202 $rv = wfMsgReal( $wgLogActions[$key], $params, true, !$skin );
206 wfDebug( "LogPage::actionText - unknown action $key\n" );
209 if( $filterWikilinks ) {
210 $rv = str_replace( "[[", "", $rv );
211 $rv = str_replace( "]]", "", $rv );
218 * @param string $action one of '', 'block', 'protect', 'rights', 'delete', 'upload', 'move', 'move_redir'
219 * @param object &$target A title object.
220 * @param string $comment Description associated
221 * @param array $params Parameters passed later to wfMsg.* functions
223 function addEntry( $action, $target, $comment, $params = array() ) {
224 if ( !is_array( $params ) ) {
225 $params = array( $params );
228 $this->action
= $action;
229 $this->target
= $target;
230 $this->comment
= $comment;
231 $this->params
= LogPage
::makeParamBlob( $params );
233 $this->actionText
= LogPage
::actionText( $this->type
, $action, $target, NULL, $params );
235 return $this->saveContent();
239 * Create a blob from a parameter array
242 static function makeParamBlob( $params ) {
243 return implode( "\n", $params );
247 * Extract a parameter array from a blob
250 static function extractParams( $blob ) {
251 if ( $blob === '' ) {
254 return explode( "\n", $blob );
259 * Convert a comma-delimited list of block log flags
260 * into a more readable (and translated) form
262 * @param $flags Flags to format
265 public static function formatBlockFlags( $flags ) {
266 $flags = explode( ',', trim( $flags ) );
267 if( count( $flags ) > 0 ) {
268 for( $i = 0; $i < count( $flags ); $i++
)
269 $flags[$i] = self
::formatBlockFlag( $flags[$i] );
270 return '(' . implode( ', ', $flags ) . ')';
277 * Translate a block log flag if possible
279 * @param $flag Flag to translate
282 public static function formatBlockFlag( $flag ) {
283 static $messages = array();
284 if( !isset( $messages[$flag] ) ) {
285 $k = 'block-log-flags-' . $flag;
287 $messages[$flag] = htmlspecialchars( wfEmptyMsg( $k, $msg ) ?
$flag : $msg );
289 return $messages[$flag];