mediawiki-extensions-AbuseF.../SpecialAbuseLog.php

378 lines
9.9 KiB
PHP
Raw Normal View History

2008-06-27 06:18:51 +00:00
<?php
if ( !defined( 'MEDIAWIKI' ) )
2008-06-27 06:18:51 +00:00
die();
class SpecialAbuseLog extends SpecialPage {
public function __construct() {
wfLoadExtensionMessages( 'AbuseFilter' );
2008-06-27 06:18:51 +00:00
parent::__construct( 'AbuseLog', 'abusefilter-log' );
}
public function execute( $parameter ) {
global $wgUser, $wgOut, $wgRequest, $wgAbuseFilterStyleVersion;
AbuseFilter::addNavigationLinks( $wgOut, $wgUser->getSkin(), 'log' );
2008-06-27 06:18:51 +00:00
$this->setHeaders();
2009-02-27 09:12:25 +00:00
$this->outputHeader( 'abusefilter-log-summary' );
2008-06-27 06:18:51 +00:00
$this->loadParameters();
$wgOut->setPageTitle( wfMsg( 'abusefilter-log' ) );
$wgOut->setRobotPolicy( "noindex,nofollow" );
2008-06-27 06:18:51 +00:00
$wgOut->setArticleRelated( false );
$wgOut->enableClientCache( false );
global $wgScriptPath;
$wgOut->addExtensionStyle( $wgScriptPath .
"/extensions/AbuseFilter/abusefilter.css?$wgAbuseFilterStyleVersion" );
2008-06-27 06:18:51 +00:00
// Are we allowed?
$errors = $this->getTitle()->getUserPermissionsErrors(
'abusefilter-log', $wgUser, true, array( 'ns-specialprotected' ) );
if ( count( $errors ) ) {
2008-06-27 06:18:51 +00:00
// Go away.
$wgOut->showPermissionsErrorPage( $errors, 'abusefilter-log' );
return;
}
$detailsid = $wgRequest->getIntOrNull( 'details' );
2009-05-22 06:42:10 +00:00
if ( $detailsid ) {
$this->showDetails( $detailsid );
} else {
// Show the search form.
$this->searchForm();
// Show the log itself.
$this->showList();
}
2008-06-27 06:18:51 +00:00
}
2008-06-27 06:18:51 +00:00
function loadParameters() {
global $wgRequest;
2008-06-27 06:18:51 +00:00
$this->mSearchUser = $wgRequest->getText( 'wpSearchUser' );
$t = Title::newFromText( trim( $this->mSearchUser ) );
2009-05-22 06:42:10 +00:00
if ( $t ) {
$this->mSearchUser = $t->getText(); // Username normalisation
2009-05-22 06:42:10 +00:00
} else {
$this->mSearchUser = null;
}
2008-06-27 06:18:51 +00:00
$this->mSearchTitle = $wgRequest->getText( 'wpSearchTitle' );
$this->mSearchFilter = null;
2009-05-22 06:42:10 +00:00
if ( $this->canSeeDetails() ) {
2008-06-27 06:18:51 +00:00
$this->mSearchFilter = $wgRequest->getIntOrNull( 'wpSearchFilter' );
2009-05-22 06:42:10 +00:00
}
2008-06-27 06:18:51 +00:00
}
2008-06-27 06:18:51 +00:00
function searchForm() {
global $wgOut, $wgUser;
2008-06-27 06:18:51 +00:00
$output = Xml::element( 'legend', null, wfMsg( 'abusefilter-log-search' ) );
$fields = array();
2008-06-27 06:18:51 +00:00
// Search conditions
$fields['abusefilter-log-search-user'] =
Xml::input( 'wpSearchUser', 45, $this->mSearchUser );
if ( $this->canSeeDetails() ) {
$fields['abusefilter-log-search-filter'] =
Xml::input( 'wpSearchFilter', 45, $this->mSearchFilter );
}
$fields['abusefilter-log-search-title'] =
Xml::input( 'wpSearchTitle', 45, $this->mSearchTitle );
2008-06-27 06:18:51 +00:00
$form = Xml::hidden( 'title', $this->getTitle()->getPrefixedText() );
2008-06-27 06:18:51 +00:00
$form .= Xml::buildForm( $fields, 'abusefilter-log-search-submit' );
$output .= Xml::tags( 'form',
array( 'method' => 'GET', 'action' => $this->getTitle()->getLocalURL() ),
$form );
2008-06-27 06:18:51 +00:00
$output = Xml::tags( 'fieldset', null, $output );
2008-11-06 22:20:29 +00:00
$wgOut->addHTML( $output );
2008-06-27 06:18:51 +00:00
}
2008-06-27 06:18:51 +00:00
function showList() {
global $wgOut;
2008-06-27 06:18:51 +00:00
// Generate conditions list.
$conds = array();
if ( $this->mSearchUser ) {
2008-06-27 06:18:51 +00:00
$conds['afl_user_text'] = $this->mSearchUser;
2009-05-22 06:42:10 +00:00
}
if ( $this->mSearchFilter ) {
2008-06-27 06:18:51 +00:00
$conds['afl_filter'] = $this->mSearchFilter;
2009-05-22 06:42:10 +00:00
}
2008-06-27 06:18:51 +00:00
$searchTitle = Title::newFromText( $this->mSearchTitle );
2009-05-22 06:42:10 +00:00
if ( $this->mSearchTitle && $searchTitle ) {
2008-06-27 06:18:51 +00:00
$conds['afl_namespace'] = $searchTitle->getNamespace();
2009-05-24 08:33:57 +00:00
$conds['afl_title'] = $searchTitle->getDBkey();
2008-06-27 06:18:51 +00:00
}
2008-06-27 06:18:51 +00:00
$pager = new AbuseLogPager( $this, $conds );
2008-11-06 22:20:29 +00:00
$wgOut->addHTML( $pager->getNavigationBar() .
Xml::tags( 'ul', null, $pager->getBody() ) .
2008-06-27 06:18:51 +00:00
$pager->getNavigationBar() );
}
2008-06-27 06:18:51 +00:00
function showDetails( $id ) {
2009-05-22 06:42:10 +00:00
if ( !$this->canSeeDetails() ) {
2008-06-27 06:18:51 +00:00
return;
}
2008-06-27 06:18:51 +00:00
$dbr = wfGetDB( DB_SLAVE );
$row = $dbr->selectRow( array( 'abuse_filter_log', 'abuse_filter' ), '*',
array( 'afl_id' => $id ), __METHOD__, array(),
array( 'abuse_filter' => array( 'LEFT JOIN', 'af_id=afl_filter' ) ) );
2009-05-22 06:42:10 +00:00
if ( !$row ) {
2008-06-27 06:18:51 +00:00
return;
2009-05-22 06:42:10 +00:00
}
2008-06-27 06:18:51 +00:00
$output = '';
2008-06-27 06:18:51 +00:00
$output .= Xml::element( 'legend', null, wfMsg( 'abusefilter-log-details-legend', $id ) );
$output .= Xml::tags( 'p', null, $this->formatRow( $row, false ) );
// Load data
$vars = AbuseFilter::loadVarDump( $row->afl_var_dump );
// Diff, if available
if ( $vars->getVar( 'action' )->toString() == 'edit' ) {
$old_wikitext = $vars->getVar( 'old_wikitext' )->toString();
$new_wikitext = $vars->getVar( 'new_wikitext' )->toString();
$diffEngine = new DifferenceEngine();
$diffEngine->showDiffStyle();
$formattedDiff = $diffEngine->generateDiffBody( $old_wikitext, $new_wikitext );
static $colDescriptions = "<col class='diff-marker' />
<col class='diff-content' />
<col class='diff-marker' />
<col class='diff-content' />";
$formattedDiff =
"<table class='diff'>$colDescriptions<tbody>$formattedDiff</tbody></table>";
$output .=
Xml::tags(
'h3',
null,
wfMsgExt( 'abusefilter-log-details-diff', 'parseinline' )
);
$output .= $formattedDiff;
}
$output .= Xml::element( 'h3', null, wfMsg( 'abusefilter-log-details-vars' ) );
// Build a table.
$output .= AbuseFilter::buildVarDumpTable( $vars );
2009-05-22 06:42:10 +00:00
if ( $this->canSeePrivate() ) {
2008-06-27 08:11:09 +00:00
// Private stuff, like IPs.
$header =
Xml::element( 'th', null, wfMsg( 'abusefilter-log-details-var' ) ) .
Xml::element( 'th', null, wfMsg( 'abusefilter-log-details-val' ) );
2008-06-27 08:11:09 +00:00
$output .= Xml::element( 'h3', null, wfMsg( 'abusefilter-log-details-private' ) );
$output .=
Xml::openElement( 'table',
array(
'class' => 'wikitable mw-abuselog-private',
'style' => 'width: 80%;'
)
) .
Xml::openElement( 'tbody' );
2008-06-27 08:11:09 +00:00
$output .= $header;
2008-06-27 08:11:09 +00:00
// IP address
$output .=
Xml::tags( 'tr', null,
Xml::element( 'td',
array( 'style' => 'width: 30%;' ),
wfMsg( 'abusefilter-log-details-ip' )
) .
Xml::element( 'td', null, $row->afl_ip )
);
2008-06-27 08:11:09 +00:00
$output .= Xml::closeElement( 'tbody' ) . Xml::closeElement( 'table' );
}
2008-06-27 06:18:51 +00:00
$output = Xml::tags( 'fieldset', null, $output );
2008-06-27 06:18:51 +00:00
global $wgOut;
$wgOut->addHTML( $output );
}
2008-06-27 06:18:51 +00:00
function canSeeDetails() {
global $wgUser;
return !count( $this->getTitle()->getUserPermissionsErrors(
2009-05-22 06:42:10 +00:00
'abusefilter-log-detail', $wgUser, true, array( 'ns-specialprotected' ) ) );
2008-06-27 06:18:51 +00:00
}
2008-06-27 08:11:09 +00:00
function canSeePrivate() {
global $wgUser;
return !count(
$this->getTitle()->getUserPermissionsErrors(
'abusefilter-private', $wgUser, true, array( 'ns-specialprotected' ) ) );
2008-06-27 08:11:09 +00:00
}
function formatRow( $row, $li = true ) {
global $wgLang, $wgUser;
# # One-time setup
static $sk = null;
2009-05-22 06:42:10 +00:00
if ( is_null( $sk ) ) {
2008-06-27 06:18:51 +00:00
$sk = $wgUser->getSkin();
}
2008-06-27 06:18:51 +00:00
$title = Title::makeTitle( $row->afl_namespace, $row->afl_title );
2009-05-22 06:42:10 +00:00
if ( !$row->afl_wiki ) {
$pageLink = $sk->link( $title );
} else {
$pageLink = WikiMap::makeForeignLink( $row->afl_wiki, $row->afl_title );
}
2009-05-22 06:42:10 +00:00
if ( !$row->afl_wiki ) {
// Local user
$user = $sk->userLink( $row->afl_user, $row->afl_user_text ) .
$sk->userToolLinks( $row->afl_user, $row->afl_user_text );
} else {
$user = WikiMap::foreignUserLink( $row->afl_wiki, $row->afl_user_text );
$user .= ' (' . WikiMap::getWikiName( $row->afl_wiki ) . ')';
}
2008-06-27 06:18:51 +00:00
$description = '';
$timestamp = $wgLang->timeanddate( $row->afl_timestamp, true );
2008-06-27 06:18:51 +00:00
$actions_taken = $row->afl_actions;
2009-05-22 06:42:10 +00:00
if ( !strlen( trim( $actions_taken ) ) ) {
2008-06-27 06:18:51 +00:00
$actions_taken = wfMsg( 'abusefilter-log-noactions' );
} else {
2009-05-22 06:42:10 +00:00
$actions = explode( ',', $actions_taken );
$displayActions = array();
foreach ( $actions as $action ) {
$displayActions[] = AbuseFilter::getActionDisplay( $action );
}
2010-03-13 17:23:08 +00:00
$actions_taken = $wgLang->commaList( $displayActions );
2008-06-27 06:18:51 +00:00
}
$globalIndex = AbuseFilter::decodeGlobalName( $row->afl_filter );
global $wgOut;
2009-05-22 06:42:10 +00:00
if ( $globalIndex ) {
// Pull global filter description
$parsed_comments =
$wgOut->parseInline( AbuseFilter::getGlobalFilterDescription( $globalIndex ) );
} else {
$parsed_comments = $wgOut->parseInline( $row->af_public_comments );
}
2009-05-22 06:42:10 +00:00
if ( $this->canSeeDetails() ) {
$examineTitle = SpecialPage::getTitleFor( 'AbuseFilter', 'examine/log/' . $row->afl_id );
$detailsLink = $sk->makeKnownLinkObj(
$this->getTitle(),
wfMsg( 'abusefilter-log-detailslink' ),
'details=' . $row->afl_id
);
$examineLink = $sk->link(
$examineTitle,
wfMsgExt( 'abusefilter-changeslist-examine', 'parseinline' ),
array()
);
2009-05-22 06:42:10 +00:00
if ( $globalIndex ) {
global $wgAbuseFilterCentralDB;
$globalURL =
WikiMap::getForeignURL( $wgAbuseFilterCentralDB,
'Special:AbuseFilter/' . $globalIndex );
$linkText = wfMsgExt( 'abusefilter-log-detailedentry-global',
'parseinline', array( $globalIndex ) );
$filterLink = $sk->makeExternalLink( $globalURL, $linkText );
} else {
$title = SpecialPage::getTitleFor( 'AbuseFilter', $row->afl_filter );
$linkText = wfMsgExt( 'abusefilter-log-detailedentry-local',
'parseinline', array( $row->afl_filter ) );
$filterLink = $sk->link( $title, $linkText );
}
$description = wfMsgExt( 'abusefilter-log-detailedentry-meta',
array( 'parseinline', 'replaceafter' ),
array(
$timestamp,
$user,
$filterLink,
$row->afl_action,
$pageLink,
$actions_taken,
$parsed_comments,
$detailsLink,
$examineLink
)
);
2008-06-27 06:18:51 +00:00
} else {
$description = wfMsgExt(
'abusefilter-log-entry',
array( 'parseinline', 'replaceafter' ),
array(
$timestamp,
$user,
$row->afl_action,
$sk->link( $title ),
$actions_taken,
$parsed_comments
)
);
2008-06-27 06:18:51 +00:00
}
return $li ? Xml::tags( 'li', null, $description ) : $description;
2008-06-27 06:18:51 +00:00
}
}
class AbuseLogPager extends ReverseChronologicalPager {
public $mForm, $mConds;
function __construct( $form, $conds = array(), $details = false ) {
$this->mForm = $form;
$this->mConds = $conds;
parent::__construct();
}
function formatRow( $row ) {
return $this->mForm->formatRow( $row );
}
function getQueryInfo() {
$conds = $this->mConds;
2008-06-27 06:18:51 +00:00
return array(
'tables' => array( 'abuse_filter_log', 'abuse_filter' ),
2008-06-27 06:18:51 +00:00
'fields' => '*',
'conds' => $conds,
'join_conds' =>
array( 'abuse_filter' =>
array(
'LEFT JOIN',
'af_id=afl_filter',
),
),
2008-06-27 06:18:51 +00:00
);
}
function getIndexField() {
return 'afl_timestamp';
}
}