From 98066bb754014b343dea272ebf6ec22babf9e8bf Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Fri, 11 Aug 2006 08:49:10 +0000 Subject: auth.allow? method now informs a user when they don't have permissions --- lib/rbot/botuser.rb | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/rbot/botuser.rb b/lib/rbot/botuser.rb index cc9e01a5..7daaf66e 100644 --- a/lib/rbot/botuser.rb +++ b/lib/rbot/botuser.rb @@ -193,6 +193,11 @@ module Irc str << ">" end + # In strings + def to_s + @username + end + # Convert into a hash def to_hash { @@ -652,9 +657,18 @@ module Irc raise "Could not check permission for user #{user.inspect} to run #{cmdtxt.inspect} on #{chan.inspect}" end - # Checks if command _cmd_ is allowed to User _user_ on _chan_ + # Checks if command _cmd_ is allowed to User _user_ on _chan_, optionally + # telling if the user is authorized + # def allow?(cmdtxt, user, chan=nil) - permit?(user, cmdtxt, chan) + if permit?(user, cmdtxt, chan) + return true + else + # cmds = cmdtxt.split('::') + # @bot.say chan, "you don't have #{cmds.last} (#{cmds.first}) permissions here" if chan + @bot.say chan, "#{user}, you don't have '#{cmdtxt}' permissions here" if chan + return false + end end end -- cgit v1.2.3