diff options
author | Mark Kretschmann <markey@web.de> | 2006-07-31 14:22:28 +0000 |
---|---|---|
committer | Mark Kretschmann <markey@web.de> | 2006-07-31 14:22:28 +0000 |
commit | 808c62190d6ed88f29df92871f810177b540c8a1 (patch) | |
tree | d3f5e3c4122e9eb06f2fd58b3cc859a63905d7e8 | |
parent | d7765b20aeb056fc7e637ed7af35f53de27d767c (diff) |
Initial import of the "time" plugin by Ian Monroe. Allows to view the local time of a given user.
-rw-r--r-- | data/rbot/plugins/time.rb | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/data/rbot/plugins/time.rb b/data/rbot/plugins/time.rb new file mode 100644 index 00000000..f13f5a80 --- /dev/null +++ b/data/rbot/plugins/time.rb @@ -0,0 +1,106 @@ +# Time Zone Plugin for rbot +# (c) 2006 Ian Monroe <ian@monroe.nu> +# Licensed under MIT License. + +require 'tzinfo' + +class TimePlugin < Plugin + + def help(plugin, topic="") + "time <time zone> to get the local time of a certain location. <time zone> can be <Continent/City> or <two character country code>. time <nick> to see the local time of that person if their time zone is set. time admin set <nick> <time zone> to set the time zone for another user." + end + + def initialize + super + # this plugin only wants to store strings + class << @registry + def store(val) + val + end + def restore(val) + val + end + end + end + + def getTime(m, zone ) + if zone.length == 2 then #country code + zone.upcase! + zone = 'GB' if zone == 'UK' #country doesn't know its own name + begin + nationZones = TZInfo::Country.get(zone).zone_identifiers + if nationZones.size == 1 then + zone = nationZones[0] + else + m.reply "#{zone} has the cities of #{nationZones.join( ', ' )}." + end + rescue TZInfo::InvalidCountryCode + m.reply "#{zone} is not a valid country code." + end + end + ['/', '_'].each { |sp| + arr = Array.new + zone.split(sp).each{ |s| + s[0] = s[0,1].upcase + s[1, s.length] = s[1, s.length].downcase if sp == '/' + arr.push(s) } + zone = arr.join( sp ) + } + + TZInfo::Timezone.get( zone ).now + end + + def showTime(m, params) + zone = params[:where].join('_') + if params[:where].size > 0 then + begin + m.reply "#{zone} - #{getTime( m, zone )}" + rescue TZInfo::InvalidTimezoneIdentifier + if @registry.has_key?( zone ) then + zone = @registry[ zone ] + m.reply "#{zone} - #{getTime( m, zone )}" + else + m.reply "#{zone} is an unknown time." + end + end + else + if @registry.has_key?( m.sourcenick) then + zone = @registry[ m.sourcenick ] + m.reply "#{m.sourcenick}: #{zone} - #{getTime( m, zone )}" + else + m.reply "#{m.sourcenick}: use time set <Continent/City> to set your timezone." + end + end + end + + def setUserZone( m, params ) + if params[:where].size > 0 then + s = setZone( m, m.sourcenick, params[:where].join('_') ) + else + m.reply "Requires Continent/City or country code" + end + end + + def setAdminZone( m, params ) + if params[:who] and params[:where].size > 0 then + s = setZone( m, params[:who], params[:where].join('_') ) + else + m.reply 'Requires a nick and the Continent/City or country code.' + end + end + + def setZone( m, user, zone ) + begin + getTime( m, zone ) + rescue TZInfo::InvalidTimezoneIdentifier + m.reply "#{zone} is an invalid timezone. Format is Continent/City or a two character country code." + return + end + @registry[ user ] = zone + end +end + +plugin = TimePlugin.new +plugin.map 'time set *where', :action=> 'setUserZone', :defaults => {:where => false} +plugin.map 'time admin set :who *where', :action=> 'setAdminZone', :defaults => {:where => false, :who=>false}, :auth=> 'timeadmin' +plugin.map 'time *where', :action => 'showTime', :defaults => {:where => false} |