ad0e535a57f15843936398177d8849ab5120de99
[lhc/web/wiklou.git] / includes / LogPage.php
1 <?php
2 #
3 # Copyright (C) 2002, 2004 Brion Vibber <brion@pobox.com>
4 # http://www.mediawiki.org/
5 #
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.
10 #
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.
15 #
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
20
21 /**
22 * Contain log classes
23 *
24 * @package MediaWiki
25 */
26
27 /**
28 * Class to simplify the use of log pages.
29 * The logs are now kept in a table which is easier to manage and trim
30 * than ever-growing wiki pages.
31 *
32 * @package MediaWiki
33 */
34 class LogPage {
35 /* @access private */
36 var $type, $action, $comment, $params, $target;
37 /* @acess public */
38 var $updateRecentChanges;
39
40 /**
41 * Constructor
42 *
43 * @param string $type One of '', 'block', 'protect', 'rights', 'delete',
44 * 'upload', 'move'
45 * @param bool $rc Whether to update recent changes as well as the logging table
46 */
47 function LogPage( $type, $rc = true ) {
48 $this->type = $type;
49 $this->updateRecentChanges = $rc;
50 }
51
52 function saveContent() {
53 if( wfReadOnly() ) return false;
54
55 global $wgUser;
56 $fname = 'LogPage::saveContent';
57
58 $dbw =& wfGetDB( DB_MASTER );
59 $uid = $wgUser->getID();
60
61 $this->timestamp = $now = wfTimestampNow();
62 $dbw->insert( 'logging',
63 array(
64 'log_type' => $this->type,
65 'log_action' => $this->action,
66 'log_timestamp' => $dbw->timestamp( $now ),
67 'log_user' => $uid,
68 'log_namespace' => $this->target->getNamespace(),
69 'log_title' => $this->target->getDBkey(),
70 'log_comment' => $this->comment,
71 'log_params' => $this->params
72 ), $fname
73 );
74
75 # And update recentchanges
76 if ( $this->updateRecentChanges ) {
77 $titleObj = SpecialPage::getTitleFor( 'Log', $this->type );
78 $rcComment = $this->actionText;
79 if( '' != $this->comment ) {
80 if ($rcComment == '')
81 $rcComment = $this->comment;
82 else
83 $rcComment .= ': ' . $this->comment;
84 }
85
86 RecentChange::notifyLog( $now, $titleObj, $wgUser, $rcComment, '',
87 $this->type, $this->action, $this->target, $this->comment, $this->params );
88 }
89 return true;
90 }
91
92 /**
93 * @static
94 */
95 function validTypes() {
96 global $wgLogTypes;
97 return $wgLogTypes;
98 }
99
100 /**
101 * @static
102 */
103 function isLogType( $type ) {
104 return in_array( $type, LogPage::validTypes() );
105 }
106
107 /**
108 * @static
109 */
110 public static function logName( $type ) {
111 global $wgLogNames;
112
113 if( isset( $wgLogNames[$type] ) ) {
114 return str_replace( '_', ' ', wfMsg( $wgLogNames[$type] ) );
115 } else {
116 // Bogus log types? Perhaps an extension was removed.
117 return $type;
118 }
119 }
120
121 /**
122 * @fixme: handle missing log types
123 * @static
124 */
125 function logHeader( $type ) {
126 global $wgLogHeaders;
127 return wfMsg( $wgLogHeaders[$type] );
128 }
129
130 /**
131 * @static
132 */
133 function actionText( $type, $action, $title = NULL, $skin = NULL, $params = array(), $filterWikilinks=false, $translate=false ) {
134 global $wgLang, $wgContLang, $wgLogActions;
135
136 $key = "$type/$action";
137
138 if( $key == 'patrol/patrol' )
139 return PatrolLog::makeActionText( $title, $params, $skin );
140
141 if( isset( $wgLogActions[$key] ) ) {
142 if( is_null( $title ) ) {
143 $rv=wfMsg( $wgLogActions[$key] );
144 } else {
145 if( $skin ) {
146
147 switch( $type ) {
148 case 'move':
149 $titleLink = $skin->makeLinkObj( $title, $title->getPrefixedText(), 'redirect=no' );
150 $params[0] = $skin->makeLinkObj( Title::newFromText( $params[0] ), $params[0] );
151 break;
152 case 'block':
153 if( substr( $title->getText(), 0, 1 ) == '#' ) {
154 $titleLink = $title->getText();
155 } else {
156 $titleLink = $skin->makeLinkObj( $title, $title->getText() );
157 $titleLink .= ' (' . $skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Contributions', $title->getDBkey() ), wfMsg( 'contribslink' ) ) . ')';
158 }
159 break;
160 case 'rights':
161 $text = $wgContLang->ucfirst( $title->getText() );
162 $titleLink = $skin->makeLinkObj( Title::makeTitle( NS_USER, $text ) );
163 break;
164 default:
165 $titleLink = $skin->makeLinkObj( $title );
166 }
167
168 } else {
169 $titleLink = $title->getPrefixedText();
170 }
171 if( $key == 'rights/rights' ) {
172 if ($skin) {
173 $rightsnone = wfMsg( 'rightsnone' );
174 } else {
175 $rightsnone = wfMsgForContent( 'rightsnone' );
176 }
177 if( !isset( $params[0] ) || trim( $params[0] ) == '' )
178 $params[0] = $rightsnone;
179 if( !isset( $params[1] ) || trim( $params[1] ) == '' )
180 $params[1] = $rightsnone;
181 }
182 if( count( $params ) == 0 ) {
183 if ( $skin ) {
184 $rv = wfMsg( $wgLogActions[$key], $titleLink );
185 } else {
186 $rv = wfMsgForContent( $wgLogActions[$key], $titleLink );
187 }
188 } else {
189 array_unshift( $params, $titleLink );
190 if ( $translate && $key == 'block/block' ) {
191 $params[1] = $wgLang->translateBlockExpiry( $params[1] );
192 $params[2] = isset( $params[2] )
193 ? self::formatBlockFlags( $params[2] )
194 : '';
195 }
196 $rv = wfMsgReal( $wgLogActions[$key], $params, true, !$skin );
197 }
198 }
199 } else {
200 wfDebug( "LogPage::actionText - unknown action $key\n" );
201 $rv = "$action";
202 }
203 if( $filterWikilinks ) {
204 $rv = str_replace( "[[", "", $rv );
205 $rv = str_replace( "]]", "", $rv );
206 }
207 return $rv;
208 }
209
210 /**
211 * Add a log entry
212 * @param string $action one of '', 'block', 'protect', 'rights', 'delete', 'upload', 'move', 'move_redir'
213 * @param object &$target A title object.
214 * @param string $comment Description associated
215 * @param array $params Parameters passed later to wfMsg.* functions
216 */
217 function addEntry( $action, $target, $comment, $params = array() ) {
218 if ( !is_array( $params ) ) {
219 $params = array( $params );
220 }
221
222 $this->action = $action;
223 $this->target = $target;
224 $this->comment = $comment;
225 $this->params = LogPage::makeParamBlob( $params );
226
227 $this->actionText = LogPage::actionText( $this->type, $action, $target, NULL, $params );
228
229 return $this->saveContent();
230 }
231
232 /**
233 * Create a blob from a parameter array
234 * @static
235 */
236 function makeParamBlob( $params ) {
237 return implode( "\n", $params );
238 }
239
240 /**
241 * Extract a parameter array from a blob
242 * @static
243 */
244 function extractParams( $blob ) {
245 if ( $blob === '' ) {
246 return array();
247 } else {
248 return explode( "\n", $blob );
249 }
250 }
251
252 /**
253 * Convert a comma-delimited list of block log flags
254 * into a more readable (and translated) form
255 *
256 * @param $flags Flags to format
257 * @return string
258 */
259 public static function formatBlockFlags( $flags ) {
260 $flags = explode( ',', trim( $flags ) );
261 if( count( $flags ) > 0 ) {
262 for( $i = 0; $i < count( $flags ); $i++ )
263 $flags[$i] = self::formatBlockFlag( $flags[$i] );
264 return '(' . implode( ', ', $flags ) . ')';
265 } else {
266 return '';
267 }
268 }
269
270 /**
271 * Translate a block log flag if possible
272 *
273 * @param $flag Flag to translate
274 * @return string
275 */
276 public static function formatBlockFlag( $flag ) {
277 static $messages = array();
278 if( !isset( $messages[$flag] ) ) {
279 $k = 'block-log-flags-' . $flag;
280 $msg = wfMsg( $k );
281 $messages[$flag] = htmlspecialchars( wfEmptyMsg( $k, $msg ) ? $flag : $msg );
282 }
283 return $messages[$flag];
284 }
285
286 }
287
288 ?>