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
|
class AutoOP < Plugin
Config.register Config::BooleanValue.new('autoop.on_nick',
:default => true,
:desc => "Determines if the bot should auto-op when someone changes nick " +
"and the new nick matches a listed netmask")
Config.register Config::StringValue.new('autoop.seed_format',
:default => "*!%{user}@*",
:desc => "Hostmask format used when seeding channels. Recognized tokens: " +
"nick, user, host")
def help(plugin, topic="")
return "perform autoop based on hostmask - usage:" +
"add <hostmask> [channel channel ...], rm <hostmask> [channel], " +
"If you don't specify which channels, all channels are assumed, " +
"list - list current ops, " +
"restore [channel] - op anybody that would " +
"have been opped if they had just joined, " +
"seed [channel] - Find current ops and make sure they will " +
"continue to be autoopped"
end
def join(m)
return if m.address?
@registry.each { |mask,channels|
if m.source.matches?(mask.to_irc_netmask(:server => m.server)) &&
(channels.empty? || channels.include?(m.channel.to_s))
@bot.mode(m.channel, "+o", m.source.nick)
return
end
}
end
def nick(m)
return if m.address?
return unless @bot.config['autoop.on_nick']
is_on = m.server.channels.inject(ChannelList.new) { |list, ch|
list << ch if ch.users.include?(m.source)
list
}
is_on.each { |channel|
ch = channel.to_s
@registry.each { |mask,channels|
if m.source.matches?(mask.to_irc_netmask(:server => m.server)) &&
(channels.empty? || channels.include?(ch))
@bot.mode(ch, "+o", m.source.nick)
return
end
}
}
end
def add(m, params)
if params[:channels].empty? || !@registry.has_key?(params[:mask])
# if the channels parameter is omitted (meaning all channels), or the
# hostmask isn't present in the registry, we just (over)write the channels
# in the registry
@registry[params[:mask]] = params[:channels].dup
m.okay
else
# otherwise, merge the channels with the ones existing in the registry
current_channels = @registry[params[:mask]]
if current_channels.empty?
m.reply "#{params[:mask]} is already being auto-opped on all channels"
else
# merge the already set channels
@registry[params[:mask]] = (params[:channels] | current_channels).uniq
m.okay
end
end
end
def seed(m, params)
chan = params[:channel]
if chan == nil
if m.public?
chan = m.channel
else
m.reply _("Either specify a channel to seed, or ask in public")
end
end
current_ops = @bot.server.channel(chan).users.select { |u|
u.is_op?(chan) and u.nick != @bot.nick
}
netmasks = current_ops.map { |u|
@bot.config['autoop.seed_format'] % {
:user => u.user,
:nick => u.nick,
:host => u.host
}
}.uniq
to_add = netmasks.select { |mask|
@registry.key?(mask) == false or @registry[mask].empty? == false
}
if to_add.empty?
m.reply _("Nobody to add")
return
end
results = []
to_add.each { |mask|
if @registry.key? mask
if @registry[mask].include? chan
next
else
current_channels = @registry[mask].dup
@registry[mask] = ([chan] | current_channels).uniq
results << _("Added #{mask} in #{chan}")
end
else
@registry[mask] = [chan]
results << _("Created autoop entry for #{mask} and added #{chan}")
end
}
m.reply results.join ". "
end
def rm(m, params)
unless @registry.has_key?(params[:mask])
m.reply @bot.lang.get('dunno')
return
end
if (!params[:channels].empty? && @registry[params[:mask]] != nil)
params[:channels].each do |c|
@registry[params[:mask]] = @registry[params[:mask]].reject {|ele| ele =~ /^#{c}$/i}
end
if @registry[params[:mask]].empty?
@registry.delete(params[:mask])
end
else
@registry.delete(params[:mask])
end
m.okay
end
def list(m, params)
debug @registry.length
if(@registry.length > 0)
@registry.each { |mask,channels|
m.reply "#{mask} in #{channels.empty? ? 'all channels' : channels.join(', ')}"
}
else
m.reply "No entries"
end
end
def restore(m, params)
chan = params[:channel]
if chan == nil
if m.public?
chan = m.channel
else
m.reply _("Either specify a channel to restore, or ask in public")
end
end
current_non_ops = @bot.server.channel(chan).users.select { |u|
u.is_op?(chan) == nil and u.nick != @bot.nick
}
@registry.each { |mask,channels|
if channels.empty? || channels.include?(chan)
current_non_ops.each { |victim|
if victim.matches?(mask.to_irc_netmask(:server => m.server))
@bot.mode(chan, "+o", victim)
end
}
end
}
end
end
plugin = AutoOP.new
plugin.map 'autoop list', :action => 'list'
plugin.map 'autoop add :mask [*channels]', :action => 'add'
plugin.map 'autoop rm :mask [*channels]', :action => 'rm'
plugin.map 'autoop seed [:channel]', :action => 'seed'
plugin.map 'autoop restore [:channel]', :action => 'restore'
plugin.default_auth('*',false)
|