FC - Hitman

Borra los temas (políticos, fútbol, apuestas, etc..) que quieras de FC

目前为 2015-12-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         FC - Hitman
// @namespace    https://greasyfork.org/es/scripts/14670-fc-hitman
// @version      0.6
// @description  Borra los temas (políticos, fútbol, apuestas, etc..) que quieras de FC
// @author       You
// @match        *.forocoches.com/*
// @grant        none
// @require 	 http://code.jquery.com/jquery-latest.js
// ==/UserScript==
/* jshint -W097 */
'use strict';

var hitman = function ()
{
	var words = {
		politics: [ "riverita", "peperro","político", "Saenz de Santamaria", "Sáenz de Santamaría", "votantes", "pdr snchz", "partidos politicos", "partidos políticos", "partido político", "partido politico", "Pedro Sánchez", "Pedro Sanchez", "rajoy","soraya", "falange", "pableras", "upyd", "coletas","psoe","debate", "carmena", "voto", "pablemos", "ciudadanos", "ciutadans", "discurso", "albert", "rivera", "iglesias", "elecciones", "votar", "votación", "votacion", "pedro sanchez", "pedro sánchez", "podemos", "podemitas", "pp"],
		football: ["real madrid", "futbol", "fútbol", "porra", "apuesta", "peña culer", "culers", "culeros", "culerdos", "FC Barcelona", "barça", "barsa", "atleti"]
	},
	clog = [];
	
	var init = function ()
	{
		removeThreads();
		setupPanel();
	}
	
	var setupPanel = function ()
	{
		$(".cajasprin:nth-of-type(1) tr").eq(1).append('<td><div id="hitman-config">Hitman</div></d>');
		
		var html = parseTemplate(function()
		{/*
			<div id="hitman-panel">
				Esconder temas de:
				<ul>
					<li>
						<label>
							<input type="checkbox" value="politics"> Política
						</label>
					</li>
					<li>
						<label>
							<input type="checkbox" value="football"> Fútbol
						</label>
					</li>
					<li>
						<label>
							Filtro propio:<br>
							<textarea name="hitman-custom" placeholder="gore,movistar"></textarea>
						</label>
					</li>
				</ul>
				<button>Guardar cambios</button>
			</div>
			<style>
				#hitman-config {
					cursor: pointer;
				}
				#hitman-panel {
					display: none;
					position: fixed;
				    background: white;
				    padding: 5px;
				    border: 1px solid;
				    margin-left: 74%;
				    margin-top: 6%;
				}
				#hitman-panel  ul {
					list-style-type: none;
			    	padding: 0px;
				}
			</style>
		*/});
		$("body").prepend(html);
		
		$("#hitman-config").on("click", function () {
			$('#hitman-panel').toggle();
		});

		$("#hitman-panel input").on("change", function () {
			updateCensor($(this).val(), $(this).is(":checked"));
		});
		$("#hitman-panel textarea").on("change", function () {
			updateCensor("custom", $(this).val());
		});
		
		$("#hitman-panel button").on("click", function () {
			location.reload();
		});
		loadConfig();
	}
	var loadConfig = function ()
	{
		var config = getConfig(),
			k;
		
		for (k in config) {
			if (config[k]) {
				if (k == "custom") {
					$('#hitman-panel textarea[name="hitman-custom"]').val(config[k]);
				} else {
					$("#hitman-panel input[value=" + k + "]").prop("checked", true);
				}
			}
		}
	}
	var parseTemplate = function(func) {
		return func.toString().replace(/^[^\/]+\/\*!?/, '').replace(/\*\/[^\/]+$/, '');
	}
	
	var updateCensor = function (type, status)
	{
		var config = getConfig();
		
		config[type] = status;
		
		setConfig(config);
	}
	
	var getConfig = function ()
	{
		var config = localStorage.hitman;
		
		if (config === undefined) {
			// default config
			return {
				politics: true,
			};
		}
		
		return JSON.parse(config);
	}
	
	var setConfig = function (config) {
		localStorage.hitman = JSON.stringify(config);
	}
	
	var removeThreads = function ()
	{
		var censorList = [],
			config = getConfig(),
			k;
		
		
		// setup the word censorship list
		for (k in config) {
			if (config[k]) {
				if (k == "custom" && config[k].length > 0) {
					censorList = censorList.concat(config[k].split(","));
				} else {
					censorList = censorList.concat(words[k]);
				}
			}
		}

		// find and delete threads containing those words
		$('#threadbits_forum_2 tr').each(function ()
		{
			var title = $(this).find("td[title] a").eq(1).text(),
				pollTitle = $(this).find("td[title] a").eq(2).text(),
				intro = $(this).find("td[title]").attr("title"),
				regex,
                k;
			
			for (k in censorList)
			{
				regex = new RegExp(censorList[k], "i");
				
				if ((pollTitle.length > 4 && pollTitle.search(regex) !== -1) || title.search(regex) !== -1 || intro.search(regex) !== -1 ) {
					$(this).remove();
					break;
				}
			}
		});
	}
	
	return {
		init: init,
		clog: clog
	}
}();

$(document).ready(function() {
	hitman.init();
});