aboutsummaryrefslogtreecommitdiff
path: root/plugins/degesch/censor.lua
blob: a768aed7a6a6d11e7667fbcb1d9afc245d929f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
--
-- censor.lua: black out certain users' messages
--
-- Copyright (c) 2016, Přemysl Eric Janouch <p@janouch.name>
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
-- SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
-- OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
-- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
--

local to_pattern = function (mask)
	if not mask:match ("!") then mask = mask .. "!*" end
	if not mask:match ("@") then mask = mask .. "@*" end

	-- That is, * acts like a wildcard, otherwise everything is escaped
	return "^" .. mask:gsub ("[%^%$%(%)%%%.%[%]%+%-%?]", "%%%0")
		:gsub ("%*", ".*") .. "$"
end

local patterns = {}
local read_masks = function (v)
	patterns = {}
	local add = function (who, where)
		local channels = patterns[who] or {}
		table.insert (channels, where)
		patterns[who] = channels
	end
	for item in v:lower ():gmatch ("[^,]+") do
		local who, where = item:match ("^([^/]+)/*(.*)")
		if who then add (to_pattern (who), where == "" or where) end
	end
end

degesch.setup_config {
	masks = {
		type = "string_array",
		default = "\"\"",
		comment = "user masks (optionally \"/#channel\") to censor",
		on_change = read_masks
	},
}

local censor = function (line)
	-- Taking a shortcut to avoid lengthy message reassembly
	local start, text = line:match ("^(.- PRIVMSG .- :)(.*)$")
	local ctcp, rest = text:match ("^(\x01%g+ )(.*)")
	text = ctcp and ctcp .. "\x0301,01" .. rest or "\x0301,01" .. text
	return start .. text
end

degesch.hook_irc (function (hook, server, line)
	local msg = degesch.parse (line)
	if msg.command ~= "PRIVMSG" then return line end

	local channel = msg.params[1]:lower ()
	for who, where in pairs (patterns) do
		if msg.prefix:lower ():match (who) then
			for _, x in pairs (where) do
				if x == true or x == channel then
					return censor (line)
				end
			end
		end
	end
	return line
end)