v0.4.2: check spammers' profiles as well
This commit is contained in:
parent
e588bbf7f9
commit
a79900c9dc
1 changed files with 49 additions and 26 deletions
|
@ -3,7 +3,7 @@
|
|||
// @namespace https://github.com/Glorfindel83/
|
||||
// @description Adds a 'Destroy spammer' link for moderator on user profiles with only deleted posts.
|
||||
// @author Glorfindel
|
||||
// @version 0.4.1
|
||||
// @version 0.4.2
|
||||
// @match *://*.stackexchange.com/users/*
|
||||
// @match *://*.stackoverflow.com/users/*
|
||||
// @match *://*.superuser.com/users/*
|
||||
|
@ -15,31 +15,27 @@
|
|||
// ==/UserScript==
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
// Determine user ID
|
||||
var userIDRegex = /\/users\/(\d+)\//g;
|
||||
var userID = userIDRegex.exec(document.location) [1];
|
||||
var userName = $(".name.mod-tabs").attr("title");
|
||||
var userNameIsSuspicious = typeof userName !== 'undefined' && userName.toLowerCase().contains("insur");
|
||||
|
||||
// Find 'Mod' dialog link
|
||||
var moderatorLinkElement = $('a#user-moderator-link-' + userID);
|
||||
if (moderatorLinkElement.length == 0) // Current user is not a moderator - no action possible
|
||||
if (moderatorLinkElement.length == 0) // Current user is not a moderator, or wrong tab - no action possible
|
||||
return;
|
||||
var destroySpammerLinkAdded = false;
|
||||
|
||||
// Check for (deleted) questions and answers
|
||||
var questionsPanel = $('#user-panel-questions');
|
||||
var undeletedQuestions = questionsPanel.find('td.question-hyperlink').not('.deleted-answer').length; // yes, deleted-answer. Don't ask why.
|
||||
var deletedQuestions = questionsPanel.find('td.question-hyperlink.deleted-answer').length;
|
||||
if (undeletedQuestions > 0) // User has content - use the dialog instead
|
||||
return;
|
||||
var answersPanel = $('#user-panel-answers');
|
||||
var undeletedAnswers = answersPanel.find('td.answer-hyperlink').not('.deleted-answer').length;
|
||||
var deletedAnswers = answersPanel.find('td.answer-hyperlink.deleted-answer').length;
|
||||
if (undeletedAnswers > 0) // User has content - use the dialog instead
|
||||
return;
|
||||
if (deletedQuestions + deletedAnswers == 0 && !userName.toLowerCase().contains("insur")) // User has no deleted content - use the dialog instead
|
||||
return;
|
||||
if (deletedQuestions + deletedAnswers > 4) // User has too much deleted content - use the dialog instead
|
||||
// This function will create the 'Destroy spammer' link;
|
||||
// this can happen either synchronously or asynchronously (after fetching additional data).
|
||||
var createDestroyLink = function (userID) {
|
||||
// The link can be added only once.
|
||||
if (destroySpammerLinkAdded)
|
||||
return;
|
||||
destroySpammerLinkAdded = true;
|
||||
|
||||
// Create Destroy link
|
||||
var destroyLink = document.createElement('a');
|
||||
destroyLink.appendChild(document.createTextNode('Destroy spammer'));
|
||||
destroyLink.onclick = function () {
|
||||
|
@ -62,4 +58,31 @@
|
|||
|
||||
// Add to document
|
||||
moderatorLinkElement.after(destroyLink);
|
||||
};
|
||||
|
||||
// Check for keywords in spammers' profiles
|
||||
$.get(document.location.href.split('?')[0] + "?tab=profile", function (data) {
|
||||
if (data.contains("1-844-909-0831")) {
|
||||
createDestroyLink(userID);
|
||||
}
|
||||
});
|
||||
|
||||
// Check for (deleted) questions and answers
|
||||
var questionsPanel = $('#user-panel-questions');
|
||||
var undeletedQuestions = questionsPanel.find('td.question-hyperlink').not('.deleted-answer').length; // yes, deleted-answer. Don't ask why.
|
||||
var deletedQuestions = questionsPanel.find('td.question-hyperlink.deleted-answer').length;
|
||||
if (undeletedQuestions > 0) // User has content - use the dialog instead
|
||||
return;
|
||||
var answersPanel = $('#user-panel-answers');
|
||||
var undeletedAnswers = answersPanel.find('td.answer-hyperlink').not('.deleted-answer').length;
|
||||
var deletedAnswers = answersPanel.find('td.answer-hyperlink.deleted-answer').length;
|
||||
if (undeletedAnswers > 0) // User has content - use the dialog instead
|
||||
return;
|
||||
if (deletedQuestions + deletedAnswers == 0 && !userNameIsSuspicious) // User has no deleted content - use the dialog instead
|
||||
return;
|
||||
if (deletedQuestions + deletedAnswers > 4) // User has too much deleted content - use the dialog instead
|
||||
return;
|
||||
|
||||
// Create Destroy link immediately
|
||||
createDestroyLink(userID);
|
||||
}) ();
|
||||
|
|
Loading…
Reference in a new issue