More resilient xml parsing.
authorRoger Braun <roger@rogerbraun.net>
Sat, 24 Jun 2017 12:35:32 +0000 (14:35 +0200)
committerRoger Braun <roger@rogerbraun.net>
Sat, 24 Jun 2017 12:35:32 +0000 (14:35 +0200)
lib/pleroma/web/ostatus/ostatus.ex
lib/pleroma/web/web_finger/web_finger.ex
lib/pleroma/web/xml/xml.ex

index bb0a3b5b9320711c958543b94f4fe068b1cd5339..f987752a02ae470adda5b88794583c1ce869ef60 100644 (file)
@@ -30,6 +30,7 @@ defmodule Pleroma.Web.OStatus do
     activities = Enum.map(entries, fn (entry) ->
       {:xmlObj, :string, object_type} = :xmerl_xpath.string('string(/entry/activity:object-type[1])', entry)
       {:xmlObj, :string, verb} = :xmerl_xpath.string('string(/entry/activity:verb[1])', entry)
+      Logger.debug("Handling #{verb}")
 
       case verb do
         'http://activitystrea.ms/schema/1.0/follow' ->
index e8b738c960fa1d7c7844b14b531917c1dc7d5b1f..7ae413c26de0a47a3dfcfedac3ed68465f418545 100644 (file)
@@ -98,7 +98,7 @@ defmodule Pleroma.Web.WebFinger do
                end
 
     with {:ok, %{status_code: status_code, body: body}} when status_code in 200..299 <- response,
-         doc <- XML.parse_document(body),
+         doc when doc != :error<- XML.parse_document(body),
          {:ok, data} <- webfinger_from_xml(doc) do
       {:ok, data}
     else
index 22faf72df4cb5934e3e7bc667b4751f3bbca4a15..63580c1f87a96b6ef794643c351e03bafa227f6a 100644 (file)
@@ -1,4 +1,7 @@
 defmodule Pleroma.Web.XML do
+  require Logger
+
+  def string_from_xpath(xpath, :error), do: nil
   def string_from_xpath(xpath, doc) do
     {:xmlObj, :string, res} = :xmerl_xpath.string('string(#{xpath})', doc)
 
@@ -10,10 +13,16 @@ defmodule Pleroma.Web.XML do
   end
 
   def parse_document(text) do
-    {doc, _rest} = text
-    |> :binary.bin_to_list
-    |> :xmerl_scan.string
+    try do
+      {doc, _rest} = text
+      |> :binary.bin_to_list
+      |> :xmerl_scan.string
 
-    doc
+      doc
+    catch
+      :exit, error ->
+        Logger.debug("Couldn't parse xml: #{inspect(text)}")
+        :error
+    end
   end
 end