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/imdb.lua

46 lines
1.0 KiB
Lua
Raw Normal View History

2015-07-03 00:15:52 +02:00
local PLUGIN = {}
PLUGIN.doc = [[
2015-07-08 09:38:04 +02:00
/imdb <movie | TV series>
2015-07-03 00:15:52 +02:00
This function retrieves the IMDb info for a given film or television series, including the year, genre, imdb rating, runtime, and a summation of the plot.
]]
PLUGIN.triggers = {
2015-07-08 09:38:04 +02:00
'^/imdb'
2015-07-03 00:15:52 +02:00
}
function PLUGIN.action(msg)
local input = get_input(msg.text)
if not input then
if msg.reply_to_message then
msg = msg.reply_to_message
input = msg.text
else
return send_msg(msg, PLUGIN.doc)
end
2015-07-03 00:15:52 +02:00
end
2015-09-22 01:34:02 +02:00
local url = 'http://www.omdbapi.com/?t=' .. URL.escape(input)
2015-07-03 00:15:52 +02:00
local jstr, res = HTTP.request(url)
local jdat = JSON.decode(jstr)
if res ~= 200 or not jdat then
return send_msg(msg, config.locale.errors.connection)
2015-07-03 00:15:52 +02:00
end
if jdat.Response ~= 'True' then
return send_msg(msg, jdat.Error)
end
local message = jdat.Title ..' ('.. jdat.Year ..')\n'
message = message .. jdat.imdbRating ..' | '.. jdat.Runtime ..' | '.. jdat.Genre ..'\n'
message = message .. jdat.Plot .. '\n'
message = message .. 'http://imdb.com/title/' .. jdat.imdbID
send_msg(msg, message)
end
return PLUGIN