Usuário:!Silent/instablockVandal.js: diferenças entre revisões
Aspeto
Conteúdo apagado Conteúdo adicionado
m Correção de problema 64748163 |
m Implementando sugestão 64881280 |
||
Linha 4: | Linha 4: | ||
* @author [[w:pt:User:!Silent]] |
* @author [[w:pt:User:!Silent]] |
||
* @date 13/feb/2017 |
* @date 13/feb/2017 |
||
* @update |
* @update 10/dec/2022 |
||
* @source https://github.com/Nevallem/ptwikipedia-instablockVandal |
* @source https://github.com/Nevallem/ptwikipedia-instablockVandal |
||
*/ |
*/ |
||
Linha 21: | Linha 21: | ||
'ibv-buttonName-2': 'nome impróprio', |
'ibv-buttonName-2': 'nome impróprio', |
||
'ibv-buttonName-3': 'spam', |
'ibv-buttonName-3': 'spam', |
||
'ibv-buttonName-4': 'contorno', |
|||
'ibv-blocking': 'Bloqueando o vândalo...', |
'ibv-blocking': 'Bloqueando o vândalo...', |
||
'ibv-reason-0': 'tentativa de [[WP:VAN|vandalizar]] frustrada por [[WP:FE|filtro]]', |
'ibv-reason-0': 'tentativa de [[WP:VAN|vandalizar]] frustrada por [[WP:FE|filtro]]', |
||
Linha 26: | Linha 27: | ||
'ibv-reason-2': 'nome [[A:CCC|impróprio de usuário]] - para contribuir, siga nossas [[Predefinição:Nome impróprio|recomendações]]', |
'ibv-reason-2': 'nome [[A:CCC|impróprio de usuário]] - para contribuir, siga nossas [[Predefinição:Nome impróprio|recomendações]]', |
||
'ibv-reason-3': 'propaganda ou [[WP:SPAM|spam]]', |
'ibv-reason-3': 'propaganda ou [[WP:SPAM|spam]]', |
||
'ibv-reason-4': 'contorno de [[WP:Contorno de bloqueio|bloqueio]]', |
|||
'ibv-reason-prepend': 'Conta de [[WP:CPU|propósito único]] nocivo: ', |
'ibv-reason-prepend': 'Conta de [[WP:CPU|propósito único]] nocivo: ', |
||
'ibv-reason-page': ' na página [[$1]]', |
'ibv-reason-page': ' na página [[$1]]', |
||
Linha 88: | Linha 90: | ||
+ `<a class="ibv-instablock" style="cursor: pointer;" type="1"> ${ ibv.message( 'ibv-buttonName-1' ) }</a> | ` |
+ `<a class="ibv-instablock" style="cursor: pointer;" type="1"> ${ ibv.message( 'ibv-buttonName-1' ) }</a> | ` |
||
+ `<a class="ibv-instablock" style="cursor: pointer;" type="2"> ${ ibv.message( 'ibv-buttonName-2' ) }</a> | ` |
+ `<a class="ibv-instablock" style="cursor: pointer;" type="2"> ${ ibv.message( 'ibv-buttonName-2' ) }</a> | ` |
||
+ `<a class="ibv-instablock" style="cursor: pointer;" type="3"> ${ ibv.message( 'ibv-buttonName-3' ) }</a> |
+ `<a class="ibv-instablock" style="cursor: pointer;" type="3"> ${ ibv.message( 'ibv-buttonName-3' ) }</a> | ` |
||
+ `<a class="ibv-instablock" style="cursor: pointer;" type="4"> ${ ibv.message( 'ibv-buttonName-4' ) }</a>]` |
|||
); |
); |
||
Revisão das 00h43min de 11 de dezembro de 2022
/**
* Add buttons to instablock vandals
*
* @author [[w:pt:User:!Silent]]
* @date 13/feb/2017
* @update 10/dec/2022
* @source https://github.com/Nevallem/ptwikipedia-instablockVandal
*/
/* jshint laxbreak: true, expr: true, esversion: 6 */
/* global $, mw */
( function() {
'use strict';
let ibv;
// Messages set
mw.messages.set( {
'ibv-buttonName-0': 'tentativa',
'ibv-buttonName-1': 'vandalismo',
'ibv-buttonName-2': 'nome impróprio',
'ibv-buttonName-3': 'spam',
'ibv-buttonName-4': 'contorno',
'ibv-blocking': 'Bloqueando o vândalo...',
'ibv-reason-0': 'tentativa de [[WP:VAN|vandalizar]] frustrada por [[WP:FE|filtro]]',
'ibv-reason-1': 'vandalismo [[Wikipédia:Vandalismo|contumaz]]',
'ibv-reason-2': 'nome [[A:CCC|impróprio de usuário]] - para contribuir, siga nossas [[Predefinição:Nome impróprio|recomendações]]',
'ibv-reason-3': 'propaganda ou [[WP:SPAM|spam]]',
'ibv-reason-4': 'contorno de [[WP:Contorno de bloqueio|bloqueio]]',
'ibv-reason-prepend': 'Conta de [[WP:CPU|propósito único]] nocivo: ',
'ibv-reason-page': ' na página [[$1]]',
'ibv-notifying': 'Notificando o vândalo...',
'ibv-sectionTitle': 'Notificação de bloqueio',
'ibv-duration-IP': 'um dia',
'ibv-duration-user': 'infinito',
'ibv-summary': 'Notificação de bloqueio usando um [[User:!Silent/instablockVandal.js|script]]',
'ibv-confirmBlock': 'Você está prestes a bloquear o usuário "$1" por tempo indeterminado. Confirma o bloqueio?',
'ibv-alreadyBlocked': 'O usuário já está bloqueado.',
'ibv-success': 'O usuário "$1" foi bloqueado e notificado com sucesso.'
} );
/**
* @class InstablockVandal
*/
class InstablockVandal {
constructor() {
this.already_blocked = false;
this.placement_type = 0;
this.username_target = '';
this.is_IPAddress = '';
this.is_abuselog_details = !!$( '.mw-abuselog-details' ).length;
this.is_page_diff = !!mw.util.getParamValue( 'diff' );
this.is_already_blocked = !!$( '.mw-contributions-blocked-notice' ).length;
}
/**
* Messages
* @param {string} name Name of the message
* @param {string|number} [$N] Dynamic parameters to the message (i.e. the values for $1, $2, etc)
* @see [[mw:ResourceLoader/Default_modules#mediaWiki.message]]
* @return {string}
*/
message( /*name[, $1[, $2[, ... ]]]*/ ) {
return mw.message.apply( this, arguments ).plain();
}
/**
* Attach the new buttons
*/
attach_buttons() {
let $placement;
ibv.placement_type = ibv.is_page_diff ? 0 : 1;
ibv.username_target = $( '#ooui-php-1' ).val()
|| $( '.mw-userlink bdi' ).eq( ibv.placement_type ? 0 : 1 ).text()
|| window.decodeURI( mw.util.getUrl().split( '/' )[ 3 ]
|| mw.util.getParamValue( 'target' ) );
ibv.is_IPAddress = mw.util.isIPAddress( ibv.username_target );
if ( ibv.is_abuselog_details )
$placement = $( '.mw-usertoollinks a:last' );
else if ( !ibv.placement_type )
$placement = $( '#mw-diff-ntitle2 .mw-usertoollinks a:last' );
else
$placement = $( '#contentSub a' ).eq( ibv.is_IPAddress ? 1 : 2 );
$placement.after(
` [<a class="ibv-instablock" style="cursor: pointer;" type="0">${ ibv.message( 'ibv-buttonName-0' ) }</a> | `
+ `<a class="ibv-instablock" style="cursor: pointer;" type="1"> ${ ibv.message( 'ibv-buttonName-1' ) }</a> | `
+ `<a class="ibv-instablock" style="cursor: pointer;" type="2"> ${ ibv.message( 'ibv-buttonName-2' ) }</a> | `
+ `<a class="ibv-instablock" style="cursor: pointer;" type="3"> ${ ibv.message( 'ibv-buttonName-3' ) }</a> | `
+ `<a class="ibv-instablock" style="cursor: pointer;" type="4"> ${ ibv.message( 'ibv-buttonName-4' ) }</a>]`
);
$( '.ibv-instablock' ).click( function() {
if ( ibv.is_already_blocked ) {
window.alert( ibv.message( 'ibv-alreadyBlocked' ) );
return;
}
if ( ibv.is_IPAddress )
ibv.instablock.call( this );
else if ( window.confirm( ibv.message( 'ibv-confirmBlock', ibv.username_target ) ) )
ibv.instablock.call( this );
} );
}
/**
* Executes the instablock
*/
instablock() {
let blockType, vandalismPage;
if ( ibv.already_blocked )
return;
ibv.already_blocked = true;
blockType = $( this ).attr( 'type' );
mw.notify( ibv.message( 'ibv-blocking' ) );
if ( ibv.is_page_diff )
vandalismPage = mw.config.get( 'wgPageName' ).replace( /_/g, ' ' );
else if ( ibv.is_abuselog_details )
vandalismPage = $( '#mw-content-text' ).find( 'a' ).eq( ibv.is_IPAddress ? 4 : 9 ).html();
else
vandalismPage = null;
$.post( mw.util.wikiScript( 'api' ), {
action: 'block',
user: ibv.username_target,
token: mw.user.tokens.get( 'csrfToken' ),
expiry: ( ibv.is_IPAddress ? '1 day' : 'infinity' ),
reason: ibv.message( `ibv-reason-${ blockType }` ),
autoblock: 1,
allowusertalk: 1,
noemail: $.inArray( 'rollbacker', mw.config.get( 'wgUserGroups' ) ) === -1 ? 1 : undefined,
nocreate: 1
} ).done( function() {
mw.notify( ibv.message( 'ibv-notifying' ) );
( new mw.Api() ).editPage( {
title: 'User talk:' + ibv.username_target,
section: 'new',
watchlist: 'preferences',
sectiontitle: ibv.message( 'ibv-sectionTitle' ),
text: `\{\{subst:Bloqueado-disc|1=${ ibv.message( `ibv-duration-${ ibv.is_IPAddress ? 'IP' : 'user' }` ) }|2=${
( !ibv.is_IPAddress ? ibv.message( 'ibv-reason-prepend' ) : '' )
+ ibv.message( `ibv-reason-${ blockType }` ) + (
vandalismPage
? ibv.message( 'ibv-reason-page', vandalismPage )
: ''
)
}.\}\} \~\~\~\~`,
summary: ibv.message( 'ibv-summary' ),
done: function() {
mw.notify( ibv.message( 'ibv-success', ibv.username_target ) );
}
} );
} );
}
}
/**
* @object ibv
*/
ibv = new InstablockVandal();
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Block' && !$( '.error' ).length ) {
$( 'input[name="wpDisableEmail"]' ).prop( 'checked', true );
$( 'input[name="wpDisableUTEdit"]' ).prop( 'checked', true );
}
if ( !!$( '.mw-abuselog-details' ).length
|| ibv.is_page_diff
|| mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Contributions'
)
$( ibv.attach_buttons );
}() );