mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-12 08:49:28 +00:00
f52f940ee5
This is bad style, but it works... please take a look at https://gerrit.wikimedia.org/r/30110 which is much cleaner and doesn't have the problems as well. Change-Id: I91684de0c8594917736812846ed3782653a46e99
199 lines
5.6 KiB
JavaScript
199 lines
5.6 KiB
JavaScript
// AbuseFilter editing stuff
|
|
( function( $, mw ) {
|
|
|
|
// Filter textarea
|
|
// @var {jQuery}
|
|
var $filterBox = [],
|
|
// Reference to this
|
|
// @var {this}
|
|
that = this,
|
|
// Returns the currently selected warning message
|
|
// @returns {String} current warning message
|
|
getCurrentWarningMessage = function() {
|
|
var message = $('#mw-abusefilter-warn-message-existing').val();
|
|
|
|
if ( message === 'other' ) {
|
|
message = $('#mw-abusefilter-warn-message-other').val();
|
|
}
|
|
|
|
return message;
|
|
};
|
|
|
|
// Sends the current filter text to be checked for syntax issues
|
|
this.doSyntaxCheck = function() {
|
|
var filter = $filterBox.val();
|
|
|
|
$( this ).injectSpinner( 'abusefilter-syntaxcheck' );
|
|
this.disabled = true;
|
|
$.getJSON(
|
|
mw.util.wikiScript( 'api' ), {
|
|
action: 'abusefilterchecksyntax',
|
|
filter: filter,
|
|
format: 'json'
|
|
}, that.processSyntaxResult
|
|
);
|
|
};
|
|
|
|
// Takes the data retrieved in doSyntaxCheck and processes it
|
|
// @param {Object} data Data returned from the AJAX request
|
|
this.processSyntaxResult = function( data ) {
|
|
data = data.abusefilterchecksyntax;
|
|
$.removeSpinner( 'abusefilter-syntaxcheck' );
|
|
$( '#mw-abusefilter-syntaxcheck' ).removeAttr("disabled");
|
|
|
|
var $el = $( '#mw-abusefilter-syntaxresult' )
|
|
.show()
|
|
.removeClass('mw-abusefilter-syntaxresult-ok mw-abusefilter-syntaxresult-error');
|
|
|
|
if ( data === undefined ) {
|
|
$el.text( mw.msg( 'unknown-error' ) )
|
|
.attr( 'class', 'mw-abusefilter-syntaxresult-error' )
|
|
.data( 'syntaxOk', false );
|
|
return;
|
|
}
|
|
|
|
if ( data.status === 'ok' ) {
|
|
// Successful
|
|
$el.text( mw.msg( 'abusefilter-edit-syntaxok' ) )
|
|
.attr( 'class', 'mw-abusefilter-syntaxresult-ok' )
|
|
.data( 'syntaxOk', true );
|
|
} else {
|
|
var msg = mw.message( 'abusefilter-edit-syntaxerr', data.message ).toString();
|
|
|
|
$el.text( msg )
|
|
.attr( 'class', 'mw-abusefilter-syntaxresult-error' )
|
|
.data( 'syntaxOk', false );
|
|
|
|
$filterBox
|
|
.focus()
|
|
.textSelection( 'setSelection', { start: data.character } );
|
|
}
|
|
};
|
|
|
|
// Adds text to the filter textarea
|
|
// Fired by a change event rom the #wpFilterBuilder dropdown
|
|
this.addText = function() {
|
|
var $filterBuilder = $( '#wpFilterBuilder' );
|
|
|
|
if ( $filterBuilder.prop( 'selectedIndex' ) === 0 ) {
|
|
return;
|
|
}
|
|
|
|
$filterBox.textSelection(
|
|
'encapsulateSelection', { 'pre': $filterBuilder.val() + " " }
|
|
);
|
|
$filterBuilder.prop( 'selectedIndex', 0 );
|
|
};
|
|
|
|
// Fetches a filter from the API and inserts it into the filter box
|
|
this.fetchFilter = function() {
|
|
var filterId = $( '#mw-abusefilter-load-filter' ).val();
|
|
|
|
if ( filterId === '' ) {
|
|
return;
|
|
}
|
|
|
|
$( this ).injectSpinner( 'fetch-spinner' );
|
|
$.getJSON(
|
|
mw.util.wikiScript( 'api' ), {
|
|
action: 'query',
|
|
format: 'json',
|
|
list: 'abusefilters',
|
|
abfprop: 'pattern',
|
|
abfstartid: filterId,
|
|
abfendid: filterId,
|
|
abflimit: 1
|
|
}, function ( data ) {
|
|
$.removeSpinner( 'fetch-spinner' );
|
|
if ( data.query.abusefilters[0] !== undefined ) {
|
|
$filterBox.text( data.query.abusefilters[0].pattern );
|
|
}
|
|
}
|
|
);
|
|
};
|
|
|
|
// Cycles through all action checkboxes and hides parameter divs
|
|
// that don't have checked boxes
|
|
this.hideDeselectedActions = function() {
|
|
$( 'input.mw-abusefilter-action-checkbox' ).each( function() {
|
|
// mw-abusefilter-action-checkbox-{$action}
|
|
var action = this.id.substr( 31 ),
|
|
$params = $( '#mw-abusefilter-' + action + '-parameters' );
|
|
|
|
if ( $params.length ) {
|
|
if ( this.checked ) {
|
|
$params.show();
|
|
} else {
|
|
$params.hide();
|
|
}
|
|
}
|
|
} );
|
|
};
|
|
|
|
// Fetches the warning message selected for previewing
|
|
this.previewWarnMessage = function() {
|
|
var message = getCurrentWarningMessage();
|
|
|
|
$.get( mw.config.get('wgScript'), {
|
|
title: 'MediaWiki:' + message,
|
|
action: 'render'
|
|
},
|
|
function( data ) {
|
|
$( '#mw-abusefilter-warn-preview' ).html( data );
|
|
}
|
|
);
|
|
};
|
|
|
|
// Redirects browser to the warning message for editing
|
|
this.editWarnMessage = function() {
|
|
var message = getCurrentWarningMessage();
|
|
|
|
window.location = mw.config.get( 'wgScript' ) + '?title=MediaWiki:' + mw.util.wikiUrlencode( message ) + '&action=edit';
|
|
};
|
|
|
|
// On ready initialization
|
|
$( function( $ ) {
|
|
$filterBox = $( '#' + mw.config.get( 'abuseFilterBoxName' ) );
|
|
// Hide the syntax ok message when the text changes
|
|
$filterBox.keyup( function() {
|
|
var $el = $( '#mw-abusefilter-syntaxresult' );
|
|
|
|
if ( $el.data( 'syntaxOk' ) ) {
|
|
$el.hide();
|
|
}
|
|
} );
|
|
|
|
$( '#mw-abusefilter-load' ).click( that.fetchFilter );
|
|
$( '#mw-abusefilter-warn-preview-button' ).click( that.previewWarnMessage );
|
|
$( '#mw-abusefilter-warn-edit-button' ).click( that.editWarnMessage );
|
|
$( 'input.mw-abusefilter-action-checkbox' ).click( that.hideDeselectedActions );
|
|
that.hideDeselectedActions();
|
|
|
|
$( '#mw-abusefilter-syntaxcheck' ).click( that.doSyntaxCheck );
|
|
$( '#wpFilterBuilder' ).change( that.addText );
|
|
|
|
var $exportBox = $( '#mw-abusefilter-export' );
|
|
$( '#mw-abusefilter-export-link' ).toggle( function() {
|
|
$exportBox.show();
|
|
}, function() {
|
|
$exportBox.hide();
|
|
} );
|
|
|
|
$( '#mw-abusefilter-edit-group-input' ).change( function () {
|
|
var newVal = mw.config.get( 'wgAbuseFilterDefaultWarningMessage' )[$( this ).val()];
|
|
|
|
if ( !$( '#mw-abusefilter-action-warn-checkbox' ).is( ':checked' ) ) {
|
|
var $afWarnMessageExisting = $( '#mw-abusefilter-warn-message-existing' ),
|
|
$afWarnMessageOther = $( '#mw-abusefilter-warn-message-other' );
|
|
if ( $afWarnMessageExisting.find( "option[value='" + newVal + "']" ).length ) {
|
|
$afWarnMessageExisting.val( newVal );
|
|
$afWarnMessageOther.val( '' );
|
|
} else {
|
|
$afWarnMessageExisting.val( 'other' );
|
|
$afWarnMessageOther.val( newVal );
|
|
}
|
|
}
|
|
} );
|
|
} );
|
|
} ( jQuery, mediaWiki ) );
|