2014-09-05 13:02:13 +00:00
|
|
|
--[[
|
|
|
|
This code is derived from the LAPHLibs which can be found here:
|
|
|
|
|
|
|
|
https://github.com/Wiladams/LAPHLibs
|
|
|
|
--]]
|
|
|
|
local util = require("ffi/util")
|
|
|
|
local luxl = require("luxl")
|
|
|
|
local ffi = require("ffi")
|
|
|
|
|
|
|
|
local OPDSParser = {}
|
|
|
|
|
|
|
|
local unescape_map = {
|
|
|
|
["lt"] = "<",
|
|
|
|
["gt"] = ">",
|
|
|
|
["amp"] = "&",
|
|
|
|
["quot"] = '"',
|
|
|
|
["apos"] = "'"
|
|
|
|
}
|
|
|
|
|
2016-02-16 02:08:04 +00:00
|
|
|
local gsub = string.gsub
|
2014-09-05 13:02:13 +00:00
|
|
|
local function unescape(str)
|
|
|
|
return gsub(str, '(&(#?)([%d%a]+);)', function(orig, n, s)
|
2016-12-27 10:00:13 +00:00
|
|
|
if unescape_map[s] then
|
|
|
|
return unescape_map[s]
|
|
|
|
elseif n == "#" then -- unescape unicode
|
|
|
|
return util.unichar(tonumber(s))
|
|
|
|
else
|
|
|
|
return orig
|
|
|
|
end
|
2014-09-05 13:02:13 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2016-12-27 10:00:13 +00:00
|
|
|
function OPDSParser:createFlatXTable(xlex, curr_element)
|
|
|
|
curr_element = curr_element or {}
|
2014-09-05 13:02:13 +00:00
|
|
|
|
2016-12-27 10:00:13 +00:00
|
|
|
local curr_attr_name;
|
|
|
|
local attr_count = 0;
|
2014-09-05 13:02:13 +00:00
|
|
|
|
|
|
|
-- start reading the thing
|
2015-04-27 00:49:27 +00:00
|
|
|
local txt
|
2014-09-05 13:02:13 +00:00
|
|
|
for event, offset, size in xlex:Lexemes() do
|
|
|
|
txt = ffi.string(xlex.buf + offset, size)
|
2016-12-27 10:00:13 +00:00
|
|
|
if event == luxl.EVENT_START then
|
|
|
|
if txt ~= "xml" then
|
|
|
|
-- does current element already have something
|
|
|
|
-- with this name?
|
|
|
|
|
|
|
|
-- if it does, if it's a table, add to it
|
|
|
|
-- if it doesn't, then add a table
|
|
|
|
local tab = self:createFlatXTable(xlex)
|
|
|
|
if txt == "entry" or txt == "link" then
|
|
|
|
if curr_element[txt] == nil then
|
|
|
|
curr_element[txt] = {}
|
|
|
|
end
|
|
|
|
table.insert(curr_element[txt], tab)
|
|
|
|
elseif type(curr_element) == "table" then
|
|
|
|
curr_element[txt] = tab
|
2014-09-05 13:02:13 +00:00
|
|
|
end
|
|
|
|
end
|
2016-12-27 10:00:13 +00:00
|
|
|
elseif event == luxl.EVENT_ATTR_NAME then
|
|
|
|
curr_attr_name = unescape(txt)
|
|
|
|
elseif event == luxl.EVENT_ATTR_VAL then
|
|
|
|
curr_element[curr_attr_name] = unescape(txt)
|
|
|
|
attr_count = attr_count + 1;
|
|
|
|
curr_attr_name = nil
|
|
|
|
elseif event == luxl.EVENT_TEXT then
|
|
|
|
curr_element = unescape(txt)
|
|
|
|
elseif event == luxl.EVENT_END then
|
|
|
|
return curr_element
|
2014-09-05 13:02:13 +00:00
|
|
|
end
|
|
|
|
end
|
2016-12-27 10:00:13 +00:00
|
|
|
return curr_element
|
2014-09-05 13:02:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function OPDSParser:parse(text)
|
|
|
|
-- luxl cannot properly handle xml comments and we need first remove them
|
|
|
|
text = text:gsub("<!--.--->", "")
|
|
|
|
-- luxl prefers <br />, other two forms are valid in HTML,
|
|
|
|
-- but will kick the ass of luxl
|
|
|
|
text = text:gsub("<br>", "<br />")
|
|
|
|
text = text:gsub("<br/>", "<br />")
|
|
|
|
local xlex = luxl.new(text, #text)
|
|
|
|
return self:createFlatXTable(xlex)
|
|
|
|
end
|
|
|
|
|
|
|
|
return OPDSParser
|