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
|
class AutoOP < Plugin
def help(plugin, topic="")
"perform autoop based on hostmask - usage: addop <hostmask> [channel channel ...], rmop <hostmask> [channel], list - list current ops. If you don't specify which channels, all channels are assumed"
end
def join(m)
return if m.address?
@registry.each { |mask,channels|
if(Irc.netmaskmatch(mask, m.source) &&
(channels.empty? || channels.include?(m.channel)))
@bot.mode(m.channel, "+o", m.sourcenick)
return
end
}
end
def add(m, params)
@registry[params[:mask]] = params[:channels].dup
m.okay
end
def rm(m, params)
unless @registry.has_key?(params[:mask])
m.reply @bot.lang.get('dunno')
return
end
if (params[:channels] && @registry[params[:mask]] != nil)
params[:channels].each do |c|
@registry[params[:mask]] = @registry[params[:mask]].reject {|ele| ele =~ /^#{c}$/i}
end
elsif(!@registry.delete(params[:mask]))
m.reply @bot.lang.get('dunno')
else
m.okay
end
end
def list(m, params)
if(@registry.length)
@registry.each { |mask,channels|
m.reply "#{mask} in #{channels.empty? ? 'all channels' : channels.join(', ')}"
}
else
m.reply "No entrys"
end
end
end
plugin = AutoOP.new
plugin.map 'autoop list', :action => 'list'
plugin.map 'autoop add :mask *channels', :action => 'add'
plugin.map 'autoop add :mask', :action => 'add'
plugin.map 'autoop rm :mask *channels', :action => 'rm'
plugin.map 'autoop rm :mask', :action => 'rm'
|