2016-04-10 21:04:47 -07:00
|
|
|
local translate = {}
|
|
|
|
|
|
|
|
local HTTPS = require('ssl.https')
|
|
|
|
local URL = require('socket.url')
|
2016-04-15 19:07:23 +00:00
|
|
|
local JSON = require('dkjson')
|
2016-06-07 00:31:34 -04:00
|
|
|
local utilities = require('otouto.utilities')
|
2016-04-10 21:04:47 -07:00
|
|
|
|
|
|
|
translate.command = 'translate [text]'
|
2016-05-26 20:28:44 -07:00
|
|
|
|
|
|
|
function translate:init(config)
|
|
|
|
translate.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('translate', true):t('tl', true).table
|
|
|
|
translate.doc = [[```
|
|
|
|
]]..config.cmd_pat..[[translate [text]
|
2016-01-08 08:44:37 -05:00
|
|
|
Translates input or the replied-to message into the bot's language.
|
|
|
|
```]]
|
2016-04-10 21:04:47 -07:00
|
|
|
end
|
2015-07-20 19:29:40 -04:00
|
|
|
|
2016-05-26 17:26:30 -07:00
|
|
|
function translate:action(msg, config)
|
2015-07-20 19:29:40 -04:00
|
|
|
|
2016-04-08 14:12:02 -07:00
|
|
|
local input = utilities.input(msg.text)
|
2015-11-24 21:22:04 -05:00
|
|
|
if not input then
|
|
|
|
if msg.reply_to_message and msg.reply_to_message.text then
|
|
|
|
input = msg.reply_to_message.text
|
|
|
|
else
|
2016-05-29 13:08:39 -04:00
|
|
|
utilities.send_message(self, msg.chat.id, translate.doc, true, msg.message_id, true)
|
2015-11-24 21:22:04 -05:00
|
|
|
return
|
|
|
|
end
|
2015-07-20 19:29:40 -04:00
|
|
|
end
|
2016-02-21 00:21:48 -05:00
|
|
|
|
2016-05-26 17:26:30 -07:00
|
|
|
local url = 'https://translate.yandex.net/api/v1.5/tr.json/translate?key=' .. config.yandex_key .. '&lang=' .. config.lang .. '&text=' .. URL.escape(input)
|
2016-02-21 00:21:48 -05:00
|
|
|
|
2015-11-24 21:22:04 -05:00
|
|
|
local str, res = HTTPS.request(url)
|
2015-07-20 19:29:40 -04:00
|
|
|
if res ~= 200 then
|
2016-05-26 17:26:30 -07:00
|
|
|
utilities.send_reply(self, msg, config.errors.connection)
|
2015-11-24 21:22:04 -05:00
|
|
|
return
|
2015-07-20 19:29:40 -04:00
|
|
|
end
|
2016-02-21 00:21:48 -05:00
|
|
|
|
2016-02-13 16:37:59 -03:00
|
|
|
local jdat = JSON.decode(str)
|
|
|
|
if jdat.code ~= 200 then
|
2016-05-26 17:26:30 -07:00
|
|
|
utilities.send_reply(self, msg, config.errors.connection)
|
2016-02-13 16:37:59 -03:00
|
|
|
return
|
|
|
|
end
|
2016-02-21 00:21:48 -05:00
|
|
|
|
2016-02-13 16:37:59 -03:00
|
|
|
local output = jdat.text[1]
|
2016-04-28 21:12:04 -07:00
|
|
|
output = '*Translation:*\n"' .. utilities.md_escape(output) .. '"'
|
2015-07-20 19:29:40 -04:00
|
|
|
|
2016-05-29 13:08:39 -04:00
|
|
|
utilities.send_reply(self, msg.reply_to_message or msg, output, true)
|
2015-07-20 19:29:40 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-04-10 21:04:47 -07:00
|
|
|
return translate
|