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
|
class AutoOP < Plugin
@@handlers = {
"addop" => "handle_addop",
"rmop" => "handle_rmop",
"listop" => "handle_listop"
}
def help(plugin, topic="")
"perform autoop based on hostmask - usage: addop <hostmask>, rmop <hostmask>, listop"
end
def join(m)
if(!m.address?)
@registry.each { |mask,channels|
if(Irc.netmaskmatch(mask, m.source) && channels.include?(m.channel))
@bot.mode(m.channel, "+o", m.sourcenick)
end
}
end
end
def privmsg(m)
if(m.private?)
if (!m.params || m.params == "list")
handle_listop(m)
elsif (m.params =~ /^add\s+(.+)$/)
handle_addop(m, $1)
elsif (m.params =~ /^rm\s+(.+)$/)
handle_rmop(m, $1)
end
end
end
def handle_addop(m, params)
ma = /^(.+?)(\s+(.+))?$/.match(params)
channels = ma[2] ? ma[2] : @bot.config['JOIN_CHANNELS']
if(ma[1] && channels)
@registry[ma[1]] = channels.split(/,\s*/).collect { |x|
x.strip
}
m.okay
else
m.reply @bot.lang.get('dunno')
end
end
def handle_rmop(m, params)
if(!@registry.delete(params))
m.reply @bot.lang.get('dunno')
else
m.okay
end
end
def handle_listop(m)
if(@registry.length)
@registry.each { |mask,channels|
m.reply "#{mask} in #{channels.join(', ')}"
}
else
m.reply "No entrys"
end
end
end
plugin = AutoOP.new
plugin.register("autoop")
|