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

251 lines
7.1 KiB
PHP
Raw Normal View History

2009-01-28 00:36:49 +00:00
<?php
if ( !defined( 'MEDIAWIKI' ) ) {
2009-01-28 00:36:49 +00:00
die();
}
2009-01-28 00:36:49 +00:00
class AbuseFilterViewRevert extends AbuseFilterView {
function show() {
2009-01-28 00:36:49 +00:00
$filter = $this->mPage->mFilter;
$user = $this->getUser();
$out = $this->getOutput();
2009-01-28 00:36:49 +00:00
if ( !$user->isAllowed( 'abusefilter-revert' ) ) {
throw new PermissionsError( 'abusefilter-revert' );
2009-01-28 00:36:49 +00:00
}
$this->loadParameters();
if ( $this->attemptRevert() ) {
2009-01-28 00:36:49 +00:00
return;
}
2009-01-28 00:36:49 +00:00
$out->addWikiMsg( 'abusefilter-revert-intro', $filter );
$out->setPageTitle( wfMsg( 'abusefilter-revert-title', $filter ) );
2009-01-28 00:36:49 +00:00
// First, the search form.
$searchFields = array();
$searchFields['abusefilter-revert-filter'] =
Xml::element( 'strong', null, $filter );
$searchFields['abusefilter-revert-periodstart'] =
Xml::input( 'wpPeriodStart', 45, $this->origPeriodStart );
$searchFields['abusefilter-revert-periodend'] =
Xml::input( 'wpPeriodEnd', 45, $this->origPeriodEnd );
2009-01-28 00:36:49 +00:00
$searchForm = Xml::buildForm( $searchFields, 'abusefilter-revert-search' );
$searchForm .= "\n" . Html::hidden( 'submit', 1 );
$searchForm =
Xml::tags(
'form',
array(
'action' => $this->getTitle( "revert/$filter" )->getLocalURL(),
'method' => 'post'
),
$searchForm
);
$searchForm =
Xml::fieldset( wfMsg( 'abusefilter-revert-search-legend' ), $searchForm );
2009-01-28 00:36:49 +00:00
$out->addHTML( $searchForm );
2009-01-28 00:36:49 +00:00
if ( $this->mSubmit ) {
2009-01-28 00:36:49 +00:00
// Add a summary of everything that will be reversed.
$out->addWikiMsg( 'abusefilter-revert-preview-intro' );
2009-01-28 00:36:49 +00:00
// Look up all of them.
$results = $this->doLookup();
2011-11-22 16:08:18 +00:00
$lang = $this->getLanguage();
2009-01-28 00:36:49 +00:00
$list = array();
foreach ( $results as $result ) {
$displayActions = array_map(
array( 'AbuseFilter', 'getActionDisplay' ),
$result['actions'] );
$msg = wfMsgExt(
'abusefilter-revert-preview-item',
array( 'parseinline', 'replaceafter' ),
array(
$lang->timeanddate( $result['timestamp'], true ),
Linker::userLink( $result['userid'], $result['user'] ),
$result['action'],
Linker::link( $result['title'] ),
$lang->commaList( $displayActions ),
Linker::link(
SpecialPage::getTitleFor( 'AbuseLog' ),
wfMsgNoTrans( 'abusefilter-log-detailslink' ),
array(),
array( 'details' => $result['id'] )
)
)
);
2009-01-28 00:36:49 +00:00
$list[] = Xml::tags( 'li', null, $msg );
}
$out->addHTML( Xml::tags( 'ul', null, implode( "\n", $list ) ) );
2009-01-28 00:36:49 +00:00
// Add a button down the bottom.
$confirmForm =
Html::hidden( 'editToken', $user->getEditToken( "abusefilter-revert-$filter" ) ) .
Html::hidden( 'title', $this->getTitle( "revert/$filter" )->getPrefixedText() ) .
Html::hidden( 'wpPeriodStart', $this->origPeriodStart ) .
Html::hidden( 'wpPeriodEnd', $this->origPeriodEnd ) .
Xml::inputLabel(
wfMsg( 'abusefilter-revert-reasonfield' ),
'wpReason', 'wpReason', 45
) .
"\n" .
Xml::submitButton( wfMsg( 'abusefilter-revert-confirm' ) );
$confirmForm = Xml::tags(
'form',
array(
'action' => $this->getTitle( "revert/$filter" )->getLocalURL(),
'method' => 'post'
),
$confirmForm
);
$out->addHTML( $confirmForm );
2009-01-28 00:36:49 +00:00
}
}
function doLookup() {
$periodStart = $this->mPeriodStart;
$periodEnd = $this->mPeriodEnd;
$filter = $this->mPage->mFilter;
$conds = array( 'afl_filter' => $filter );
$dbr = wfGetDB( DB_SLAVE );
if ( $periodStart ) {
$conds[] = 'afl_timestamp>' . $dbr->addQuotes( $dbr->timestamp( $periodStart ) );
}
if ( $periodEnd ) {
$conds[] = 'afl_timestamp<' . $dbr->addQuotes( $dbr->timestamp( $periodEnd ) );
}
2009-01-28 00:36:49 +00:00
// Database query.
$res = $dbr->select( 'abuse_filter_log', '*', $conds, __METHOD__ );
$results = array();
foreach( $res as $row ) {
if ( !$row->afl_actions ) {
2009-01-28 00:36:49 +00:00
continue;
}
2009-01-28 00:36:49 +00:00
$actions = explode( ',', $row->afl_actions );
2009-01-28 00:36:49 +00:00
$reversibleActions = array( 'block', 'blockautopromote', 'degroup' );
$currentReversibleActions = array_intersect( $actions, $reversibleActions );
if ( count( $currentReversibleActions ) ) {
$results[] = array(
'id' => $row->afl_id,
'actions' => $currentReversibleActions,
'user' => $row->afl_user_text,
'userid' => $row->afl_user,
'vars' => AbuseFilter::loadVarDump( $row->afl_var_dump ),
'title' => Title::makeTitle( $row->afl_namespace, $row->afl_title ),
'action' => $row->afl_action,
'timestamp' => $row->afl_timestamp
);
2009-01-28 00:36:49 +00:00
}
}
return $results;
}
function loadParameters() {
$request = $this->getRequest();
$this->origPeriodStart = $request->getText( 'wpPeriodStart' );
$this->mPeriodStart = strtotime( $this->origPeriodStart );
$this->origPeriodEnd = $request->getText( 'wpPeriodEnd' );
$this->mPeriodEnd = strtotime( $this->origPeriodEnd );
$this->mSubmit = $request->getVal( 'submit' );
$this->mReason = $request->getVal( 'wpReason' );
2009-01-28 00:36:49 +00:00
}
function attemptRevert() {
$filter = $this->mPage->mFilter;
$token = $this->getRequest()->getVal( 'editToken' );
if ( !$this->getUser()->matchEditToken( $token, "abusefilter-revert-$filter" ) ) {
2009-01-28 00:36:49 +00:00
return false;
}
2009-01-28 00:36:49 +00:00
$results = $this->doLookup();
foreach ( $results as $result ) {
2009-01-28 00:36:49 +00:00
$actions = $result['actions'];
foreach ( $actions as $action ) {
2009-01-28 00:36:49 +00:00
$this->revertAction( $action, $result );
}
}
$this->getOutput()->addWikiMsg( 'abusefilter-revert-success', $filter );
2009-01-28 00:36:49 +00:00
return true;
}
function revertAction( $action, $result ) {
switch( $action ) {
case 'block':
$block = Block::newFromTarget( User::whoIs( $result['userid'] ) );
if ( !$block || $block->getBy() != AbuseFilter::getFilterUser()->getId() ) {
2009-01-28 00:36:49 +00:00
return false; // Not blocked by abuse filter.
}
2009-01-28 00:36:49 +00:00
$block->delete();
$log = new LogPage( 'block' );
$log->addEntry(
'unblock',
Title::makeTitle( NS_USER, $result['user'] ),
wfMsgForContent(
'abusefilter-revert-reason', $this->mPage->mFilter, $this->mReason
)
);
2009-01-28 00:36:49 +00:00
break;
case 'blockautopromote':
global $wgMemc;
$wgMemc->delete( AbuseFilter::autopromoteBlockKey(
User::newFromId( $result['userid'] ) ) );
2009-01-28 00:36:49 +00:00
break;
case 'degroup':
// Pull the user's groups from the vars.
$oldGroups = $result['vars']['USER_GROUPS'];
$oldGroups = explode( ',', $oldGroups );
$oldGroups = array_diff(
$oldGroups,
array_intersect( $oldGroups, User::getImplicitGroups() )
);
2009-01-28 00:36:49 +00:00
$rows = array();
foreach ( $oldGroups as $group ) {
$rows[] = array(
'ug_user' => $result['userid'],
'ug_group' => $group
);
2009-01-28 00:36:49 +00:00
}
// Cheat a little bit. User::addGroup repeatedly is too slow.
$user = User::newFromId( $result['userid'] );
$currentGroups = $user->getGroups();
$newGroups = array_merge( $oldGroups, $currentGroups );
// Don't do anything if there are no groups to add.
if ( !count( array_diff( $newGroups, $currentGroups ) ) ) {
2009-01-28 00:36:49 +00:00
return;
}
2009-01-28 00:36:49 +00:00
$dbw = wfGetDB( DB_MASTER );
$dbw->insert( 'user_groups', $rows, __METHOD__, array( 'IGNORE' ) );
2009-01-28 00:36:49 +00:00
$user->invalidateCache();
$log = new LogPage( 'rights' );
$log->addEntry( 'rights', $user->getUserPage(),
wfMsgForContent(
'abusefilter-revert-reason',
$this->mPage->mFilter,
$this->mReason
),
array( implode( ',', $currentGroups ), implode( ',', $newGroups ) )
);
2009-01-28 00:36:49 +00:00
}
}
}