akkoma/lib/pleroma/web/xml/xml.ex

29 lines
563 B
Elixir
Raw Normal View History

2017-04-27 07:43:58 +00:00
defmodule Pleroma.Web.XML do
2017-06-24 12:35:32 +00:00
require Logger
2017-11-19 01:22:07 +00:00
def string_from_xpath(_, :error), do: nil
2017-04-27 07:43:58 +00:00
def string_from_xpath(xpath, doc) do
{:xmlObj, :string, res} = :xmerl_xpath.string('string(#{xpath})', doc)
res = res
|> to_string
|> String.trim
if res == "", do: nil, else: res
end
def parse_document(text) do
2017-06-24 12:35:32 +00:00
try do
{doc, _rest} = text
|> :binary.bin_to_list
|> :xmerl_scan.string
2017-04-27 07:43:58 +00:00
2017-06-24 12:35:32 +00:00
doc
catch
2017-11-19 01:22:07 +00:00
:exit, _error ->
2017-06-24 12:35:32 +00:00
Logger.debug("Couldn't parse xml: #{inspect(text)}")
:error
end
2017-04-27 07:43:58 +00:00
end
end