-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtbot.lua
260 lines (229 loc) · 7.58 KB
/
tbot.lua
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
-- Copyright 2012 Tor Hveem <tor@bash.no>
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
SCRIPT_NAME = "tbot"
SCRIPT_AUTHOR = "Tor Hveem <tor@bash.no>"
SCRIPT_VERSION = "1"
SCRIPT_LICENSE = "GPL3"
SCRIPT_DESC = "A bot to manage torrent filters"
local w = weechat
tbot_config = {
enable = true,
hdtrue = '',
hdfalse = '',
sdtrue = '',
sdfalse = '',
}
tbot_config_file = nil
-- printf function
function printf(buffer, fmt, ...)
w.print(buffer, string.format(fmt, unpack(arg)))
end
function string:split(sSeparator, nMax, bRegexp)
-- Function lifted from http://lua-users.org/wiki/SplitJoin
assert(sSeparator ~= '')
assert(nMax == nil or nMax >= 1)
local aRecord = {}
if self:len() > 0 then
local bPlain = not bRegexp
nMax = nMax or -1
local nField=1 nStart=1
local nFirst,nLast = self:find(sSeparator, nStart, bPlain)
while nFirst and nMax ~= 0 do
aRecord[nField] = self:sub(nStart, nFirst-1)
nField = nField+1
nStart = nLast+1
nFirst,nLast = self:find(sSeparator, nStart, bPlain)
nMax = nMax-1
end
aRecord[nField] = self:sub(nStart)
end
return aRecord
end
function tbot_list(data, buffer, time, tags, displayed, highlight, prefix, message)
-- Bot command list, return the hd and sd list
local function prettify_patterns(option)
local patterns = w.config_string(option)
-- Prettier
patterns = patterns:split(',')
table.sort(patterns, function (a, b)
return string.lower(a) < string.lower(b)
end)
patterns = table.concat(patterns, ', ')
return patterns
end
w.command(buffer, "HD: " .. prettify_patterns(tbot_config.hdtrue))
w.command(buffer, "SD: " .. prettify_patterns(tbot_config.sdtrue))
return w.WEECHAT_RC_OK
end
function tbot_count(data, buffer, time, tags, displayed, highlight, prefix, message)
-- Bot command to count
local hdpatterns = w.config_string(tbot_config.hdtrue):split(',')
local sdpatterns = w.config_string(tbot_config.sdtrue):split(',')
w.command(buffer, "HD: count: " .. #hdpatterns)
w.command(buffer, "SD: count: " .. #sdpatterns)
return w.WEECHAT_RC_OK
end
function tbot_add(data, buffer, time, tags, displayed, highlight, prefix, message)
-- Strip away the command '@tbot add'
local new = string.sub(message, string.len('@tbot add ') + 1)
local str = w.config_string(tbot_config.hdtrue)
str = str .. ',' .. new
-- Save the new config option
w.config_option_set(tbot_config.hdtrue, str, 1)
-- Display the new string
w.command(buffer, "Added " .. new)
return w.WEECHAT_RC_OK
end
function tbot_remove(data, buffer, time, tags, displayed, highlight, prefix, message)
-- Strip away the command '@tbot add'
local removepattern = string.sub(message, string.len('@tbot remove ') + 1)
local str = w.config_string(tbot_config.hdtrue)
str, c = str:gsub(',' .. removepattern .. ',', ',')
-- Save the new config option
w.config_option_set(tbot_config.hdtrue, str, 1)
-- Display the new string
return tbot_list(data, buffer, time, tags, displayed, highligh, prefix, message)
end
function tbot_config_init()
local structure = {
general = {
enable = {
description = "Enable the bot",
default = true
}
},
patterns = {
hdtrue = {
description = "HD True patterns",
default = ""
},
hdfalse = {
description = "HD True patterns",
default = ""
},
sdtrue = {
description = "HD True patterns",
default = ""
},
sdfalse = {
description = "HD True patterns",
default = ""
},
}
}
tbot_config_file = w.config_new('tbot', '', '')
if tbot_config_file == '' then
return
end
for section_name, section_options in pairs(structure) do
local section = w.config_new_section(
tbot_config_file, section_name,
0, 0,
"", "", "", "", "", "", "", "", "", "")
if section == "" then
w.config_free(tbot_config_file)
return
end
for option, definition in pairs(section_options) do
local lua_type = type(definition.default)
if lua_type == "number" then
tbot_config[option] =
w.config_new_option(
tbot_config_file,
section,
option,
"integer",
definition.description,
"",
(definition.min and definition.min or 0),
(definition.max and definition.max or 0),
definition.default,
definition.default,
0,
"", "", "", "", "", "")
elseif lua_type == "boolean" then
local default = definition.default and "on" or "off"
tbot_config[option] =
w.config_new_option(
tbot_config_file,
section,
option,
"boolean",
definition.description,
"",
0,
0,
default,
default,
0,
"", "", "", "", "", "")
elseif lua_type == "table" or lua_type == "string" then
local default = definition.default
if lua_type == "table" then
default = table.concat(
definition.default,
(definition.separator and definition.separator or ","))
end
tbot_config[option] =
w.config_new_option(
tbot_config_file,
section,
option,
"string",
definition.description,
"",
0,
0,
default,
default,
0,
"", "", "", "", "", "")
end
end
end
end
function tbot_config_read()
return w.config_read(tbot_config_file)
end
function tbot_config_write()
return w.config_write(tbot_config_file)
end
function tbot_unload()
tbot_config_write()
return w.WEECHAT_RC_OK
end
function tbot_init()
w.register(
SCRIPT_NAME,
SCRIPT_AUTHOR,
SCRIPT_VERSION,
SCRIPT_LICENSE,
SCRIPT_DESC,
"tbot_unload", ""
)
tbot_config_init()
tbot_config_read()
local enabled = w.config_boolean(tbot_config.enable)
if enabled == 1 then
-- Register bot commands
w.hook_print("", "", "@tbot list", 1, "tbot_list", "")
w.hook_print("", "", "@tbot add", 1, "tbot_add", "")
w.hook_print("", "", "@tbot remove", 1, "tbot_remove", "")
w.hook_print("", "", "@tbot count", 1, "tbot_count", "")
end
end
-- Initialize the script
tbot_init()