9f760114bd
All help messages and many other things moved from markdown to html. Eventually, I'd like only things made from user input to use markdown. cats.lua, rmspic.lua, and dilbert.lua moved to sendPhoto with URL. xkcd.lua and apod.lua not moved to retain formatting. Probably a lot of other stuff that I forget about. I should commit more often.
48 lines
1.3 KiB
Lua
48 lines
1.3 KiB
Lua
local imdb = {}
|
|
|
|
local HTTP = require('socket.http')
|
|
local URL = require('socket.url')
|
|
local JSON = require('dkjson')
|
|
local utilities = require('otouto.utilities')
|
|
|
|
imdb.command = 'imdb <query>'
|
|
|
|
function imdb:init(config)
|
|
imdb.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('imdb', true).table
|
|
imdb.doc = config.cmd_pat .. 'imdb <query> \nReturns an IMDb entry.'
|
|
end
|
|
|
|
function imdb:action(msg, config)
|
|
|
|
local input = utilities.input_from_msg(msg)
|
|
if not input then
|
|
utilities.send_reply(msg, imdb.doc, 'html')
|
|
return
|
|
end
|
|
|
|
local url = 'http://www.omdbapi.com/?t=' .. URL.escape(input)
|
|
|
|
local jstr, res = HTTP.request(url)
|
|
if res ~= 200 then
|
|
utilities.send_reply(msg, config.errors.connection)
|
|
return
|
|
end
|
|
|
|
local jdat = JSON.decode(jstr)
|
|
|
|
if jdat.Response ~= 'True' then
|
|
utilities.send_reply(msg, config.errors.results)
|
|
return
|
|
end
|
|
|
|
local output = '*' .. jdat.Title .. ' ('.. jdat.Year ..')*\n'
|
|
output = output .. jdat.imdbRating ..'/10 | '.. jdat.Runtime ..' | '.. jdat.Genre ..'\n'
|
|
output = output .. '_' .. jdat.Plot .. '_\n'
|
|
output = output .. '[Read more.](http://imdb.com/title/' .. jdat.imdbID .. ')'
|
|
|
|
utilities.send_message(msg.chat.id, output, true, nil, true)
|
|
|
|
end
|
|
|
|
return imdb
|