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
|
# 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}
|