auth core botmodule: fix permission view without a specified user
[rbot] / lib / rbot / core / auth.rb
1 #-- vim:sw=2:et
2 #++
3 #
4 # :title: rbot auth management from IRC
5 #
6 # Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
7
8 class AuthModule < CoreBotModule
9
10   def initialize
11     super
12
13     # The namespace migration causes each Irc::Auth::PermissionSet to be
14     # unrecoverable, and we have to rename their class name to
15     # Irc::Bot::Auth::PermissionSet
16     @registry.recovery = Proc.new { |val|
17       patched = val.sub("o:\035Irc::Auth::PermissionSet", "o:\042Irc::Bot::Auth::PermissionSet")
18       Marshal.restore(patched)
19     }
20
21     load_array(:default, true)
22     debug "initialized auth. Botusers: #{@bot.auth.save_array.pretty_inspect}"
23   end
24
25   def save
26     save_array
27   end
28
29   def save_array(key=:default)
30     if @bot.auth.changed?
31       @registry[key] = @bot.auth.save_array
32       @bot.auth.reset_changed
33       debug "saved botusers (#{key}): #{@registry[key].pretty_inspect}"
34     end
35   end
36
37   def load_array(key=:default, forced=false)
38     debug "loading botusers (#{key}): #{@registry[key].pretty_inspect}"
39     @bot.auth.load_array(@registry[key], forced) if @registry.has_key?(key)
40     if @bot.auth.botowner.password != @bot.config['auth.password']
41       error "Master password is out of sync!"
42       debug "  db password: #{@bot.auth.botowner.password}"
43       debug "conf password: #{@bot.config['auth.password']}"
44       error "Using conf password"
45       @bot.auth.botowner.password = @bot.config['auth.password']
46     end
47   end
48
49   # The permission parameters accept arguments with the following syntax:
50   #   cmd_path... [on #chan .... | in here | in private]
51   # This auxiliary method scans the array _ar_ to see if it matches
52   # the given syntax: it expects + or - signs in front of _cmd_path_
53   # elements when _setting_ = true
54   #
55   # It returns an array whose first element is the array of cmd_path,
56   # the second element is an array of locations and third an array of
57   # warnings occurred while parsing the strings
58   #
59   def parse_args(ar, setting)
60     cmds = []
61     locs = []
62     warns = []
63     doing_cmds = true
64     next_must_be_chan = false
65     want_more = false
66     last_idx = 0
67     ar.each_with_index { |x, i|
68       if doing_cmds # parse cmd_path
69         # check if the list is done
70         if x == "on" or x == "in"
71           doing_cmds = false
72           next_must_be_chan = true if x == "on"
73           next
74         end
75         if "+-".include?(x[0])
76           warns << ArgumentError.new(_("please do not use + or - in front of command %{command} when resetting") % {:command => x}) unless setting
77         else
78           warns << ArgumentError.new(_("+ or - expected in front of %{string}") % {:string => x}) if setting
79         end
80         cmds << x
81       else # parse locations
82         if x[-1].chr == ','
83           want_more = true
84         else
85           want_more = false
86         end
87         case next_must_be_chan
88         when false
89           locs << x.gsub(/^here$/,'_').gsub(/^private$/,'?')
90         else
91           warns << ArgumentError.new(_("'%{string}' doesn't look like a channel name") % {:string => x}) unless @bot.server.supports[:chantypes].include?(x[0])
92           locs << x
93         end
94         unless want_more
95           last_idx = i
96           break
97         end
98       end
99     }
100     warns << _("trailing comma") if want_more
101     warns << _("you probably forgot a comma") unless last_idx == ar.length - 1
102     return cmds, locs, warns
103   end
104
105   def auth_edit_perm(m, params)
106
107     setting = m.message.split[1] == "set"
108     splits = params[:args]
109
110     has_for = splits[-2] == "for"
111     return usage(m) unless has_for
112
113     begin
114       user = @bot.auth.get_botuser(splits[-1].sub(/^all$/,"everyone"))
115     rescue
116       return m.reply(_("couldn't find botuser %{name}") % {:name => splits[-1]})
117     end
118     return m.reply(_("you can't change permissions for %{username}") % {:username => user.username}) if user.owner?
119     splits.slice!(-2,2) if has_for
120
121     cmds, locs, warns = parse_args(splits, setting)
122     errs = warns.select { |w| w.kind_of?(Exception) }
123
124     unless errs.empty?
125       m.reply _("couldn't satisfy your request: %{errors}") % {:errors => errs.join(',')}
126       return
127     end
128
129     if locs.empty?
130       locs << "*"
131     end
132     begin
133       locs.each { |loc|
134         ch = loc
135         if m.private?
136           ch = "?" if loc == "_"
137         else
138           ch = m.target.to_s if loc == "_"
139         end
140         cmds.each { |setval|
141           if setting
142             val = setval[0].chr == '+'
143             cmd = setval[1..-1]
144             user.set_permission(cmd, val, ch)
145           else
146             cmd = setval
147             user.reset_permission(cmd, ch)
148           end
149         }
150       }
151     rescue => e
152       m.reply "something went wrong while trying to set the permissions"
153       raise
154     end
155     @bot.auth.set_changed
156     debug "user #{user} permissions changed"
157     m.okay
158   end
159
160   def auth_view_perm(m, params)
161     begin
162       if params[:user].nil?
163         user = get_botuser_for(m.source)
164         return m.reply(_("you are owner, you can do anything")) if user.owner?
165       else
166         user = @bot.auth.get_botuser(params[:user].sub(/^all$/,"everyone"))
167         return m.reply(_("owner can do anything")) if user.owner?
168       end
169     rescue
170       return m.reply(_("couldn't find botuser %{name}") % {:name => params[:user]})
171     end
172     perm = user.perm
173     str = []
174     perm.each { |k, val|
175       next if val.perm.empty?
176       case k
177       when :*
178         str << _("on any channel: ")
179       when :"?"
180         str << _("in private: ")
181       else
182         str << _("on #{k}: ")
183       end
184       sub = []
185       val.perm.each { |cmd, bool|
186         sub << (bool ? "+" : "-")
187         sub.last << cmd.to_s
188       }
189       str.last << sub.join(', ')
190     }
191     if str.empty?
192       m.reply _("no permissions set for %{user}") % {:user => user.username}
193     else
194       m.reply _("permissions for %{user}:: %{permissions}") %
195               { :user => user.username, :permissions => str.join('; ')}
196     end
197   end
198
199   def auth_search_perm(m, p)
200     pattern = Regexp.new(p[:pattern].to_s)
201     results = @bot.plugins.maps.select { |k, v| k.match(pattern) }
202     count = results.length
203     max = @bot.config['send.max_lines']
204     extra = (count > max ? _(". only %{max} will be shown") : "") % { :max => max }
205     m.reply _("%{count} commands found matching %{pattern}%{extra}") % {
206       :count => count, :pattern => pattern, :extra => extra
207     }
208     return if count == 0
209     results[0,max].each { |cmd, hash|
210       m.reply _("%{cmd}: %{perms}") % {
211         :cmd => cmd,
212         :perms => hash[:auth].join(", ")
213       }
214     }
215   end
216
217   def find_auth(pseudo)
218     k = pseudo.plugin.intern
219     cmds = @bot.plugins.commands
220     auth = nil
221     if cmds.has_key?(k)
222       cmds[k][:botmodule].handler.each do |tmpl|
223         options, failure = tmpl.recognize(pseudo)
224         next if options.nil?
225         auth = tmpl.options[:full_auth_path]
226         break
227       end
228     end
229     return auth
230   end
231
232   def auth_allow_deny(m, p)
233     begin
234       botuser = @bot.auth.get_botuser(p[:user].sub(/^all$/,"everyone"))
235     rescue
236       return m.reply(_("couldn't find botuser %{name}") % {:name => p[:user]})
237     end
238
239     if p[:where].to_s.empty?
240       where = :*
241     else
242       where = m.parse_channel_list(p[:where].to_s).first # should only be one anyway
243     end
244
245     if p.has_key? :auth_path
246       auth_path = p[:auth_path]
247     else
248       # pseudo-message to find the template. The source is ignored, and the
249       # target is set according to where the template should be checked
250       # (public or private)
251       # This might still fail in the case of 'everywhere' for commands there are
252       # really only private
253       case where
254       when :"?"
255         pseudo_target = @bot.myself
256       when :*
257         pseudo_target = m.channel
258       else
259         pseudo_target = m.server.channel(where)
260       end
261
262       pseudo = PrivMessage.new(bot, m.server, m.source, pseudo_target, p[:stuff].to_s)
263
264       auth_path = find_auth(pseudo)
265     end
266     debug auth_path
267
268     if auth_path
269       allow = p[:allow]
270       if @bot.auth.permit?(botuser, auth_path, where)
271         return m.reply(_("%{user} can already do that") % {:user => botuser}) if allow
272       else
273         return m.reply(_("%{user} can't do that already") % {:user => botuser}) if !allow
274       end
275       cmd = PrivMessage.new(bot, m.server, m.source, m.target, "permissions set %{sign}%{path} %{where} for %{user}" % {
276         :path => auth_path,
277         :user => p[:user],
278         :sign => (allow ? '+' : '-'),
279         :where => p[:where].to_s
280       })
281       handle(cmd)
282     else
283       m.reply(_("sorry, %{cmd} doesn't look like a valid command. maybe you misspelled it, or you need to specify it should be in private?") % {
284         :cmd => p[:stuff].to_s
285       })
286     end
287   end
288
289   def auth_allow(m, p)
290     auth_allow_deny(m, p.merge(:allow => true))
291   end
292
293   def auth_deny(m, p)
294     auth_allow_deny(m, p.merge(:allow => false))
295   end
296
297   def get_botuser_for(user)
298     @bot.auth.irc_to_botuser(user)
299   end
300
301   def get_botusername_for(user)
302     get_botuser_for(user).username
303   end
304
305   def say_welcome(m)
306     m.reply _("welcome, %{user}") % {:user => get_botusername_for(m.source)}
307   end
308
309   def auth_auth(m, params)
310     params[:botuser] = 'owner'
311     auth_login(m,params)
312   end
313
314   def auth_login(m, params)
315     begin
316       case @bot.auth.login(m.source, params[:botuser], params[:password])
317       when true
318         say_welcome(m)
319         @bot.auth.set_changed
320       else
321         m.reply _("sorry, can't do")
322       end
323     rescue => e
324       m.reply _("couldn't login: %{exception}") % {:exception => e}
325       raise
326     end
327   end
328
329   def auth_autologin(m, params)
330     u = do_autologin(m.source)
331     if u.default?
332       m.reply _("I couldn't find anything to let you login automatically")
333     else
334       say_welcome(m)
335     end
336   end
337
338   def do_autologin(user)
339     @bot.auth.autologin(user)
340   end
341
342   def auth_whoami(m, params)
343     m.reply _("you are %{who}") % {
344       :who => get_botusername_for(m.source).gsub(
345                 /^everyone$/, _("no one that I know")).gsub(
346                 /^owner$/, _("my boss"))
347     }
348   end
349
350   def auth_whois(m, params)
351     return auth_whoami(m, params) if !m.public?
352     u = m.channel.users[params[:user]]
353
354     return m.reply("I don't see anyone named '#{params[:user]}' here") unless u
355
356     m.reply _("#{params[:user]} is %{who}") % {
357       :who => get_botusername_for(u).gsub(
358                 /^everyone$/, _("no one that I know")).gsub(
359                 /^owner$/, _("my boss"))
360     }
361   end
362
363   def help(cmd, topic="")
364     case cmd
365     when "login"
366       return _("login [<botuser>] [<pass>]: logs in to the bot as botuser <botuser> with password <pass>. When using the full form, you must contact the bot in private. <pass> can be omitted if <botuser> allows login-by-mask and your netmask is among the known ones. if <botuser> is omitted too autologin will be attempted")
367     when "whoami"
368       return _("whoami: names the botuser you're linked to")
369     when "who"
370       return _("who is <user>: names the botuser <user> is linked to")
371     when /^permission/
372       case topic
373       when "syntax"
374         return _("a permission is specified as module::path::to::cmd; when you want to enable it, prefix it with +; when you want to disable it, prefix it with -; when using the +reset+ command, do not use any prefix")
375       when "set", "reset", "[re]set", "(re)set"
376         return _("permissions [re]set <permission> [in <channel>] for <user>: sets or resets the permissions for botuser <user> in channel <channel> (use ? to change the permissions for private addressing)")
377       when "view"
378         return _("permissions view [for <user>]: display the permissions for user <user>")
379       when "search"
380         return _("permissions search <pattern>: display the permissions associated with the commands matching <pattern>")
381       else
382         return _("permission topics: syntax, (re)set, view, search")
383       end
384     when "user"
385       case topic
386       when "show"
387         return _("user show <what> : shows info about the user; <what> can be any of autologin, login-by-mask, netmasks")
388       when /^(en|dis)able/
389         return _("user enable|disable <what> : turns on or off <what> (autologin, login-by-mask)")
390       when "set"
391         return _("user set password <blah> : sets the user password to <blah>; passwords can only contain upper and lowercase letters and numbers, and must be at least 4 characters long")
392       when "add", "rm"
393         return _("user add|rm netmask <mask> : adds/removes netmask <mask> from the list of netmasks known to the botuser you're linked to")
394       when "reset"
395         return _("user reset <what> : resets <what> to the default values. <what> can be +netmasks+ (the list will be emptied), +autologin+ or +login-by-mask+ (will be reset to the default value) or +password+ (a new one will be generated and you'll be told in private)")
396       when "tell"
397         return _("user tell <who> the password for <botuser> : contacts <who> in private to tell him/her the password for <botuser>")
398       when "create"
399         return _("user create <name> <password> : create botuser named <name> with password <password>. The password can be omitted, in which case a random one will be generated. The <name> should only contain alphanumeric characters and the underscore (_)")
400       when "list"
401         return _("user list : lists all the botusers")
402       when "destroy"
403         return _("user destroy <botuser> : destroys <botuser>. This function %{highlight}must%{highlight} be called in two steps. On the first call <botuser> is queued for destruction. On the second call, which must be in the form 'user confirm destroy <botuser>', the botuser will be destroyed. If you want to cancel the destruction, issue the command 'user cancel destroy <botuser>'") % {:highlight => Bold}
404       else
405         return _("user topics: show, enable|disable, add|rm netmask, set, reset, tell, create, list, destroy")
406       end
407     when "auth"
408       return _("auth <masterpassword>: log in as the bot owner; other commands: login, whoami, permissions syntax, permissions [re]set, permissions view, user, meet, hello, allow, prevent")
409     when "meet"
410       return _("meet <nick> [as <user>]: creates a bot user for nick, calling it user (defaults to the nick itself)")
411     when "hello"
412       return _("hello: creates a bot user for the person issuing the command")
413     when "allow"
414       return _("allow <user> to do <sample command> [<where>]: gives botuser <user> the permissions to execute a command such as the provided sample command (in private or in channel, according to the optional <where>)")
415     when "deny"
416       return _("deny <user> from doing <sample command> [<where>]: removes from botuser <user> the permissions to execute a command such as the provided sample command (in private or in channel, according to the optional <where>)")
417     else
418       return _("auth commands: auth, login, whoami, who, permission[s], user, meet, hello, allow, deny")
419     end
420   end
421
422   def need_args(cmd)
423     _("sorry, I need more arguments to %{command}") % {:command => cmd}
424   end
425
426   def not_args(cmd, *stuff)
427     _("I can only %{command} these: %{arguments}") %
428       {:command => cmd, :arguments => stuff.join(', ')}
429   end
430
431   def set_prop(botuser, prop, val)
432     k = prop.to_s.gsub("-","_")
433     botuser.send( (k + "=").to_sym, val)
434     if prop == :password and botuser == @bot.auth.botowner
435       @bot.config.items[:'auth.password'].set_string(@bot.auth.botowner.password)
436     end
437   end
438
439   def reset_prop(botuser, prop)
440     k = prop.to_s.gsub("-","_")
441     botuser.send( ("reset_"+k).to_sym)
442   end
443
444   def ask_bool_prop(botuser, prop)
445     k = prop.to_s.gsub("-","_")
446     botuser.send( (k + "?").to_sym)
447   end
448
449   def auth_manage_user(m, params)
450     splits = params[:data]
451
452     cmd = splits.first
453     return auth_whoami(m, params) if cmd.nil?
454
455     botuser = get_botuser_for(m.source)
456     # By default, we do stuff on the botuser the irc user is bound to
457     butarget = botuser
458
459     has_for = splits[-2] == "for"
460     if has_for
461       butarget = @bot.auth.get_botuser(splits[-1]) rescue nil
462       return m.reply(_("no such bot user %{user}") % {:user => splits[-1]}) unless butarget
463       splits.slice!(-2,2)
464     end
465     return m.reply(_("you can't mess with %{user}") % {:user => butarget.username}) if butarget.owner? && botuser != butarget
466
467     bools = [:autologin, :"login-by-mask"]
468     can_set = [:password]
469     can_addrm = [:netmasks]
470     can_reset = bools + can_set + can_addrm
471     can_show = can_reset + ["perms"]
472
473     begin
474     case cmd.to_sym
475
476     when :show
477       return m.reply(_("you can't see the properties of %{user}") %
478              {:user => butarget.username}) if botuser != butarget &&
479                                                !botuser.permit?("auth::show::other")
480
481       case splits[1]
482       when nil, "all"
483         props = can_reset
484       when "password"
485         if botuser != butarget
486           return m.reply(_("no way I'm telling you the master password!")) if butarget == @bot.auth.botowner
487           return m.reply(_("you can't ask for someone else's password"))
488         end
489         return m.reply(_("c'mon, you can't be asking me seriously to tell you the password in public!")) if m.public?
490         return m.reply(_("the password for %{user} is %{password}") %
491           { :user => butarget.username, :password => butarget.password })
492       else
493         props = splits[1..-1]
494       end
495
496       str = []
497
498       props.each { |arg|
499         k = arg.to_sym
500         next if k == :password
501         case k
502         when *bools
503           if ask_bool_prop(butarget, k)
504             str << _("can %{action}") % {:action => k}
505           else
506             str << _("can not %{action}") % {:action => k}
507           end
508         when :netmasks
509           if butarget.netmasks.empty?
510             str << _("knows no netmasks")
511           else
512             str << _("knows %{netmasks}") % {:netmasks => butarget.netmasks.join(", ")}
513           end
514         end
515       }
516       return m.reply("#{butarget.username} #{str.join('; ')}")
517
518     when :enable, :disable
519       return m.reply(_("you can't change the default user")) if butarget.default? && !botuser.permit?("auth::edit::other::default")
520       return m.reply(_("you can't edit %{user}") % {:user => butarget.username}) if butarget != botuser && !botuser.permit?("auth::edit::other")
521
522       return m.reply(need_args(cmd)) unless splits[1]
523       things = []
524       skipped = []
525       splits[1..-1].each { |a|
526         arg = a.to_sym
527         if bools.include?(arg)
528           set_prop(butarget, arg, cmd.to_sym == :enable)
529           things << a
530         else
531           skipped << a
532         end
533       }
534
535       m.reply(_("I ignored %{things} because %{reason}") % {
536                 :things => skipped.join(', '),
537                 :reason => not_args(cmd, *bools)}) unless skipped.empty?
538       if things.empty?
539         m.reply _("I haven't changed anything")
540       else
541         @bot.auth.set_changed
542         return auth_manage_user(m, {:data => ["show"] + things + ["for", butarget.username] })
543       end
544
545     when :set
546       return m.reply(_("you can't change the default user")) if
547              butarget.default? && !botuser.permit?("auth::edit::default")
548       return m.reply(_("you can't edit %{user}") % {:user=>butarget.username}) if
549              butarget != botuser && !botuser.permit?("auth::edit::other")
550
551       return m.reply(need_args(cmd)) unless splits[1]
552       arg = splits[1].to_sym
553       return m.reply(not_args(cmd, *can_set)) unless can_set.include?(arg)
554       argarg = splits[2]
555       return m.reply(need_args([cmd, splits[1]].join(" "))) unless argarg
556       if arg == :password && m.public?
557         return m.reply(_("is that a joke? setting the password in public?"))
558       end
559       set_prop(butarget, arg, argarg)
560       @bot.auth.set_changed
561       auth_manage_user(m, {:data => ["show", arg.to_s, "for", butarget.username] })
562
563     when :reset
564       return m.reply(_("you can't change the default user")) if
565              butarget.default? && !botuser.permit?("auth::edit::default")
566       return m.reply(_("you can't edit %{user}") % {:user=>butarget.username}) if
567              butarget != botuser && !botuser.permit?("auth::edit::other")
568
569       return m.reply(need_args(cmd)) unless splits[1]
570       things = []
571       skipped = []
572       splits[1..-1].each { |a|
573         arg = a.to_sym
574         if can_reset.include?(arg)
575           reset_prop(butarget, arg)
576           things << a
577         else
578           skipped << a
579         end
580       }
581
582       m.reply(_("I ignored %{things} because %{reason}") %
583                 { :things => skipped.join(', '),
584                   :reason => not_args(cmd, *can_reset)}) unless skipped.empty?
585       if things.empty?
586         m.reply _("I haven't changed anything")
587       else
588         @bot.auth.set_changed
589         @bot.say(m.source, _("the password for %{user} is now %{password}") %
590           {:user => butarget.username, :password => butarget.password}) if
591           things.include?("password")
592         return auth_manage_user(m, {:data => (["show"] + things - ["password"]) + ["for", butarget.username]})
593       end
594
595     when :add, :rm, :remove, :del, :delete
596       return m.reply(_("you can't change the default user")) if
597              butarget.default? && !botuser.permit?("auth::edit::default")
598       return m.reply(_("you can't edit %{user}") % {:user => butarget.username}) if
599              butarget != botuser && !botuser.permit?("auth::edit::other")
600
601       arg = splits[1]
602       if arg.nil? or arg !~ /netmasks?/ or splits[2].nil?
603         return m.reply(_("I can only add/remove netmasks. See +help user add+ for more instructions"))
604       end
605
606       method = cmd.to_sym == :add ? :add_netmask : :delete_netmask
607
608       failed = []
609
610       splits[2..-1].each { |mask|
611         begin
612           butarget.send(method, mask.to_irc_netmask(:server => @bot.server))
613         rescue => e
614           debug "failed with #{e.message}"
615           debug e.backtrace.join("\n")
616           failed << mask
617         end
618       }
619       m.reply "I failed to #{cmd} #{failed.join(', ')}" unless failed.empty?
620       @bot.auth.set_changed
621       return auth_manage_user(m, {:data => ["show", "netmasks", "for", butarget.username] })
622
623     else
624       m.reply _("sorry, I don't know how to %{request}") % {:request => m.message}
625     end
626     rescue => e
627       m.reply _("couldn't %{cmd}: %{exception}") % {:cmd => cmd, :exception => e}
628     end
629   end
630
631   def auth_meet(m, params)
632     nick = params[:nick]
633     if !nick
634       # we are actually responding to a 'hello' command
635       unless m.botuser.transient?
636         m.reply @bot.lang.get('hello_X') % m.botuser
637         return
638       end
639       nick = m.sourcenick
640       irc_user = m.source
641     else
642       # m.channel is always an Irc::Channel because the command is either
643       # public-only 'meet' or private/public 'hello' which was handled by
644       # the !nick case, so this shouldn't fail
645       irc_user = m.channel.users[nick]
646       return m.reply("I don't see anyone named '#{nick}' here") unless irc_user
647     end
648     # BotUser name
649     buname = params[:user] || nick
650     begin
651       call_event(:botuser,:pre_perm, {:irc_user => irc_user, :bot_user => buname})
652       met = @bot.auth.make_permanent(irc_user, buname)
653       @bot.auth.set_changed
654       call_event(:botuser,:post_perm, {:irc_user => irc_user, :bot_user => buname})
655       m.reply @bot.lang.get('hello_X') % met
656       @bot.say nick, _("you are now registered as %{buname}. I created a random password for you : %{pass} and you can change it at any time by telling me 'user set password <password>' in private" % {
657         :buname => buname,
658         :pass => met.password
659       })
660     rescue RuntimeError
661       # or can this happen for other cases too?
662       # TODO autologin if forced
663       m.reply _("but I already know %{buname}" % {:buname => buname})
664     rescue => e
665       m.reply _("I had problems meeting %{nick}: %{e}" % { :nick => nick, :e => e })
666     end
667   end
668
669   def auth_tell_password(m, params)
670     user = params[:user]
671     begin
672       botuser = @bot.auth.get_botuser(params[:botuser])
673     rescue
674       return m.reply(_("couldn't find botuser %{user}") % {:user => params[:botuser]})
675     end
676     return m.reply(_("I'm not telling the master password to anyone, pal")) if botuser == @bot.auth.botowner
677     msg = _("the password for botuser %{user} is %{password}") %
678           {:user => botuser.username, :password => botuser.password}
679     @bot.say user, msg
680     @bot.say m.source, _("I told %{user} that %{message}") % {:user => user, :message => msg}
681   end
682
683   def auth_create_user(m, params)
684     name = params[:name]
685     password = params[:password]
686     return m.reply(_("are you nuts, creating a botuser with a publicly known password?")) if m.public? and not password.nil?
687     begin
688       bu = @bot.auth.create_botuser(name, password)
689       @bot.auth.set_changed
690     rescue => e
691       m.reply(_("failed to create %{user}: %{exception}") % {:user => name,  :exception => e})
692       debug e.inspect + "\n" + e.backtrace.join("\n")
693       return
694     end
695     m.reply(_("created botuser %{user}") % {:user => bu.username})
696   end
697
698   def auth_list_users(m, params)
699     # TODO name regexp to filter results
700     list = @bot.auth.save_array.inject([]) { |list, x| ['everyone', 'owner'].include?(x[:username]) ? list : list << x[:username] }
701     if defined?(@destroy_q)
702       list.map! { |x|
703         @destroy_q.include?(x) ? x + _(" (queued for destruction)") : x
704       }
705     end
706     return m.reply(_("I have no botusers other than the default ones")) if list.empty?
707     return m.reply(n_("botuser: %{list}", "botusers: %{list}", list.length) %
708                    {:list => list.join(', ')})
709   end
710
711   def auth_destroy_user(m, params)
712     @destroy_q = [] unless defined?(@destroy_q)
713     buname = params[:name]
714     return m.reply(_("You can't destroy %{user}") % {:user => buname}) if
715            ["everyone", "owner"].include?(buname)
716     mod = params[:modifier].to_sym rescue nil
717
718     buser_array = @bot.auth.save_array
719     buser_hash = buser_array.inject({}) { |h, u|
720       h[u[:username]] = u
721       h
722     }
723
724     return m.reply(_("no such botuser %{user}") % {:user=>buname}) unless
725            buser_hash.keys.include?(buname)
726
727     case mod
728     when :cancel
729       if @destroy_q.include?(buname)
730         @destroy_q.delete(buname)
731         m.reply(_("%{user} removed from the destruction queue") % {:user=>buname})
732       else
733         m.reply(_("%{user} was not queued for destruction") % {:user=>buname})
734       end
735       return
736     when nil
737       if @destroy_q.include?(buname)
738         return m.reply(_("%{user} already queued for destruction, use %{highlight}user confirm destroy %{user}%{highlight} to destroy it") % {:user=>buname, :highlight=>Bold})
739       else
740         @destroy_q << buname
741         return m.reply(_("%{user} queued for destruction, use %{highlight}user confirm destroy %{user}%{highlight} to destroy it") % {:user=>buname, :highlight=>Bold})
742       end
743     when :confirm
744       begin
745         return m.reply(_("%{user} is not queued for destruction yet") %
746                {:user=>buname}) unless @destroy_q.include?(buname)
747         buser_array.delete_if { |u|
748           u[:username] == buname
749         }
750         @destroy_q.delete(buname)
751         @bot.auth.load_array(buser_array, true)
752         @bot.auth.set_changed
753       rescue => e
754         return m.reply(_("failed: %{exception}") % {:exception => e})
755       end
756       return m.reply(_("botuser %{user} destroyed") % {:user => buname})
757     end
758   end
759
760   def auth_copy_ren_user(m, params)
761     source = Auth::BotUser.sanitize_username(params[:source])
762     dest = Auth::BotUser.sanitize_username(params[:dest])
763     return m.reply(_("please don't touch the default users")) unless
764       (["everyone", "owner"] & [source, dest]).empty?
765
766     buser_array = @bot.auth.save_array
767     buser_hash = buser_array.inject({}) { |h, u|
768       h[u[:username]] = u
769       h
770     }
771
772     return m.reply(_("no such botuser %{source}") % {:source=>source}) unless
773            buser_hash.keys.include?(source)
774     return m.reply(_("botuser %{dest} exists already") % {:dest=>dest}) if
775            buser_hash.keys.include?(dest)
776
777     copying = m.message.split[1] == "copy"
778     begin
779       if copying
780         h = {}
781         buser_hash[source].each { |k, val|
782           h[k] = val.dup
783         }
784       else
785         h = buser_hash[source]
786       end
787       h[:username] = dest
788       buser_array << h if copying
789
790       @bot.auth.load_array(buser_array, true)
791       @bot.auth.set_changed
792       call_event(:botuser, copying ? :copy : :rename, :source => source, :dest => dest)
793     rescue => e
794       return m.reply(_("failed: %{exception}") % {:exception=>e})
795     end
796     if copying
797       m.reply(_("botuser %{source} copied to %{dest}") %
798            {:source=>source, :dest=>dest})
799     else
800       m.reply(_("botuser %{source} renamed to %{dest}") %
801            {:source=>source, :dest=>dest})
802     end
803
804   end
805
806   def auth_export(m, params)
807
808     exportfile = "#{@bot.botclass}/new-auth.users"
809
810     what = params[:things]
811
812     has_to = what[-2] == "to"
813     if has_to
814       exportfile = "#{@bot.botclass}/#{what[-1]}"
815       what.slice!(-2,2)
816     end
817
818     what.delete("all")
819
820     m.reply _("selecting data to export ...")
821
822     buser_array = @bot.auth.save_array
823     buser_hash = buser_array.inject({}) { |h, u|
824       h[u[:username]] = u
825       h
826     }
827
828     if what.empty?
829       we_want = buser_hash
830     else
831       we_want = buser_hash.delete_if { |key, val|
832         not what.include?(key)
833       }
834     end
835
836     m.reply _("preparing data for export ...")
837     begin
838       yaml_hash = {}
839       we_want.each { |k, val|
840         yaml_hash[k] = {}
841         val.each { |kk, v|
842           case kk
843           when :username
844             next
845           when :netmasks
846             yaml_hash[k][kk] = []
847             v.each { |nm|
848               yaml_hash[k][kk] << {
849                 :fullform => nm.fullform,
850                 :casemap => nm.casemap.to_s
851               }
852             }
853           else
854             yaml_hash[k][kk] = v
855           end
856         }
857       }
858     rescue => e
859       m.reply _("failed to prepare data: %{exception}") % {:exception=>e}
860       debug e.backtrace.dup.unshift(e.inspect).join("\n")
861       return
862     end
863
864     m.reply _("exporting to %{file} ...") % {:file=>exportfile}
865     begin
866       # m.reply yaml_hash.inspect
867       File.open(exportfile, "w") do |file|
868         file.puts YAML::dump(yaml_hash)
869       end
870     rescue => e
871       m.reply _("failed to export users: %{exception}") % {:exception=>e}
872       debug e.backtrace.dup.unshift(e.inspect).join("\n")
873       return
874     end
875     m.reply _("done")
876   end
877
878   def auth_import(m, params)
879
880     importfile = "#{@bot.botclass}/new-auth.users"
881
882     what = params[:things]
883
884     has_from = what[-2] == "from"
885     if has_from
886       importfile = "#{@bot.botclass}/#{what[-1]}"
887       what.slice!(-2,2)
888     end
889
890     what.delete("all")
891
892     m.reply _("reading %{file} ...") % {:file=>importfile}
893     begin
894       yaml_hash = YAML::load_file(importfile)
895     rescue => e
896       m.reply _("failed to import from: %{exception}") % {:exception=>e}
897       debug e.backtrace.dup.unshift(e.inspect).join("\n")
898       return
899     end
900
901     # m.reply yaml_hash.inspect
902
903     m.reply _("selecting data to import ...")
904
905     if what.empty?
906       we_want = yaml_hash
907     else
908       we_want = yaml_hash.delete_if { |key, val|
909         not what.include?(key)
910       }
911     end
912
913     m.reply _("parsing data from import ...")
914
915     buser_hash = {}
916
917     begin
918       yaml_hash.each { |k, val|
919         buser_hash[k] = { :username => k }
920         val.each { |kk, v|
921           case kk
922           when :netmasks
923             buser_hash[k][kk] = []
924             v.each { |nm|
925               buser_hash[k][kk] << nm[:fullform].to_irc_netmask(:casemap => nm[:casemap].to_irc_casemap).to_irc_netmask(:server => @bot.server)
926             }
927           else
928             buser_hash[k][kk] = v
929           end
930         }
931       }
932     rescue => e
933       m.reply _("failed to parse data: %{exception}") % {:exception=>e}
934       debug e.backtrace.dup.unshift(e.inspect).join("\n")
935       return
936     end
937
938     # m.reply buser_hash.inspect
939
940     org_buser_array = @bot.auth.save_array
941     org_buser_hash = org_buser_array.inject({}) { |h, u|
942       h[u[:username]] = u
943       h
944     }
945
946     # TODO we may want to do a(n optional) key-by-key merge
947     #
948     org_buser_hash.merge!(buser_hash)
949     new_buser_array = org_buser_hash.values
950     @bot.auth.load_array(new_buser_array, true)
951     @bot.auth.set_changed
952
953     m.reply _("done")
954   end
955
956 end
957
958 auth = AuthModule.new
959
960 auth.map "user export *things",
961   :action => 'auth_export',
962   :defaults => { :things => ['all'] },
963   :auth_path => ':manage:fedex:'
964
965 auth.map "user import *things",
966  :action => 'auth_import',
967  :auth_path => ':manage:fedex:'
968
969 auth.map "user create :name :password",
970   :action => 'auth_create_user',
971   :defaults => {:password => nil},
972   :auth_path => ':manage:'
973
974 auth.map "user [:modifier] destroy :name",
975   :action => 'auth_destroy_user',
976   :requirements => { :modifier => /^(cancel|confirm)?$/ },
977   :defaults => { :modifier => '' },
978   :auth_path => ':manage::destroy!'
979
980 auth.map "user copy :source [to] :dest",
981   :action => 'auth_copy_ren_user',
982   :auth_path => ':manage:'
983
984 auth.map "user rename :source [to] :dest",
985   :action => 'auth_copy_ren_user',
986   :auth_path => ':manage:'
987
988 auth.map "meet :nick [as :user]",
989   :action => 'auth_meet',
990   :auth_path => 'user::manage', :private => false
991
992 auth.map "hello",
993   :action => 'auth_meet',
994   :auth_path => 'user::manage::meet'
995
996 auth.default_auth("user::manage", false)
997 auth.default_auth("user::manage::meet::hello", true)
998
999 auth.map "user tell :user the password for :botuser",
1000   :action => 'auth_tell_password',
1001   :auth_path => ':manage:'
1002
1003 auth.map "user list",
1004   :action => 'auth_list_users',
1005   :auth_path => '::'
1006
1007 auth.map "user *data",
1008   :action => 'auth_manage_user'
1009
1010 auth.map "allow :user to do *stuff [*where]",
1011   :action => 'auth_allow',
1012   :requirements => {:where => /^(?:anywhere|everywhere|[io]n \S+)$/},
1013   :auth_path => ':edit::other:'
1014
1015 auth.map "deny :user from doing *stuff [*where]",
1016   :action => 'auth_deny',
1017   :requirements => {:where => /^(?:anywhere|everywhere|[io]n \S+)$/},
1018   :auth_path => ':edit::other:'
1019
1020 auth.default_auth("user", true)
1021 auth.default_auth("edit::other", false)
1022
1023 auth.map "whoami",
1024   :action => 'auth_whoami',
1025   :auth_path => '!*!'
1026
1027 auth.map "who is :user",
1028   :action => 'auth_whois',
1029   :auth_path => '!*!'
1030
1031 auth.map "auth :password",
1032   :action => 'auth_auth',
1033   :public => false,
1034   :auth_path => '!login!'
1035
1036 auth.map "login :botuser :password",
1037   :action => 'auth_login',
1038   :public => false,
1039   :defaults => { :password => nil },
1040   :auth_path => '!login!'
1041
1042 auth.map "login :botuser",
1043   :action => 'auth_login',
1044   :auth_path => '!login!'
1045
1046 auth.map "login",
1047   :action => 'auth_autologin',
1048   :auth_path => '!login!'
1049
1050 auth.map "permissions set *args",
1051   :action => 'auth_edit_perm',
1052   :auth_path => ':edit::set:'
1053
1054 auth.map "permissions reset *args",
1055   :action => 'auth_edit_perm',
1056   :auth_path => ':edit::set:'
1057
1058 auth.map "permissions view [for :user]",
1059   :action => 'auth_view_perm',
1060   :auth_path => '::'
1061
1062 auth.map "permissions search *pattern",
1063   :action => 'auth_search_perm',
1064   :auth_path => '::'
1065
1066 auth.default_auth('*', false)
1067