mediawiki-extensions-AbuseF.../Views/AbuseFilterViewExamine.php

270 lines
7.3 KiB
PHP
Raw Normal View History

<?php
if ( !defined( 'MEDIAWIKI' ) ) {
die();
}
class AbuseFilterViewExamine extends AbuseFilterView {
function show() {
2010-07-24 21:12:27 +00:00
global $wgOut;
$wgOut->setPageTitle( wfMsg( 'abusefilter-examine' ) );
$wgOut->addWikiMsg( 'abusefilter-examine-intro' );
$this->loadParameters();
// Check if we've got a subpage
if ( count( $this->mParams ) > 1 && is_numeric( $this->mParams[1] ) ) {
$this->showExaminerForRC( $this->mParams[1] );
} elseif ( count( $this->mParams ) > 2
&& $this->mParams[1] == 'log'
&& is_numeric( $this->mParams[2] ) )
{
$this->showExaminerForLogEntry( $this->mParams[2] );
} else {
$this->showSearch();
}
}
function showSearch() {
2010-07-24 21:12:27 +00:00
global $wgOut;
// Add selector
$selector = '';
$selectFields = array(); # Same fields as in Test
2009-03-21 18:47:26 +00:00
$selectFields['abusefilter-test-user'] = Xml::input( 'wpSearchUser', 45, $this->mSearchUser );
$selectFields['abusefilter-test-period-start'] =
2009-03-21 18:47:26 +00:00
Xml::input( 'wpSearchPeriodStart', 45, $this->mSearchPeriodStart );
$selectFields['abusefilter-test-period-end'] =
2009-03-21 18:47:26 +00:00
Xml::input( 'wpSearchPeriodEnd', 45, $this->mSearchPeriodEnd );
$selector .= Xml::buildForm( $selectFields, 'abusefilter-examine-submit' );
$selector .= Xml::hidden( 'submit', 1 );
$selector .= Xml::hidden( 'title', $this->getTitle( 'examine' )->getPrefixedText() );
$selector = Xml::tags( 'form',
array(
'action' => $this->getTitle( 'examine' )->getLocalURL(),
'method' => 'get'
),
$selector
);
$selector = Xml::fieldset(
wfMsg( 'abusefilter-examine-legend' ),
$selector
);
$wgOut->addHTML( $selector );
if ( $this->mSubmit ) {
$this->showResults();
}
}
function showResults() {
global $wgUser, $wgOut;
$changesList = new AbuseFilterChangesList( $wgUser->getSkin() );
$output = $changesList->beginRecentChangesList();
2009-03-12 11:38:21 +00:00
$this->mCounter = 1;
2009-03-12 11:38:21 +00:00
$pager = new AbuseFilterExaminePager( $this, $changesList );
$output .= $pager->getNavigationBar() .
$pager->getBody() .
$pager->getNavigationBar();
$output .= $changesList->endRecentChangesList();
$wgOut->addHTML( $output );
}
function showExaminerForRC( $rcid ) {
global $wgOut;
// Get data
$dbr = wfGetDB( DB_SLAVE );
$row = $dbr->selectRow( 'recentchanges', '*', array( 'rc_id' => $rcid ), __METHOD__ );
if ( !$row ) {
$wgOut->addWikiMsg( 'abusefilter-examine-notfound' );
return;
}
$vars = AbuseFilter::getVarsFromRCRow( $row );
$this->showExaminer( $vars );
}
function showExaminerForLogEntry( $logid ) {
global $wgOut;
// Get data
$dbr = wfGetDB( DB_SLAVE );
$row = $dbr->selectRow( 'abuse_filter_log', '*', array( 'afl_id' => $logid ), __METHOD__ );
if ( !$row ) {
$wgOut->addWikiMsg( 'abusefilter-examine-notfound' );
return;
}
$vars = AbuseFilter::loadVarDump( $row->afl_var_dump );
$this->showExaminer( $vars );
}
function showExaminer( $vars ) {
global $wgOut, $wgUser;
if ( !$vars ) {
$wgOut->addWikiMsg( 'abusefilter-examine-incompatible' );
return;
}
if ( $vars instanceof AbuseFilterVariableHolder ) {
$vars = $vars->exportAllVars();
}
$output = '';
// Send armoured as JSON -- I totally give up on trying to send it as a proper object.
$wgOut->addInlineScript( 'var wgExamineVars = ' .
Xml::encodeJsVar( json_encode( $vars ) ) . ';' );
$wgOut->addInlineScript( file_get_contents( dirname( __FILE__ ) . '/examine.js' ) );
// Add messages
$msg = array();
$msg['match'] = wfMsg( 'abusefilter-examine-match' );
$msg['nomatch'] = wfMsg( 'abusefilter-examine-nomatch' );
$msg['syntaxerror'] = wfMsg( 'abusefilter-examine-syntaxerror' );
$wgOut->addInlineScript(
'var wgMessageMatch = ' . Xml::encodeJsVar( $msg['match'] ) . ";\n" .
'var wgMessageNomatch = ' . Xml::encodeJsVar( $msg['nomatch'] ) . ";\n" .
'var wgMessageError = ' . Xml::encodeJsVar( $msg['syntaxerror'] ) . ";\n"
);
// Add test bit
if ( $wgUser->isAllowed( 'abusefilter-modify' ) ) {
$tester = Xml::tags( 'h2', null, wfMsgExt( 'abusefilter-examine-test', 'parseinline' ) );
$tester .= AbuseFilter::buildEditBox( $this->mTestFilter, 'wpTestFilter', false );
$tester .=
"\n" .
Xml::inputLabel(
wfMsg( 'abusefilter-test-load-filter' ),
'wpInsertFilter',
'mw-abusefilter-load-filter',
10,
''
) .
Remove most named character references from output Recommit of r66254 to trunk. This was just find extensions phase3 -iname '*.php' \! -iname '*.i18n.php' \! -iname 'Messages*.php' \! -iname '*_Messages.php' -exec sed -i 's/&nbsp;/\&#160;/g;s/&mdash;/―/g;s/&bull;/•/g;s/&aacute;/á/g;s/&acute;/´/g;s/&agrave;/à/g;s/&alpha;/α/g;s/&auml;/ä/g;s/&ccedil;/ç/g;s/&copy;/©/g;s/&darr;/↓/g;s/&deg;/°/g;s/&eacute;/é/g;s/&ecirc;/ê/g;s/&euml;/ë/g;s/&egrave;/è/g;s/&euro;/€/g;s/&harr;//g;s/&hellip;/…/g;s/&iacute;/í/g;s/&igrave;/ì/g;s/&larr;/←/g;s/&ldquo;/“/g;s/&middot;/·/g;s/&minus;/−/g;s/&ndash;/–/g;s/&oacute;/ó/g;s/&ocirc;/ô/g;s/&oelig;/œ/g;s/&ograve;/ò/g;s/&otilde;/õ/g;s/&ouml;/ö/g;s/&pound;/£/g;s/&prime;/′/g;s/&Prime;/″/g;s/&raquo;/»/g;s/&rarr;/→/g;s/&rdquo;/”/g;s/&Sigma;/Σ/g;s/&times;/×/g;s/&uacute;/ú/g;s/&uarr;/↑/g;s/&uuml;/ü/g;s/&yen;/¥/g' {} + followed by reading over every single line of the resulting diff and fixing a whole bunch of false positives. The reason for this change is given in <http://lists.wikimedia.org/pipermail/wikitech-l/2010-April/047617.html>. I cleared it with Tim and Brion on IRC before committing. It might cause a few problems, but I tried to be careful; please report any issues. I skipped all messages files. I plan to make a follow-up commit that alters wfMsgExt() with 'escapenoentities' to sanitize all the entities. That way, the only messages that will be problems will be ones that output raw HTML, and we want to get rid of those anyway. This should get rid of all named entities everywhere except messages. I skipped a few things like &nbsp that I noticed in manual inspection, because they weren't well-formed XML anyway. Also, to everyone who uses non-breaking spaces when they could use a normal space, or nothing at all, or CSS padding: I still hate you. Die.
2010-05-30 17:33:59 +00:00
'&#160;' .
Xml::element(
'input',
array(
'type' => 'button',
'value' => wfMsg( 'abusefilter-test-load' ),
'id' => 'mw-abusefilter-load'
)
);
$output .= Xml::tags( 'div', array( 'id' => 'mw-abusefilter-examine-editor' ), $tester );
$output .= Xml::tags( 'p',
null,
Xml::element( 'input',
array(
'type' => 'button',
'value' => wfMsg( 'abusefilter-examine-test-button' ),
'id' => 'mw-abusefilter-examine-test'
)
) .
Xml::element( 'div',
array(
'id' => 'mw-abusefilter-syntaxresult',
'style' => 'display: none;'
Remove most named character references from output Recommit of r66254 to trunk. This was just find extensions phase3 -iname '*.php' \! -iname '*.i18n.php' \! -iname 'Messages*.php' \! -iname '*_Messages.php' -exec sed -i 's/&nbsp;/\&#160;/g;s/&mdash;/―/g;s/&bull;/•/g;s/&aacute;/á/g;s/&acute;/´/g;s/&agrave;/à/g;s/&alpha;/α/g;s/&auml;/ä/g;s/&ccedil;/ç/g;s/&copy;/©/g;s/&darr;/↓/g;s/&deg;/°/g;s/&eacute;/é/g;s/&ecirc;/ê/g;s/&euml;/ë/g;s/&egrave;/è/g;s/&euro;/€/g;s/&harr;//g;s/&hellip;/…/g;s/&iacute;/í/g;s/&igrave;/ì/g;s/&larr;/←/g;s/&ldquo;/“/g;s/&middot;/·/g;s/&minus;/−/g;s/&ndash;/–/g;s/&oacute;/ó/g;s/&ocirc;/ô/g;s/&oelig;/œ/g;s/&ograve;/ò/g;s/&otilde;/õ/g;s/&ouml;/ö/g;s/&pound;/£/g;s/&prime;/′/g;s/&Prime;/″/g;s/&raquo;/»/g;s/&rarr;/→/g;s/&rdquo;/”/g;s/&Sigma;/Σ/g;s/&times;/×/g;s/&uacute;/ú/g;s/&uarr;/↑/g;s/&uuml;/ü/g;s/&yen;/¥/g' {} + followed by reading over every single line of the resulting diff and fixing a whole bunch of false positives. The reason for this change is given in <http://lists.wikimedia.org/pipermail/wikitech-l/2010-April/047617.html>. I cleared it with Tim and Brion on IRC before committing. It might cause a few problems, but I tried to be careful; please report any issues. I skipped all messages files. I plan to make a follow-up commit that alters wfMsgExt() with 'escapenoentities' to sanitize all the entities. That way, the only messages that will be problems will be ones that output raw HTML, and we want to get rid of those anyway. This should get rid of all named entities everywhere except messages. I skipped a few things like &nbsp that I noticed in manual inspection, because they weren't well-formed XML anyway. Also, to everyone who uses non-breaking spaces when they could use a normal space, or nothing at all, or CSS padding: I still hate you. Die.
2010-05-30 17:33:59 +00:00
), '&#160;'
)
);
}
// Variable dump
$output .= Xml::tags( 'h2', null, wfMsgExt( 'abusefilter-examine-vars', 'parseinline' ) );
$output .= AbuseFilter::buildVarDumpTable( $vars );
$wgOut->addHTML( $output );
}
function loadParameters() {
global $wgRequest;
$searchUsername = $wgRequest->getText( 'wpSearchUser' );
$this->mSearchPeriodStart = $wgRequest->getText( 'wpSearchPeriodStart' );
$this->mSearchPeriodEnd = $wgRequest->getText( 'wpSearchPeriodEnd' );
$this->mSubmit = $wgRequest->getCheck( 'submit' );
$this->mTestFilter = $wgRequest->getText( 'testfilter' );
// Normalise username
$userTitle = Title::newFromText( $searchUsername );
if ( $userTitle && $userTitle->getNamespace() == NS_USER ) {
$this->mSearchUser = $userTitle->getText(); // Allow User:Blah syntax.
} elseif ( $userTitle ) {
// Not sure of the value of prefixedText over text, but no need to munge unnecessarily.
$this->mSearchUser = $userTitle->getPrefixedText();
} else {
$this->mSearchUser = '';
}
}
}
2009-03-12 11:38:21 +00:00
class AbuseFilterExaminePager extends ReverseChronologicalPager {
function __construct( $page, $changesList ) {
parent::__construct();
$this->mChangesList = $changesList;
$this->mPage = $page;
}
2009-03-12 11:38:21 +00:00
function getQueryInfo() {
$dbr = wfGetDB( DB_SLAVE );
$conds = array( 'rc_user_text' => $this->mPage->mSearchUser );
$startTS = strtotime( $this->mPage->mSearchPeriodStart );
if ( $startTS ) {
2009-03-12 11:38:21 +00:00
$conds[] = 'rc_timestamp>=' . $dbr->addQuotes( $dbr->timestamp( $startTS ) );
}
$endTS = strtotime( $this->mPage->mSearchPeriodEnd );
if ( $endTS ) {
2009-03-12 11:38:21 +00:00
$conds[] = 'rc_timestamp<=' . $dbr->addQuotes( $dbr->timestamp( $endTS ) );
}
2009-03-12 11:38:21 +00:00
// If one of these is true, we're abusefilter compatible.
$compatConds = array(
'rc_this_oldid != 0',
'rc_log_action' => array( 'move', 'create' ),
2009-03-12 11:38:21 +00:00
);
2009-03-12 11:38:21 +00:00
$conds[] = $dbr->makeList( $compatConds, LIST_OR );
2009-03-12 11:38:21 +00:00
$info = array(
'tables' => 'recentchanges',
'fields' => '*',
'conds' => array_filter( $conds ),
2009-03-12 11:38:21 +00:00
'options' => array( 'ORDER BY' => 'rc_timestamp DESC' ),
);
2009-03-12 11:38:21 +00:00
return $info;
}
2009-03-12 11:38:21 +00:00
function formatRow( $row ) {
# Incompatible stuff.
2009-03-12 11:38:21 +00:00
$rc = RecentChange::newFromRow( $row );
$rc->counter = $this->mPage->mCounter++;
return $this->mChangesList->recentChangesLine( $rc, false );
}
2009-03-12 11:38:21 +00:00
function getIndexField() {
return 'rc_id';
}
2009-03-12 11:38:21 +00:00
function getTitle() {
return $this->mPage->getTitle( 'examine' );
}
function getEmptyBody() {
return wfMsgExt( 'abusefilter-examine-noresults', 'parse' );
}
}