Split RevisionDelete.php to separate files
[lhc/web/wiklou.git] / includes / revisiondelete / RevDelLogList.php
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.
7 *
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.
12 *
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
17 *
18 * @file
19 * @ingroup RevisionDelete
20 */
21
22 /**
23 * List for logging table items
24 */
25 class RevDelLogList extends RevDelList {
26 public function getType() {
27 return 'logging';
28 }
29
30 public static function getRelationType() {
31 return 'log_id';
32 }
33
34 public static function getRestriction() {
35 return 'deletelogentry';
36 }
37
38 public static function getRevdelConstant() {
39 return LogPage::DELETED_ACTION;
40 }
41
42 public static function suggestTarget( $target, array $ids ) {
43 $result = wfGetDB( DB_SLAVE )->select( 'logging', 'log_type', array( 'log_id' => $ids ), __METHOD__, array( 'DISTINCT' ) );
44 if ( $result->numRows() == 1 ) {
45 // If there's only one type, the target can be set to include it.
46 return SpecialPage::getTitleFor( 'Log', $result->current()->log_type );
47 }
48
49 return SpecialPage::getTitleFor( 'Log' );
50 }
51
52 /**
53 * @param DatabaseBase $db
54 * @return mixed
55 */
56 public function doQuery( $db ) {
57 $ids = array_map( 'intval', $this->ids );
58
59 return $db->select( 'logging', array( 'log_id', 'log_type', 'log_action', 'log_timestamp', 'log_user', 'log_user_text', 'log_namespace', 'log_title', 'log_page', 'log_comment', 'log_params', 'log_deleted' ), array( 'log_id' => $ids ), __METHOD__, array( 'ORDER BY' => 'log_id DESC' ) );
60 }
61
62 public function newItem( $row ) {
63 return new RevDelLogItem( $this, $row );
64 }
65
66 public function getSuppressBit() {
67 return Revision::DELETED_RESTRICTED;
68 }
69
70 public function getLogAction() {
71 return 'event';
72 }
73
74 public function getLogParams( $params ) {
75 return array( implode( ',', $params['ids'] ), "ofield={$params['oldBits']}", "nfield={$params['newBits']}" );
76 }
77 }