Handle errors when parsing XML

This commit is contained in:
Shadowfacts 2022-04-11 16:25:08 -04:00
parent dc0f5964a9
commit a36dcc9535
3 changed files with 34 additions and 16 deletions

View File

@ -12,15 +12,22 @@ defmodule FeedParser.Parser.Atom do
def accepts(data, content_type) do def accepts(data, content_type) do
case content_type do case content_type do
"application/atom+xml" -> "application/atom+xml" ->
{true, XML.parse(data)} case XML.parse(data) do
{:error, _} -> false
{:ok, doc} -> {true, doc}
end
_ when content_type in ["text/xml", "application/xml"] -> _ when content_type in ["text/xml", "application/xml"] ->
doc = XML.parse(data) case XML.parse(data) do
{:error, _} ->
false
if XML.xmlElement(doc, :name) == :feed do {:ok, doc} ->
{true, doc} if XML.xmlElement(doc, :name) == :feed do
else {true, doc}
false else
false
end
end end
_ -> _ ->

View File

@ -12,15 +12,22 @@ defmodule FeedParser.Parser.RSS2 do
def accepts(data, content_type) do def accepts(data, content_type) do
cond do cond do
content_type in ["application/rss+xml", "text/rss+xml"] -> content_type in ["application/rss+xml", "text/rss+xml"] ->
{true, XML.parse(data)} case XML.parse(data) do
{:error, _} -> false
{:ok, doc} -> {true, doc}
end
content_type in ["text/xml", "application/xml"] -> content_type in ["text/xml", "application/xml"] ->
doc = XML.parse(data) case XML.parse(data) do
{:error, _} ->
false
if XML.xmlElement(doc, :name) == :rss do {:ok, doc} ->
{true, doc} if XML.xmlElement(doc, :name) == :rss do
else {true, doc}
false else
false
end
end end
true -> true ->

View File

@ -9,12 +9,16 @@ defmodule FeedParser.XML do
defrecord :xmlAttribute, extract(:xmlAttribute, from_lib: "xmerl/include/xmerl.hrl") defrecord :xmlAttribute, extract(:xmlAttribute, from_lib: "xmerl/include/xmerl.hrl")
defrecord :xmlText, extract(:xmlText, from_lib: "xmerl/include/xmerl.hrl") defrecord :xmlText, extract(:xmlText, from_lib: "xmerl/include/xmerl.hrl")
@spec parse(data :: String.t()) :: tuple() @spec parse(data :: String.t()) :: {:ok, tuple()} | {:error, String.t()}
def parse(data) do def parse(data) do
{doc, _} = {doc, _} =
data try do
|> :binary.bin_to_list() data
|> :xmerl_scan.string() |> :binary.bin_to_list()
|> :xmerl_scan.string()
catch
:exit, reason -> {:error, "parsing XML failed: #{inspect(reason)}"}
end
doc doc
end end