3 * Implements Special:Log
5 * Copyright © 2008 Aaron Schulz
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
23 * @ingroup SpecialPage
27 * A special page that lists log entries
29 * @ingroup SpecialPage
31 class SpecialLog
extends SpecialPage
{
33 * List log type for which the target is a user
34 * Thus if the given target is in NS_MAIN we can alter it to be an NS_USER
37 private $typeOnUser = array(
43 public function __construct() {
44 parent
::__construct( 'Log' );
47 public function execute( $par ) {
48 global $wgLogRestrictions;
51 $this->outputHeader();
53 $opts = new FormOptions
;
54 $opts->add( 'type', '' );
55 $opts->add( 'user', '' );
56 $opts->add( 'page', '' );
57 $opts->add( 'pattern', false );
58 $opts->add( 'year', null, FormOptions
::INTNULL
);
59 $opts->add( 'month', null, FormOptions
::INTNULL
);
60 $opts->add( 'tagfilter', '' );
61 $opts->add( 'offset', '' );
62 $opts->add( 'dir', '' );
63 $opts->add( 'offender', '' );
66 $opts->fetchValuesFromRequest( $this->getRequest() );
67 if ( $par !== null ) {
68 $this->parseParams( $opts, (string)$par );
71 # Don't let the user get stuck with a certain date
72 if ( $opts->getValue( 'offset' ) ||
$opts->getValue( 'dir' ) == 'prev' ) {
73 $opts->setValue( 'year', '' );
74 $opts->setValue( 'month', '' );
77 // If the user doesn't have the right permission to view the specific
78 // log type, throw a PermissionsError
79 // If the log type is invalid, just show all public logs
80 $type = $opts->getValue( 'type' );
81 if ( !LogPage
::isLogType( $type ) ) {
82 $opts->setValue( 'type', '' );
83 } elseif ( isset( $wgLogRestrictions[$type] )
84 && !$this->getUser()->isAllowed( $wgLogRestrictions[$type] )
86 throw new PermissionsError( $wgLogRestrictions[$type] );
89 # Handle type-specific inputs
91 if ( $opts->getValue( 'type' ) == 'suppress' ) {
92 $offender = User
::newFromName( $opts->getValue( 'offender' ), false );
93 if ( $offender && $offender->getId() > 0 ) {
94 $qc = array( 'ls_field' => 'target_author_id', 'ls_value' => $offender->getId() );
95 } elseif ( $offender && IP
::isIPAddress( $offender->getName() ) ) {
96 $qc = array( 'ls_field' => 'target_author_ip', 'ls_value' => $offender->getName() );
100 # Some log types are only for a 'User:' title but we might have been given
101 # only the username instead of the full title 'User:username'. This part try
102 # to lookup for a user by that name and eventually fix user input. See bug 1697.
103 wfRunHooks( 'GetLogTypesOnUser', array( &$this->typeOnUser
) );
104 if ( in_array( $opts->getValue( 'type' ), $this->typeOnUser
) ) {
105 # ok we have a type of log which expect a user title.
106 $target = Title
::newFromText( $opts->getValue( 'page' ) );
107 if ( $target && $target->getNamespace() === NS_MAIN
) {
108 # User forgot to add 'User:', we are adding it for him
109 $opts->setValue( 'page',
110 Title
::makeTitleSafe( NS_USER
, $opts->getValue( 'page' ) )
115 $this->show( $opts, $qc );
118 private function parseParams( FormOptions
$opts, $par ) {
122 $parms = explode( '/', ( $par = ( $par !== null ) ?
$par : '' ) );
123 $symsForAll = array( '*', 'all' );
124 if ( $parms[0] != '' &&
125 ( in_array( $par, $wgLogTypes ) ||
in_array( $par, $symsForAll ) )
127 $opts->setValue( 'type', $par );
128 } elseif ( count( $parms ) == 2 ) {
129 $opts->setValue( 'type', $parms[0] );
130 $opts->setValue( 'user', $parms[1] );
131 } elseif ( $par != '' ) {
132 $opts->setValue( 'user', $par );
136 private function show( FormOptions
$opts, array $extraConds ) {
137 # Create a LogPager item to get the results and a LogEventsList item to format them...
138 $loglist = new LogEventsList(
141 LogEventsList
::USE_REVDEL_CHECKBOXES
143 $pager = new LogPager(
145 $opts->getValue( 'type' ),
146 $opts->getValue( 'user' ),
147 $opts->getValue( 'page' ),
148 $opts->getValue( 'pattern' ),
150 $opts->getValue( 'year' ),
151 $opts->getValue( 'month' ),
152 $opts->getValue( 'tagfilter' )
155 $this->addHeader( $opts->getValue( 'type' ) );
158 if ( $pager->getPerformer() ) {
159 $this->getSkin()->setRelevantUser( User
::newFromName( $pager->getPerformer() ) );
163 $loglist->showOptions(
165 $opts->getValue( 'user' ),
167 $pager->getPattern(),
170 $pager->getFilterParams(),
171 $opts->getValue( 'tagfilter' )
175 $logBody = $pager->getBody();
177 $this->getOutput()->addHTML(
178 $pager->getNavigationBar() .
179 $this->getRevisionButton(
180 $loglist->beginLogEventsList() .
182 $loglist->endLogEventsList()
184 $pager->getNavigationBar()
187 $this->getOutput()->addWikiMsg( 'logempty' );
191 private function getRevisionButton( $formcontents ) {
192 # If the user doesn't have the ability to delete log entries,
193 # don't bother showing them the button.
194 if ( !$this->getUser()->isAllowedAll( 'deletedhistory', 'deletelogentry' ) ) {
195 return $formcontents;
198 # Show button to hide log entries
200 $s = Html
::openElement(
202 array( 'action' => $wgScript, 'id' => 'mw-log-deleterevision-submit' )
204 $s .= Html
::hidden( 'title', SpecialPage
::getTitleFor( 'Revisiondelete' ) ) . "\n";
205 $s .= Html
::hidden( 'target', SpecialPage
::getTitleFor( 'Log' ) ) . "\n";
206 $s .= Html
::hidden( 'type', 'logging' ) . "\n";
207 $button = Html
::element(
211 'class' => "deleterevision-log-submit mw-log-deleterevision-button"
213 $this->msg( 'showhideselectedlogentries' )->text()
215 $s .= $button . $formcontents . $button;
216 $s .= Html
::closeElement( 'form' );
222 * Set page title and show header for this log type
223 * @param string $type
226 protected function addHeader( $type ) {
227 $page = new LogPage( $type );
228 $this->getOutput()->setPageTitle( $page->getName()->text() );
229 $this->getOutput()->addHTML( $page->getDescription()->parseAsBlock() );
232 protected function getGroupName() {