mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-24 14:13:54 +00:00
d808b53fc4
/* * for /** *
206 lines
5.1 KiB
JavaScript
206 lines
5.1 KiB
JavaScript
/**
|
|
* AbuseFilter editing stuff
|
|
*/
|
|
new ( function( $, mw ) {
|
|
/**
|
|
* Filter textarea
|
|
*
|
|
* @var {jQuery}
|
|
*/
|
|
var $filterBox = $( '#' + mw.config.get( 'abuseFilterBoxName' ) );
|
|
|
|
/**
|
|
* Reference to this
|
|
*
|
|
* @var {this}
|
|
*/
|
|
var that = this;
|
|
|
|
/**
|
|
* Returns the currently selected warning message
|
|
*
|
|
* @returns {String} current warning message
|
|
*/
|
|
var 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 );
|
|
var $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( $ ) {
|
|
// 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();
|
|
} );
|
|
} );
|
|
})( jQuery, mediaWiki );
|