pleroma/lib/pleroma/web/xml.ex

49 lines
1.1 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2022-02-26 00:11:42 -06:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-04-27 02:43:58 -05:00
defmodule Pleroma.Web.XML do
2017-06-24 07:35:32 -05:00
require Logger
2017-11-18 19:22:07 -06:00
def string_from_xpath(_, :error), do: nil
2018-03-30 08:01:53 -05:00
2017-04-27 02:43:58 -05:00
def string_from_xpath(xpath, doc) do
try do
{:xmlObj, :string, res} = :xmerl_xpath.string('string(#{xpath})', doc)
2017-04-27 02:43:58 -05:00
res =
res
|> to_string
|> String.trim()
2017-04-27 02:43:58 -05:00
if res == "", do: nil, else: res
catch
_e ->
Logger.debug("Couldn't find xpath #{xpath} in XML doc")
nil
end
2017-04-27 02:43:58 -05:00
end
def parse_document(text) do
2017-06-24 07:35:32 -05:00
try do
2018-03-30 08:01:53 -05:00
{doc, _rest} =
text
|> :binary.bin_to_list()
|> :xmerl_scan.string(
quiet: true,
fetch_fun: fn _, _ -> raise "Resolving external entities not supported" end
)
2017-04-27 02:43:58 -05:00
{:ok, doc}
2018-12-09 03:12:48 -06:00
rescue
_e ->
2018-03-19 12:51:31 -05:00
Logger.debug("Couldn't parse XML: #{inspect(text)}")
2017-06-24 07:35:32 -05:00
:error
2018-12-09 03:12:48 -06:00
catch
:exit, _error ->
2018-06-01 12:55:25 -05:00
Logger.debug("Couldn't parse XML: #{inspect(text)}")
:error
2017-06-24 07:35:32 -05:00
end
2017-04-27 02:43:58 -05:00
end
end