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/miku/plugins/plex.lua

154 lines
3.4 KiB
Lua
Raw Normal View History

2016-08-17 18:44:16 +02:00
local plex = {}
function plex:init(config)
plex.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('plex', true).table
plex.doc = '\n*/plex* _<Suchbegriff>_'
end
plex.command = 'plex <Suchbegriff>'
local makeOurDate = function(dateString)
local pattern = "(%d+)%-(%d+)%-(%d+)"
local year, month, day = dateString:match(pattern)
if month == "00" then
return year
elseif day == "00" then
return month..'.'..year
else
return day..'.'..month..'.'..year
end
end
local DESC_LENTH = 400
local plex_token = cred_data.plex_token
function plex:get_plex(query)
local baseurl = 'http://kyouko.local:32400' --replace it with yours
local response_body = {}
local request_constructor = {
url = baseurl..'/search?query='..query..'&X-Plex-Token='..plex_token,
method = "GET",
sink = ltn12.sink.table(response_body),
headers = {
Accept = "application/json"
}
}
local ok, response_code, response_headers, response_status_line = http.request(request_constructor)
if not ok then return 'NOTOK' end
local data = json.decode(table.concat(response_body))._children[1]
local title = data.title
if not title then return nil end
if data.tagline then
tag = '\n"'..data.tagline..'"'
else
tag = ''
end
if data.parentIndex then
season = 'S'..convertNumbers(data.parentIndex)
else
season = ''
end
if data.index then
episode = 'E'..convertNumbers(data.index)
else
episode = ''
end
if data.grandparentTitle then
from = ' (aus '..data.grandparentTitle..' ['..string.gsub(season..episode, 'S0E', 'SP')..']'..') '
else
from = ''
end
if data.originalTitle then
origtitle = '\nOriginal: '..data.originalTitle
else
origtitle = ''
end
if data.studio then
studio = '\nStudio: '..data.studio
else
studio = ''
end
if data.originallyAvailableAt then
date = '\nAusstrahlung: '..makeOurDate(data.originallyAvailableAt)
elseif data.year then
date = '\nAusstrahlung: '..data.year
else
date = ''
end
if data.leafCount then
episodes = ' ('..data.leafCount..' Episoden) '
else
episodes = ''
end
if data.contentRating then
fsk = '\nAltersfreigabe: '..gerRating(data.contentRating)
else
fsk = ''
end
if data.duration then
local totalseconds = math.floor(data.duration / 1000)
duration = '\nLänge: '..makeHumanTime(totalseconds)
else
duration = ''
end
if data.rating then
rating = '\nBewertung: '..data.rating
else
rating = ''
end
if data.summary then
desc = '\n\n'..string.sub(unescape(data.summary:gsub("%b<>", "")), 1, DESC_LENTH)..'...'
else
desc = ''
end
if data.thumb then
pic = baseurl..data.thumb
else
pic = nil
end
local text = title..tag..from..origtitle..studio..date..episodes..fsk..duration..rating..desc..'\n'
return text, pic
end
function plex:action(msg, config)
local input = utilities.input_from_msg(msg)
if not input then
utilities.send_reply(self, msg. plex.doc, true)
return
end
local query = string.gsub(URL.escape(input), '&', '+')
local text, pic = plex:get_plex(query)
if not text then
utilities.send_reply(self, msg, config.errors.results)
return
elseif text == 'NOTOK' then
utilities.send_reply(self, msg, config.errors.connection)
return
end
if pic then
utilities.send_typing(self, receiver, 'upload_photo')
2016-08-17 21:40:13 +02:00
local file = download_to_file(pic, 'plex.png')
utilities.send_photo(self, msg.chat.id, file)
2016-08-17 18:44:16 +02:00
end
2016-08-17 21:40:13 +02:00
utilities.send_reply(self, msg, text)
2016-08-17 18:44:16 +02:00
end
2016-08-17 21:40:13 +02:00
return plex