56 lines
1.3 KiB
Lua
Executable File
56 lines
1.3 KiB
Lua
Executable File
local imdb = {}
|
|
|
|
local HTTP = require('socket.http')
|
|
local URL = require('socket.url')
|
|
local JSON = require('dkjson')
|
|
local bindings = require('bindings')
|
|
local utilities = require('utilities')
|
|
|
|
imdb.command = 'imdb <query>'
|
|
imdb.doc = [[```
|
|
/imdb <query>
|
|
Returns an IMDb entry.
|
|
```]]
|
|
|
|
function imdb:init()
|
|
imdb.triggers = utilities.triggers(self.info.username):t('imdb', true).table
|
|
end
|
|
|
|
function imdb:action(msg)
|
|
|
|
local input = utilities.input(msg.text)
|
|
if not input then
|
|
if msg.reply_to_message and msg.reply_to_message.text then
|
|
input = msg.reply_to_message.text
|
|
else
|
|
bindings.sendMessage(self, msg.chat.id, imdb.doc, true, msg.message_id, true)
|
|
return
|
|
end
|
|
end
|
|
|
|
local url = 'http://www.omdbapi.com/?t=' .. URL.escape(input)
|
|
|
|
local jstr, res = HTTP.request(url)
|
|
if res ~= 200 then
|
|
bindings.sendReply(self, msg, self.config.errors.connection)
|
|
return
|
|
end
|
|
|
|
local jdat = JSON.decode(jstr)
|
|
|
|
if jdat.Response ~= 'True' then
|
|
bindings.sendReply(self, msg, self.config.errors.results)
|
|
return
|
|
end
|
|
|
|
local output = '[' .. jdat.Title .. '](http://imdb.com/title/'
|
|
output = output .. jdat.imdbID .. ') ('.. jdat.Year ..')\n'
|
|
output = output .. jdat.imdbRating ..'/10 | '.. jdat.Runtime ..' | '.. jdat.Genre ..'\n'
|
|
output = output .. jdat.Plot
|
|
|
|
bindings.sendMessage(self, msg.chat.id, output, true, nil, true)
|
|
|
|
end
|
|
|
|
return imdb
|