More debugging code.
[akkoma] / lib / pleroma / web / ostatus / ostatus.ex
index b19f0172ac6d5f140cf60b8d755ec1799c046d3b..3bcc858cfb81b53a699d04ddeb1190be416d85ef 100644 (file)
@@ -81,13 +81,16 @@ defmodule Pleroma.Web.OStatus do
   end
 
   def get_or_try_fetching(entry) do
+    Logger.debug("Trying to fetch entry")
     with id when not is_nil(id) <- string_from_xpath("//activity:object[1]/id", entry),
          %Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id) do
       {:ok, activity}
     else _e ->
+        Logger.debug("Couldn't get, will try to fetch")
         with href when not is_nil(href) <- string_from_xpath("//activity:object[1]/link[@type=\"text/html\"]/@href", entry),
              {:ok, [favorited_activity]} <- fetch_activity_from_html_url(href) do
           {:ok, favorited_activity}
+        else e -> Logger.debug("Couldn't find href: #{inspect(e)}")
         end
     end
   end
@@ -120,10 +123,10 @@ defmodule Pleroma.Web.OStatus do
   end
 
   def get_content(entry) do
-    base_content = string_from_xpath("/entry/content", entry)
+    base_content = string_from_xpath("//content", entry)
 
     with scope when not is_nil(scope) <- string_from_xpath("//mastodon:scope", entry),
-         cw when not is_nil(cw) <- string_from_xpath("/entry/summary", entry) do
+         cw when not is_nil(cw) <- string_from_xpath("//summary", entry) do
       "<span class='mastodon-cw'>#{cw}</span><br>#{base_content}"
     else _e -> base_content
     end
@@ -136,10 +139,12 @@ defmodule Pleroma.Web.OStatus do
     {:ok, actor} = find_make_or_update_user(author)
     inReplyTo = string_from_xpath("//thr:in-reply-to[1]/@ref", entry)
 
-    if !Object.get_cached_by_ap_id(inReplyTo) do
+    if inReplyTo && !Object.get_cached_by_ap_id(inReplyTo) do
       inReplyToHref = string_from_xpath("//thr:in-reply-to[1]/@href", entry)
       if inReplyToHref do
         fetch_activity_from_html_url(inReplyToHref)
+      else
+        Logger.debug("Couldn't find a href link to #{inReplyTo}")
       end
     end
 
@@ -288,10 +293,13 @@ defmodule Pleroma.Web.OStatus do
   end
 
   def fetch_activity_from_html_url(url) do
+    Logger.debug("Trying to fetch #{url}")
     with {:ok, %{body: body}} <- @httpoison.get(url, [], follow_redirect: true),
          {:ok, atom_url} <- get_atom_url(body),
          {:ok, %{status_code: code, body: body}} when code in 200..299 <- @httpoison.get(atom_url, [], follow_redirect: true) do
+      Logger.debug("Got #{url}, handling...")
       handle_incoming(body)
+    else e -> Logger.debug("Couldn't get #{url}: #{inspect(e)}")
     end
   end
 end