2017-09-09 17:22:14 +02:00
|
|
|
local tables
|
|
|
|
local streams
|
|
|
|
local urls
|
|
|
|
local log
|
|
|
|
|
2017-09-09 18:24:00 +02:00
|
|
|
local function noPlaylist(reason)
|
|
|
|
log.err('Failed to create playlist:', reason)
|
|
|
|
return {}
|
|
|
|
end
|
|
|
|
|
2017-09-09 17:22:14 +02:00
|
|
|
local Object = {}
|
|
|
|
|
|
|
|
function Object:new(overrides)
|
|
|
|
return setmetatable(overrides or {}, {__index = self})
|
|
|
|
end
|
|
|
|
|
|
|
|
local Parser = Object:new()
|
|
|
|
local VideoParser = Parser:new()
|
|
|
|
local LiveStreamParser = Parser:new()
|
|
|
|
|
|
|
|
local parsers = {
|
|
|
|
LiveStreamParser:new{urlPattern = 'mediaklikk%.hu/m1%-elo'},
|
|
|
|
LiveStreamParser:new{urlPattern = 'mediaklikk%.hu/m2%-elo'},
|
|
|
|
LiveStreamParser:new{urlPattern = 'mediaklikk%.hu/m4%-elo'},
|
|
|
|
LiveStreamParser:new{urlPattern = 'mediaklikk%.hu/m5%-elo'},
|
|
|
|
LiveStreamParser:new{urlPattern = 'mediaklikk%.hu/duna%-elo'},
|
2017-09-10 15:47:23 +02:00
|
|
|
LiveStreamParser:new{urlPattern = 'mediaklikk%.hu/duna%-world%-elo'},
|
|
|
|
VideoParser:new{urlPattern = 'hirado%.hu'},
|
|
|
|
VideoParser:new{urlPattern = 'm4sport%.hu'},
|
|
|
|
VideoParser:new{urlPattern = 'mediaklikk%.hu'}
|
2017-09-09 17:22:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function probe()
|
|
|
|
return tables.some(Parser.probe, parsers)
|
|
|
|
end
|
|
|
|
|
|
|
|
function parse()
|
|
|
|
local parser = tables.find(Parser.probe, parsers)
|
|
|
|
if not parser then
|
|
|
|
return noPlaylist('could not find Parser')
|
|
|
|
end
|
|
|
|
|
|
|
|
return parser:parse()
|
|
|
|
end
|
|
|
|
|
|
|
|
local protocol = vlc.access .. '://'
|
|
|
|
|
|
|
|
function Parser:probe()
|
|
|
|
return vlc.access:match('https?') and vlc.path:match(self.urlPattern)
|
|
|
|
end
|
|
|
|
|
|
|
|
function Parser:parse()
|
|
|
|
local pageSource = streams.readAll(vlc)
|
|
|
|
|
2017-09-10 01:12:14 +02:00
|
|
|
log.dbg('Extracting Player URLs...')
|
2017-09-09 17:22:14 +02:00
|
|
|
|
2017-09-10 01:12:14 +02:00
|
|
|
local playerUrls = self:playerUrls(pageSource)
|
|
|
|
if #playerUrls == 0 then
|
|
|
|
return noPlaylist('could not find any Player URL')
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
|
|
|
|
2017-09-10 01:12:14 +02:00
|
|
|
log.dbg('Player URLs:', unpack(playerUrls))
|
|
|
|
log.dbg('Extracting Paths...')
|
2017-09-09 17:22:14 +02:00
|
|
|
|
2017-09-10 01:12:14 +02:00
|
|
|
local function findPath(playerUrl)
|
|
|
|
local path = self:path(playerUrl)
|
|
|
|
if not path then
|
|
|
|
log.warn('could not extract Path from', playerUrl)
|
|
|
|
end
|
|
|
|
|
|
|
|
return path
|
|
|
|
end
|
|
|
|
|
|
|
|
local paths = tables.map(findPath, playerUrls)
|
|
|
|
if #paths == 0 then
|
|
|
|
return noPlaylist('could not find any Path')
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
|
|
|
|
2017-09-10 01:12:14 +02:00
|
|
|
log.dbg('Paths:', unpack(paths))
|
|
|
|
|
|
|
|
local function playListItem(path)
|
|
|
|
return self:playListItem(path, pageSource)
|
|
|
|
end
|
|
|
|
|
|
|
|
return tables.map(playListItem, paths)
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function Parser:path(playerUrl)
|
|
|
|
local playerPageSource = streams.readAll(vlc.stream(playerUrl))
|
|
|
|
local path = playerPageSource:match('"file": *"([^"]+)"')
|
|
|
|
if path then
|
|
|
|
return urls.normalize(path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 01:12:14 +02:00
|
|
|
function VideoParser:playerUrls(pageSource)
|
|
|
|
local function playerUrl(token)
|
2017-09-09 17:22:14 +02:00
|
|
|
return protocol .. 'player.mediaklikk.hu/player/player-external-vod-full.php?hls=1&token=' .. token
|
|
|
|
end
|
2017-09-10 01:12:14 +02:00
|
|
|
|
|
|
|
local tokens = tables.collect(pageSource:gmatch('"token":"([^"]+)"'))
|
|
|
|
return tables.map(playerUrl, tokens)
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function VideoParser:playListItem(path, pageSource)
|
|
|
|
local function findProperty(property)
|
|
|
|
return pageSource:match('<meta property="og:' .. property .. '" content="([^"]+)"/>')
|
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
|
|
|
path = path,
|
|
|
|
title = findProperty('title'),
|
|
|
|
description = findProperty('description'),
|
|
|
|
arturl = findProperty('image'),
|
|
|
|
url = findProperty('url')
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2017-09-10 01:12:14 +02:00
|
|
|
function LiveStreamParser:playerUrls(pageSource)
|
2017-09-09 17:22:14 +02:00
|
|
|
local streamId = pageSource:match('"streamId":"([^"]+)"')
|
2017-09-10 01:12:14 +02:00
|
|
|
if not streamId then
|
|
|
|
return {}
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
2017-09-10 01:12:14 +02:00
|
|
|
|
|
|
|
return {protocol .. 'player.mediaklikk.hu/playernew/player.php?noflash=yes&video=' .. streamId}
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function LiveStreamParser:playListItem(path, pageSource)
|
|
|
|
return {
|
|
|
|
path = path,
|
|
|
|
title = pageSource:match('<title>(.+)</title>'),
|
|
|
|
url = protocol .. vlc.path
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
tables = {
|
|
|
|
find = function(predicate, values)
|
|
|
|
for key, value in ipairs(values) do
|
|
|
|
if predicate(value, key, values) then
|
|
|
|
return value, key
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
|
|
|
|
some = function(predicate, values)
|
|
|
|
local value, key = tables.find(predicate, values)
|
|
|
|
return key
|
|
|
|
end,
|
|
|
|
|
|
|
|
collect = function(iterator, state, initialValue)
|
|
|
|
local result = {}
|
|
|
|
for value in iterator, state, initialValue do
|
|
|
|
table.insert(result, value)
|
|
|
|
end
|
|
|
|
return result
|
2017-09-10 01:12:14 +02:00
|
|
|
end,
|
|
|
|
|
|
|
|
map = function(transform, values)
|
|
|
|
local result = {}
|
|
|
|
for key, value in ipairs(values) do
|
|
|
|
result[key] = transform(value, i, values)
|
|
|
|
end
|
|
|
|
return result
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
streams = {
|
|
|
|
lines = function(s)
|
|
|
|
return s.readline, s, nil
|
|
|
|
end,
|
|
|
|
|
|
|
|
readAll = function(s)
|
|
|
|
return table.concat(tables.collect(streams.lines(s)), '\n')
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
urls = {
|
|
|
|
normalizations = {
|
|
|
|
{pattern = '\\(.)', replacement = '%1'},
|
|
|
|
{pattern = '^//', replacement = protocol}
|
|
|
|
},
|
|
|
|
|
|
|
|
normalize = function(url)
|
|
|
|
for i, normalization in ipairs(urls.normalizations) do
|
|
|
|
url = url:gsub(normalization.pattern, normalization.replacement)
|
|
|
|
end
|
|
|
|
return url
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
local function logger(vlcLog)
|
|
|
|
return function(...)
|
2017-09-09 18:31:02 +02:00
|
|
|
vlcLog(table.concat({'mediaklikk-video:', ...}, ' '))
|
2017-09-09 17:22:14 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
log = {
|
|
|
|
dbg = logger(vlc.msg.dbg),
|
|
|
|
warn = logger(vlc.msg.warn),
|
|
|
|
err = logger(vlc.msg.err),
|
|
|
|
info = logger(vlc.msg.info)
|
|
|
|
}
|