2008-06-27 06:18:51 +00:00
|
|
|
<?php
|
|
|
|
if ( ! defined( 'MEDIAWIKI' ) )
|
|
|
|
die();
|
|
|
|
|
|
|
|
class AbuseFilterHooks {
|
|
|
|
|
2009-01-23 19:23:19 +00:00
|
|
|
// So far, all of the error message out-params for these hooks accept HTML.
|
|
|
|
// Hooray!
|
|
|
|
|
2008-06-27 06:18:51 +00:00
|
|
|
public static function onEditFilter($editor, $text, $section, &$error, $summary) {
|
|
|
|
// Load vars
|
|
|
|
$vars = array();
|
|
|
|
|
|
|
|
global $wgUser;
|
|
|
|
$vars = array_merge( $vars, AbuseFilter::generateUserVars( $wgUser ) );
|
|
|
|
$vars = array_merge( $vars, AbuseFilter::generateTitleVars( $editor->mTitle , 'ARTICLE' ));
|
|
|
|
$vars['ACTION'] = 'edit';
|
|
|
|
$vars['SUMMARY'] = $summary;
|
2008-07-17 13:40:45 +00:00
|
|
|
|
|
|
|
$old_text = $editor->getBaseRevision() ? $editor->getBaseRevision()->getText() : '';
|
|
|
|
$new_text = $editor->textbox1;
|
2008-10-24 08:58:32 +00:00
|
|
|
$oldLinks = self::getOldLinks( $editor->mTitle );
|
2008-06-27 06:18:51 +00:00
|
|
|
|
2009-02-07 09:34:11 +00:00
|
|
|
$vars = array_merge( $vars,
|
|
|
|
AbuseFilter::getEditVars( $editor->mTitle, $old_text, $new_text, $oldLinks ) );
|
2009-01-28 01:12:34 +00:00
|
|
|
|
2009-01-28 23:54:41 +00:00
|
|
|
$filter_result = AbuseFilter::filterAction( $vars, $editor->mTitle, $oldLinks );
|
2008-10-24 08:58:32 +00:00
|
|
|
|
2008-06-27 09:26:54 +00:00
|
|
|
if( $filter_result !== true ){
|
2009-01-31 01:59:13 +00:00
|
|
|
global $wgOut;
|
|
|
|
$wgOut->addHTML( $filter_result );
|
|
|
|
$editor->showEditForm();
|
|
|
|
return false;
|
2008-06-27 09:26:54 +00:00
|
|
|
}
|
2008-06-27 06:18:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-10-24 08:58:32 +00:00
|
|
|
/**
|
|
|
|
* Load external links from the externallinks table
|
|
|
|
* Stolen from ConfirmEdit
|
|
|
|
*/
|
|
|
|
static function getOldLinks( $title ) {
|
|
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
|
|
$id = $title->getArticleId(); // should be zero queries
|
|
|
|
$res = $dbr->select( 'externallinks', array( 'el_to' ),
|
|
|
|
array( 'el_from' => $id ), __METHOD__ );
|
|
|
|
$links = array();
|
|
|
|
while ( $row = $dbr->fetchObject( $res ) ) {
|
|
|
|
$links[] = $row->el_to;
|
|
|
|
}
|
|
|
|
return $links;
|
|
|
|
}
|
|
|
|
|
2008-06-27 06:18:51 +00:00
|
|
|
public static function onGetAutoPromoteGroups( $user, &$promote ) {
|
|
|
|
global $wgMemc;
|
|
|
|
|
|
|
|
$key = AbuseFilter::autoPromoteBlockKey( $user );
|
|
|
|
|
|
|
|
if ($wgMemc->get( $key ) ) {
|
|
|
|
$promote = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-08-07 13:53:18 +00:00
|
|
|
public static function onAbortMove( $oldTitle, $newTitle, $user, &$error, $reason ) {
|
2008-06-27 06:18:51 +00:00
|
|
|
$vars = array();
|
|
|
|
|
|
|
|
global $wgUser;
|
|
|
|
$vars = array_merge( $vars, AbuseFilter::generateUserVars( $wgUser ),
|
|
|
|
AbuseFilter::generateTitleVars( $oldTitle, 'MOVED_FROM' ),
|
|
|
|
AbuseFilter::generateTitleVars( $newTitle, 'MOVED_TO' ) );
|
|
|
|
$vars['SUMMARY'] = $reason;
|
|
|
|
$vars['ACTION'] = 'move';
|
|
|
|
|
|
|
|
$filter_result = AbuseFilter::filterAction( $vars, $oldTitle );
|
|
|
|
|
2008-06-27 08:34:34 +00:00
|
|
|
$error = $filter_result;
|
2008-06-27 06:18:51 +00:00
|
|
|
|
2008-06-27 09:18:45 +00:00
|
|
|
return $filter_result == '' || $filter_result === true;
|
2008-06-27 06:18:51 +00:00
|
|
|
}
|
|
|
|
|
2008-08-07 13:53:18 +00:00
|
|
|
public static function onArticleDelete( &$article, &$user, &$reason, &$error ) {
|
2008-06-27 06:18:51 +00:00
|
|
|
$vars = array();
|
|
|
|
|
|
|
|
global $wgUser;
|
|
|
|
$vars = array_merge( $vars, AbuseFilter::generateUserVars( $wgUser ),
|
|
|
|
AbuseFilter::generateTitleVars( $article->mTitle, 'ARTICLE' ) );
|
|
|
|
$vars['SUMMARY'] = $reason;
|
|
|
|
$vars['ACTION'] = 'delete';
|
|
|
|
|
2008-06-27 08:16:11 +00:00
|
|
|
$filter_result = AbuseFilter::filterAction( $vars, $article->mTitle );
|
2008-06-27 06:18:51 +00:00
|
|
|
|
2008-06-27 08:34:34 +00:00
|
|
|
$error = $filter_result;
|
2008-06-27 06:18:51 +00:00
|
|
|
|
2008-06-27 09:18:45 +00:00
|
|
|
return $filter_result == '' || $filter_result === true;
|
2008-06-27 06:18:51 +00:00
|
|
|
}
|
|
|
|
|
2008-08-07 13:53:18 +00:00
|
|
|
public static function onAbortNewAccount( $user, &$message ) {
|
2008-06-27 09:49:26 +00:00
|
|
|
wfLoadExtensionMessages( 'AbuseFilter' );
|
2008-08-31 06:39:04 +00:00
|
|
|
if ($user->getName() == wfMsgForContent( 'abusefilter-blocker' )) {
|
2008-06-27 09:49:26 +00:00
|
|
|
$message = wfMsg( 'abusefilter-accountreserved' );
|
|
|
|
return false;
|
|
|
|
}
|
2008-06-27 06:18:51 +00:00
|
|
|
$vars = array();
|
|
|
|
|
|
|
|
$vars['ACTION'] = 'createaccount';
|
2008-06-30 10:40:35 +00:00
|
|
|
$vars['ACCOUNTNAME'] = $vars['USER_NAME'] = $user->getName();
|
2008-06-27 06:18:51 +00:00
|
|
|
|
2009-02-07 09:34:11 +00:00
|
|
|
$filter_result = AbuseFilter::filterAction(
|
|
|
|
$vars, SpecialPage::getTitleFor( 'Userlogin' ) );
|
2008-06-27 06:18:51 +00:00
|
|
|
|
2008-06-27 08:34:34 +00:00
|
|
|
$message = $filter_result;
|
2008-06-27 06:18:51 +00:00
|
|
|
|
2008-06-27 09:18:45 +00:00
|
|
|
return $filter_result == '' || $filter_result === true;
|
2008-06-27 06:18:51 +00:00
|
|
|
}
|
2008-09-05 14:27:18 +00:00
|
|
|
|
2008-09-18 13:33:39 +00:00
|
|
|
public static function onAbortDeleteQueueNominate( $user, $article, $queue, $reason, &$error ) {
|
|
|
|
$vars = array();
|
|
|
|
|
2009-02-07 09:34:11 +00:00
|
|
|
$vars = array_merge( $vars,
|
|
|
|
AbuseFilter::generateUserVars( $user ),
|
|
|
|
AbuseFilter::generateTitleVars( $article->mTitle, 'ARTICLE' ) );
|
2008-09-18 13:33:39 +00:00
|
|
|
$vars['SUMMARY'] = $reason;
|
|
|
|
$vars['ACTION'] = 'delnom';
|
|
|
|
$vars['QUEUE'] = $queue;
|
|
|
|
|
|
|
|
$filter_result = AbuseFilter::filterAction( $vars, $article->mTitle );
|
|
|
|
$error = $filter_result;
|
|
|
|
|
|
|
|
return $filter_result == '' || $filter_result === true;
|
|
|
|
}
|
2009-01-23 19:23:19 +00:00
|
|
|
|
2009-01-28 19:08:18 +00:00
|
|
|
public static function onRecentChangeSave( $recentChange ) {
|
2009-02-07 09:34:11 +00:00
|
|
|
$title = Title::makeTitle(
|
|
|
|
$recentChange->mAttribs['rc_namespace'],
|
|
|
|
$recentChange->mAttribs['rc_title'] );
|
|
|
|
$action = $recentChange->mAttribs['rc_log_type'] ?
|
|
|
|
$recentChange->mAttribs['rc_log_type'] : 'edit';
|
2009-01-28 19:08:18 +00:00
|
|
|
$actionID = implode( '-', array(
|
|
|
|
$title->getPrefixedText(), $recentChange->mAttribs['rc_user_text'], $action
|
|
|
|
) );
|
2009-01-23 19:23:19 +00:00
|
|
|
|
2009-02-07 09:34:11 +00:00
|
|
|
if ( !empty( AbuseFilter::$tagsToSet[$actionID] )
|
|
|
|
&& count( $tags = AbuseFilter::$tagsToSet[$actionID]) )
|
|
|
|
{
|
|
|
|
ChangeTags::addTags(
|
|
|
|
$tags,
|
|
|
|
$recentChange->mAttribs['rc_id'],
|
|
|
|
$recentChange->mAttribs['rc_this_oldid'],
|
|
|
|
$recentChange->mAttribs['rc_logid'] );
|
2009-01-28 19:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function onListDefinedTags( &$emptyTags ) {
|
|
|
|
## This is a pretty awful hack.
|
|
|
|
$dbr = wfGetDB( DB_SLAVE );
|
|
|
|
|
2009-02-07 09:34:11 +00:00
|
|
|
$res = $dbr->select( 'abuse_filter_action', 'afa_parameters',
|
|
|
|
array( 'afa_consequence' => 'tag' ), __METHOD__ );
|
2009-01-28 19:08:18 +00:00
|
|
|
|
|
|
|
while( $row = $res->fetchObject() ) {
|
2009-02-07 09:34:11 +00:00
|
|
|
$emptyTags = array_filter(
|
|
|
|
array_merge( explode( "\n", $row->afa_parameters ), $emptyTags )
|
|
|
|
);
|
2009-01-28 19:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-29 00:37:53 +00:00
|
|
|
|
|
|
|
public static function onLoadExtensionSchemaUpdates() {
|
|
|
|
global $wgExtNewTables, $wgExtNewFields;
|
2009-01-30 18:51:37 +00:00
|
|
|
|
|
|
|
$dir = dirname( __FILE__ );
|
2009-01-29 00:37:53 +00:00
|
|
|
|
|
|
|
// DB updates
|
2009-02-07 09:34:11 +00:00
|
|
|
$wgExtNewTables = array_merge( $wgExtNewTables,
|
|
|
|
array(
|
|
|
|
array( 'abuse_filter', "$dir/abusefilter.tables.sql" ),
|
|
|
|
array( 'abuse_filter_history', "$dir/db_patches/patch-abuse_filter_history.sql" ),
|
|
|
|
array( 'abuse_filter_history', 'afh_changed_fields', "$dir/db_patches/patch-afh_changed_fields.sql" ),
|
|
|
|
array( 'abuse_filter', 'af_deleted', "$dir/db_patches/patch-af_deleted.sql" ),
|
|
|
|
array( 'abuse_filter', 'af_actions', "$dir/db_patches/patch-af_actions.sql" ),
|
|
|
|
) );
|
2009-01-29 00:37:53 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2008-06-27 06:18:51 +00:00
|
|
|
}
|