This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/time.lua

63 lines
1.6 KiB
Lua
Raw Normal View History

local time = {}
local HTTPS = require('ssl.https')
local JSON = require('dkjson')
local utilities = require('utilities')
time.command = 'time <location>'
time.doc = [[```
/time <location>
Returns the time, date, and timezone for the given location.
```]]
2015-07-03 00:15:52 +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
function time:action(msg)
2015-07-03 00:15:52 +02:00
local input = utilities.input(msg.text)
2015-07-03 00:15:52 +02:00
if not input then
if msg.reply_to_message and msg.reply_to_message.text then
input = msg.reply_to_message.text
else
utilities.send_message(self, msg.chat.id, time.doc, true, msg.message_id, true)
return
end
2015-07-03 00:15:52 +02:00
end
local coords = utilities.get_coords(self, input)
if type(coords) == 'string' then
utilities.send_reply(self, msg, coords)
return
2015-07-03 00:15:52 +02:00
end
local now = os.time()
local utc = os.time(os.date("!*t", now))
local url = 'https://maps.googleapis.com/maps/api/timezone/json?location=' .. coords.lat ..','.. coords.lon .. '&timestamp='..utc
2015-07-03 00:15:52 +02:00
local jstr, res = HTTPS.request(url)
if res ~= 200 then
utilities.send_reply(self, msg, self.config.errors.connection)
return
2015-07-03 00:15:52 +02:00
end
2015-07-03 00:15:52 +02:00
local jdat = JSON.decode(jstr)
local timestamp = now + jdat.rawOffset + jdat.dstOffset
local utcoff = (jdat.rawOffset + jdat.dstOffset) / 3600
if utcoff == math.abs(utcoff) then
utcoff = '+'.. utilities.pretty_float(utcoff)
else
utcoff = utilities.pretty_float(utcoff)
end
2016-04-29 06:36:35 +02:00
local output = os.date('!%I:%M %p\n', timestamp) .. os.date('!%A, %B %d, %Y\n', timestamp) .. jdat.timeZoneName .. ' (UTC' .. utcoff .. ')'
output = '```\n' .. output .. '\n```'
2015-07-03 00:15:52 +02:00
utilities.send_reply(self, msg, output, true)
2015-07-03 00:15:52 +02:00
end
return time