2009-01-29 22:44:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class AbuseFilterViewExamine extends AbuseFilterView {
|
2011-08-26 20:12:34 +00:00
|
|
|
public static $examineType = null;
|
|
|
|
public static $examineId = null;
|
|
|
|
|
2013-10-15 13:22:05 +00:00
|
|
|
public $mCounter, $mSearchUser, $mSearchPeriodStart, $mSearchPeriodEnd,
|
|
|
|
$mTestFilter;
|
|
|
|
|
2009-10-07 13:57:06 +00:00
|
|
|
function show() {
|
2011-11-16 05:34:24 +00:00
|
|
|
$out = $this->getOutput();
|
|
|
|
$out->setPageTitle( $this->msg( 'abusefilter-examine' ) );
|
|
|
|
$out->addWikiMsg( 'abusefilter-examine-intro' );
|
2009-01-29 22:44:31 +00:00
|
|
|
|
|
|
|
$this->loadParameters();
|
|
|
|
|
|
|
|
// Check if we've got a subpage
|
2009-10-07 13:57:06 +00:00
|
|
|
if ( count( $this->mParams ) > 1 && is_numeric( $this->mParams[1] ) ) {
|
2009-02-04 19:51:03 +00:00
|
|
|
$this->showExaminerForRC( $this->mParams[1] );
|
2009-10-07 13:57:06 +00:00
|
|
|
} elseif ( count( $this->mParams ) > 2
|
|
|
|
&& $this->mParams[1] == 'log'
|
2017-07-08 18:49:13 +00:00
|
|
|
&& is_numeric( $this->mParams[2] )
|
|
|
|
) {
|
2009-02-04 19:51:03 +00:00
|
|
|
$this->showExaminerForLogEntry( $this->mParams[2] );
|
2009-01-29 22:44:31 +00:00
|
|
|
} else {
|
|
|
|
$this->showSearch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showSearch() {
|
2018-03-09 11:27:18 +00:00
|
|
|
$RCMaxAge = $this->getConfig()->get( 'RCMaxAge' );
|
|
|
|
$min = wfTimestamp( TS_ISO_8601, time() - $RCMaxAge );
|
|
|
|
$max = wfTimestampNow();
|
2017-06-15 14:23:16 +00:00
|
|
|
$formDescriptor = [
|
|
|
|
'SearchUser' => [
|
2016-04-10 13:12:43 +00:00
|
|
|
'label-message' => 'abusefilter-test-user',
|
|
|
|
'type' => 'user',
|
|
|
|
'default' => $this->mSearchUser,
|
2017-06-15 14:23:16 +00:00
|
|
|
],
|
|
|
|
'SearchPeriodStart' => [
|
2016-04-10 13:12:43 +00:00
|
|
|
'label-message' => 'abusefilter-test-period-start',
|
2018-03-09 11:27:18 +00:00
|
|
|
'type' => 'datetime',
|
2016-04-10 13:12:43 +00:00
|
|
|
'default' => $this->mSearchPeriodStart,
|
2018-03-09 11:27:18 +00:00
|
|
|
'min' => $min,
|
|
|
|
'max' => $max,
|
2017-06-15 14:23:16 +00:00
|
|
|
],
|
|
|
|
'SearchPeriodEnd' => [
|
2016-04-10 13:12:43 +00:00
|
|
|
'label-message' => 'abusefilter-test-period-end',
|
2018-03-09 11:27:18 +00:00
|
|
|
'type' => 'datetime',
|
2016-04-10 13:12:43 +00:00
|
|
|
'default' => $this->mSearchPeriodEnd,
|
2018-03-09 11:27:18 +00:00
|
|
|
'min' => $min,
|
|
|
|
'max' => $max,
|
2017-06-15 14:23:16 +00:00
|
|
|
],
|
|
|
|
];
|
2018-03-09 10:45:50 +00:00
|
|
|
$htmlForm = HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() );
|
2016-04-10 13:12:43 +00:00
|
|
|
$htmlForm->setWrapperLegendMsg( 'abusefilter-examine-legend' )
|
|
|
|
->addHiddenField( 'submit', 1 )
|
|
|
|
->setSubmitTextMsg( 'abusefilter-examine-submit' )
|
|
|
|
->setMethod( 'get' )
|
|
|
|
->prepareForm()
|
|
|
|
->displayForm( false );
|
2009-01-29 22:44:31 +00:00
|
|
|
|
2009-02-07 09:34:11 +00:00
|
|
|
if ( $this->mSubmit ) {
|
2009-01-29 22:44:31 +00:00
|
|
|
$this->showResults();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showResults() {
|
2018-02-04 18:50:43 +00:00
|
|
|
$changesList = new AbuseFilterChangesList( $this->getSkin(), $this->mTestFilter );
|
2009-01-29 22:44:31 +00:00
|
|
|
$output = $changesList->beginRecentChangesList();
|
2009-03-12 11:38:21 +00:00
|
|
|
$this->mCounter = 1;
|
2009-10-07 13:57:06 +00:00
|
|
|
|
2009-03-12 11:38:21 +00:00
|
|
|
$pager = new AbuseFilterExaminePager( $this, $changesList );
|
2009-10-07 13:57:06 +00:00
|
|
|
|
2009-03-22 03:12:53 +00:00
|
|
|
$output .= $pager->getNavigationBar() .
|
|
|
|
$pager->getBody() .
|
|
|
|
$pager->getNavigationBar();
|
2009-01-29 22:44:31 +00:00
|
|
|
|
|
|
|
$output .= $changesList->endRecentChangesList();
|
|
|
|
|
2011-11-16 05:34:24 +00:00
|
|
|
$this->getOutput()->addHTML( $output );
|
2009-01-29 22:44:31 +00:00
|
|
|
}
|
|
|
|
|
2009-02-04 19:51:03 +00:00
|
|
|
function showExaminerForRC( $rcid ) {
|
2009-01-29 22:44:31 +00:00
|
|
|
// Get data
|
2017-08-30 02:51:39 +00:00
|
|
|
$dbr = wfGetDB( DB_REPLICA );
|
2017-10-12 19:44:48 +00:00
|
|
|
$rcQuery = RecentChange::getQueryInfo();
|
2017-08-30 17:06:44 +00:00
|
|
|
$row = $dbr->selectRow(
|
2017-10-12 19:44:48 +00:00
|
|
|
$rcQuery['tables'],
|
|
|
|
$rcQuery['fields'],
|
2017-08-30 17:06:44 +00:00
|
|
|
[ 'rc_id' => $rcid ],
|
2017-10-12 19:44:48 +00:00
|
|
|
__METHOD__,
|
|
|
|
[],
|
|
|
|
$rcQuery['joins']
|
2017-08-30 17:06:44 +00:00
|
|
|
);
|
2014-07-29 23:46:29 +00:00
|
|
|
$out = $this->getOutput();
|
2009-10-07 13:57:06 +00:00
|
|
|
if ( !$row ) {
|
2014-07-29 23:46:29 +00:00
|
|
|
$out->addWikiMsg( 'abusefilter-examine-notfound' );
|
2009-01-29 22:44:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-26 20:12:34 +00:00
|
|
|
self::$examineType = 'rc';
|
|
|
|
self::$examineId = $rcid;
|
|
|
|
|
2009-01-29 22:44:31 +00:00
|
|
|
$vars = AbuseFilter::getVarsFromRCRow( $row );
|
2014-07-29 23:46:29 +00:00
|
|
|
$out->addJsConfigVars( 'wgAbuseFilterVariables', $vars->dumpAllVars( true ) );
|
2009-02-04 19:51:03 +00:00
|
|
|
$this->showExaminer( $vars );
|
|
|
|
}
|
|
|
|
|
|
|
|
function showExaminerForLogEntry( $logid ) {
|
|
|
|
// Get data
|
2017-08-30 02:51:39 +00:00
|
|
|
$dbr = wfGetDB( DB_REPLICA );
|
2018-02-05 10:48:58 +00:00
|
|
|
$row = $dbr->selectRow(
|
|
|
|
'abuse_filter_log',
|
|
|
|
[ 'afl_filter', 'afl_deleted', 'afl_var_dump' ],
|
|
|
|
[ 'afl_id' => $logid ],
|
|
|
|
__METHOD__
|
|
|
|
);
|
2014-07-29 23:46:29 +00:00
|
|
|
$out = $this->getOutput();
|
2009-02-04 19:51:03 +00:00
|
|
|
|
2009-10-07 13:57:06 +00:00
|
|
|
if ( !$row ) {
|
2014-07-29 23:46:29 +00:00
|
|
|
$out->addWikiMsg( 'abusefilter-examine-notfound' );
|
2009-02-04 19:51:03 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-26 20:12:34 +00:00
|
|
|
self::$examineType = 'log';
|
|
|
|
self::$examineId = $logid;
|
|
|
|
|
2012-01-03 17:29:10 +00:00
|
|
|
if ( !SpecialAbuseLog::canSeeDetails( $row->afl_filter ) ) {
|
2014-07-29 23:46:29 +00:00
|
|
|
$out->addWikiMsg( 'abusefilter-log-cannot-see-details' );
|
2011-12-27 23:35:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $row->afl_deleted && !SpecialAbuseLog::canSeeHidden() ) {
|
2014-07-29 23:46:29 +00:00
|
|
|
$out->addWikiMsg( 'abusefilter-log-details-hidden' );
|
2011-12-27 23:35:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-27 03:06:19 +00:00
|
|
|
$vars = AbuseFilter::loadVarDump( $row->afl_var_dump );
|
2014-07-29 23:46:29 +00:00
|
|
|
$out->addJsConfigVars( 'wgAbuseFilterVariables', $vars->dumpAllVars( true ) );
|
2009-02-04 19:51:03 +00:00
|
|
|
$this->showExaminer( $vars );
|
|
|
|
}
|
|
|
|
|
|
|
|
function showExaminer( $vars ) {
|
2011-11-16 05:34:24 +00:00
|
|
|
$output = $this->getOutput();
|
2018-03-15 17:22:37 +00:00
|
|
|
$output->enableOOUI();
|
2009-02-04 19:51:03 +00:00
|
|
|
|
2009-10-07 13:57:06 +00:00
|
|
|
if ( !$vars ) {
|
2011-11-16 05:34:24 +00:00
|
|
|
$output->addWikiMsg( 'abusefilter-examine-incompatible' );
|
2009-01-29 22:44:31 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-10-07 13:57:06 +00:00
|
|
|
|
2010-08-19 21:12:09 +00:00
|
|
|
if ( $vars instanceof AbuseFilterVariableHolder ) {
|
2009-03-25 02:53:23 +00:00
|
|
|
$vars = $vars->exportAllVars();
|
2010-08-19 21:12:09 +00:00
|
|
|
}
|
2009-01-29 22:44:31 +00:00
|
|
|
|
2011-11-22 16:08:18 +00:00
|
|
|
$html = '';
|
2009-01-29 22:44:31 +00:00
|
|
|
|
2011-11-16 05:34:24 +00:00
|
|
|
$output->addModules( 'ext.abuseFilter.examine' );
|
2009-01-29 22:44:31 +00:00
|
|
|
|
|
|
|
// Add test bit
|
2011-11-16 05:34:24 +00:00
|
|
|
if ( $this->getUser()->isAllowed( 'abusefilter-modify' ) ) {
|
2012-09-02 11:07:02 +00:00
|
|
|
$tester = Xml::tags( 'h2', null, $this->msg( 'abusefilter-examine-test' )->parse() );
|
2009-03-31 15:13:26 +00:00
|
|
|
$tester .= AbuseFilter::buildEditBox( $this->mTestFilter, 'wpTestFilter', false );
|
2018-03-15 17:22:37 +00:00
|
|
|
$tester .= AbuseFilter::buildFilterLoader();
|
2017-06-15 14:23:16 +00:00
|
|
|
$html .= Xml::tags( 'div', [ 'id' => 'mw-abusefilter-examine-editor' ], $tester );
|
2011-11-22 16:08:18 +00:00
|
|
|
$html .= Xml::tags( 'p',
|
2009-10-07 13:57:06 +00:00
|
|
|
null,
|
2018-03-15 17:22:37 +00:00
|
|
|
new OOUI\ButtonInputWidget(
|
2017-06-15 14:23:16 +00:00
|
|
|
[
|
2018-03-15 17:22:37 +00:00
|
|
|
'label' => $this->msg( 'abusefilter-examine-test-button' )->text(),
|
2009-10-07 13:57:06 +00:00
|
|
|
'id' => 'mw-abusefilter-examine-test'
|
2017-06-15 14:23:16 +00:00
|
|
|
]
|
2009-03-31 15:13:26 +00:00
|
|
|
) .
|
2009-10-07 13:57:06 +00:00
|
|
|
Xml::element( 'div',
|
2017-06-15 14:23:16 +00:00
|
|
|
[
|
2009-10-07 13:57:06 +00:00
|
|
|
'id' => 'mw-abusefilter-syntaxresult',
|
|
|
|
'style' => 'display: none;'
|
2017-06-15 14:23:16 +00:00
|
|
|
], ' '
|
2009-10-07 13:57:06 +00:00
|
|
|
)
|
2009-02-07 09:34:11 +00:00
|
|
|
);
|
2009-03-31 15:13:26 +00:00
|
|
|
}
|
2009-01-29 22:44:31 +00:00
|
|
|
|
|
|
|
// Variable dump
|
2012-09-02 11:07:02 +00:00
|
|
|
$html .= Xml::tags(
|
|
|
|
'h2',
|
|
|
|
null,
|
2017-08-20 12:48:51 +00:00
|
|
|
$this->msg( 'abusefilter-examine-vars' )->parse()
|
2012-09-02 11:07:02 +00:00
|
|
|
);
|
2016-09-17 07:03:42 +00:00
|
|
|
$html .= AbuseFilter::buildVarDumpTable( $vars, $this->getContext() );
|
2009-01-29 22:44:31 +00:00
|
|
|
|
2011-11-22 16:08:18 +00:00
|
|
|
$output->addHTML( $html );
|
2009-01-29 22:44:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function loadParameters() {
|
2011-11-16 05:34:24 +00:00
|
|
|
$request = $this->getRequest();
|
|
|
|
$this->mSearchPeriodStart = $request->getText( 'wpSearchPeriodStart' );
|
|
|
|
$this->mSearchPeriodEnd = $request->getText( 'wpSearchPeriodEnd' );
|
|
|
|
$this->mSubmit = $request->getCheck( 'submit' );
|
|
|
|
$this->mTestFilter = $request->getText( 'testfilter' );
|
2009-10-07 13:57:06 +00:00
|
|
|
|
2009-02-25 02:33:09 +00:00
|
|
|
// Normalise username
|
2017-11-17 15:24:42 +00:00
|
|
|
$searchUsername = $request->getText( 'wpSearchUser' );
|
|
|
|
$userTitle = Title::newFromText( $searchUsername, NS_USER );
|
|
|
|
$this->mSearchUser = $userTitle ? $userTitle->getText() : '';
|
2009-01-29 22:44:31 +00:00
|
|
|
}
|
2009-02-07 09:34:11 +00:00
|
|
|
}
|