forked from zh/timeapi
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtimeapi.rb
164 lines (145 loc) · 3.29 KB
/
timeapi.rb
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
require 'rubygems'
require 'sinatra'
require 'chronic'
require 'date'
require 'time'
require 'active_support'
require 'cgi'
require 'json'
module TimeAPI
ZoneOffset = {
'A' => +1,
'ADT' => -3,
'AKDT' => -8,
'AKST' => -9,
'AST' => -4,
'B' => +2,
'BST' => +1,
'C' => +3,
'CDT' => -5,
'CEDT' => +2,
'CEST' => +2,
'CET' => +1,
'CST' => -6,
'D' => +4,
'E' => +5,
'EDT' => -4,
'EEDT' => +3,
'EEST' => +3,
'EET' => +2,
'EST' => -5,
'F' => +6,
'G' => +7,
'GMT' => 0,
'H' => +8,
'HADT' => -9,
'HAST' => -10,
'I' => +9,
'IST' => +1,
'K' => +10,
'L' => +11,
'M' => +12,
'MDT' => -6,
'MSD' => +4,
'MSK' => +3,
'MST' => -7,
'N' => -1,
'O' => -2,
'P' => -3,
'PDT' => -7,
'PST' => -8,
'Q' => -4,
'R' => -5,
'S' => -6,
'T' => -7,
'U' => -8,
'UTC' => 0,
'V' => -9,
'W' => -10,
'WEDT' => +1,
'WEST' => +1,
'WET' => 0,
'X' => -11,
'Y' => -12,
'Z' => 0
}
class App < Sinatra::Default
set :sessions, false
set :run, false
set :environment, ENV['RACK_ENV']
def callback
(request.params['callback'] || '').gsub(/[^a-zA-Z0-9_]/, '')
end
def prefers_json?
(request.accept.first || '').downcase == 'application/json'
end
def json?
prefers_json? \
|| /\.json$/.match((params[:zone] || '').downcase) \
|| /\.json$/.match((params[:time] || '').downcase)
end
def jsonp?
json? && callback.present?
end
def format
format = (request.params.select { |k,v| v.blank? }.first || [nil]).first \
|| request.params['format'] \
|| (jsonp? ? '%B %d, %Y %H:%M:%S GMT%z' : '')
CGI.unescape(format).gsub('\\', '%')
end
get '/' do
erb :index
end
get '/favicon.ico' do
''
end
get '/:zone/?' do
parse(params[:zone])
end
get '/:zone/:time/?' do
parse(params[:zone], params[:time])
end
def parse(zone='UTC', time='now')
zone = zone.gsub(/\.json$/, '').upcase
offset = ZoneOffset[zone] || Integer(zone)
time = time \
.gsub(/\.json$/, '') \
.gsub(/^at /, '') \
.gsub(/(\d)h/, '\1 hours') \
.gsub(/(\d)min/, '\1 minutes') \
.gsub(/(\d)m/, '\1 minutes') \
.gsub(/(\d)sec/, '\1 seconds') \
.gsub(/(\d)s/, '\1 seconds')
if prefers_json?
response.headers['Content-Type'] = 'application/json'
end
Time.zone = offset
Chronic.time_class = Time.zone
time = Chronic.parse(time).to_datetime.to_s(format)
time = json? ? { 'dateString' => time }.to_json : time
time = jsonp? ? callback + '(' + time + ');' : time
end
end
end
class Time
def to_datetime
# Convert seconds + microseconds into a fractional number of seconds
seconds = sec + Rational(usec, 10**6)
# Convert a UTC offset measured in minutes to one measured in a
# fraction of a day.
offset = Rational(utc_offset, 60 * 60 * 24)
DateTime.new(year, month, day, hour, min, seconds, offset)
end
end
class DateTime
def to_datetime
self
end
def to_s(format='')
unless format.empty?
strftime(format)
else
strftime
end
end
end