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]
|
|
|
|
|
2016-08-17 21:59:58 +02:00
|
|
|
local title = '<b>'..data.title..'</b>'
|
2016-08-17 18:44:16 +02:00
|
|
|
|
|
|
|
if data.tagline then
|
2016-08-17 21:59:58 +02:00
|
|
|
tag = ' - <i>'..data.tagline..'</i>'
|
2016-08-17 18:44:16 +02:00
|
|
|
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
|
2016-08-17 21:59:58 +02:00
|
|
|
origtitle = '\n<b>Original:</b> '..data.originalTitle
|
2016-08-17 18:44:16 +02:00
|
|
|
else
|
|
|
|
origtitle = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.studio then
|
2016-08-17 21:59:58 +02:00
|
|
|
studio = '\n<b>Studio:</b> '..data.studio
|
2016-08-17 18:44:16 +02:00
|
|
|
else
|
|
|
|
studio = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.originallyAvailableAt then
|
2016-08-17 21:59:58 +02:00
|
|
|
date = '\n<b>Ausstrahlung:</b> '..makeOurDate(data.originallyAvailableAt)
|
2016-08-17 18:44:16 +02:00
|
|
|
elseif data.year then
|
2016-08-17 21:59:58 +02:00
|
|
|
date = '\n<b>Ausstrahlung:</b> '..data.year
|
2016-08-17 18:44:16 +02:00
|
|
|
else
|
|
|
|
date = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.leafCount then
|
|
|
|
episodes = ' ('..data.leafCount..' Episoden) '
|
|
|
|
else
|
|
|
|
episodes = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.contentRating then
|
2016-08-17 21:59:58 +02:00
|
|
|
fsk = '\n<b>Altersfreigabe:</b> '..gerRating(data.contentRating)
|
2016-08-17 18:44:16 +02:00
|
|
|
else
|
|
|
|
fsk = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.duration then
|
|
|
|
local totalseconds = math.floor(data.duration / 1000)
|
2016-08-17 21:59:58 +02:00
|
|
|
duration = '\n<b>Länge:</b> '..makeHumanTime(totalseconds)
|
2016-08-17 18:44:16 +02:00
|
|
|
else
|
|
|
|
duration = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.rating then
|
2016-08-17 21:59:58 +02:00
|
|
|
rating = '\n<b>Bewertung:</b> '..data.rating
|
2016-08-17 18:44:16 +02:00
|
|
|
else
|
|
|
|
rating = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.summary then
|
2016-08-18 13:16:40 +02:00
|
|
|
if string.len(data.summary) > 400 then
|
|
|
|
desc = '\n\n<i>'..string.sub(unescape(data.summary:gsub("%b<>", "")), 1, DESC_LENTH)..'...</i>'
|
|
|
|
else
|
|
|
|
desc = '\n\n<i>'..unescape(data.summary)..'</i>'
|
|
|
|
end
|
2016-08-17 18:44:16 +02:00
|
|
|
else
|
|
|
|
desc = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
if data.thumb then
|
|
|
|
pic = baseurl..data.thumb
|
|
|
|
else
|
|
|
|
pic = nil
|
|
|
|
end
|
|
|
|
|
2016-08-18 13:16:40 +02:00
|
|
|
local text = title..tag..from..origtitle..studio..date..episodes..fsk..duration..rating..desc
|
2016-08-18 16:07:21 +02:00
|
|
|
|
|
|
|
if string.match(title, 'Local Network') then
|
|
|
|
return 'Nichts gefunden!'
|
|
|
|
else
|
|
|
|
return text, pic
|
|
|
|
end
|
|
|
|
|
2016-08-17 18:44:16 +02:00
|
|
|
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:59:58 +02:00
|
|
|
utilities.send_reply(self, msg, text, 'HTML')
|
2016-08-17 18:44:16 +02:00
|
|
|
end
|
|
|
|
|
2016-08-17 21:40:13 +02:00
|
|
|
return plex
|