2016-04-11 06:04:47 +02:00
|
|
|
local time = {}
|
|
|
|
|
|
|
|
local HTTPS = require('ssl.https')
|
|
|
|
local JSON = require('cjson')
|
|
|
|
local bindings = require('bindings')
|
|
|
|
local utilities = require('utilities')
|
|
|
|
|
|
|
|
time.command = 'time <location>'
|
|
|
|
time.doc = [[```
|
2016-01-08 14:44:37 +01:00
|
|
|
/time <location>
|
|
|
|
Returns the time, date, and timezone for the given location.
|
|
|
|
```]]
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
function time:init()
|
|
|
|
time.triggers = utilities.triggers(self.info.username):t('time', true).table
|
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
function time:action(msg)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-08 23:12:02 +02:00
|
|
|
local input = utilities.input(msg.text)
|
2015-07-03 00:15:52 +02:00
|
|
|
if not input then
|
2015-11-25 03:22:04 +01:00
|
|
|
if msg.reply_to_message and msg.reply_to_message.text then
|
|
|
|
input = msg.reply_to_message.text
|
|
|
|
else
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendMessage(self, msg.chat.id, time.doc, true, msg.message_id, true)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local coords = utilities.get_coords(self, input)
|
2015-11-25 03:22:04 +01:00
|
|
|
if type(coords) == 'string' then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, coords)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2015-07-15 08:15:23 +02:00
|
|
|
local url = 'https://maps.googleapis.com/maps/api/timezone/json?location=' .. coords.lat ..','.. coords.lon .. '×tamp='..os.time()
|
|
|
|
|
2015-07-03 00:15:52 +02:00
|
|
|
local jstr, res = HTTPS.request(url)
|
|
|
|
if res ~= 200 then
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self, msg, self.config.errors.connection)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
2015-07-15 08:15:23 +02:00
|
|
|
|
2015-07-03 00:15:52 +02:00
|
|
|
local jdat = JSON.decode(jstr)
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
local timestamp = os.time() + jdat.rawOffset + jdat.dstOffset + self.config.time_offset
|
2015-07-15 08:15:23 +02:00
|
|
|
local utcoff = (jdat.rawOffset + jdat.dstOffset) / 3600
|
|
|
|
if utcoff == math.abs(utcoff) then
|
|
|
|
utcoff = '+' .. utcoff
|
|
|
|
end
|
|
|
|
local message = os.date('%I:%M %p\n', timestamp) .. os.date('%A, %B %d, %Y\n', timestamp) .. jdat.timeZoneName .. ' (UTC' .. utcoff .. ')'
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
bindings.sendReply(self.msg, message)
|
2015-07-03 00:15:52 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-11 06:04:47 +02:00
|
|
|
return time
|