Handle subscriptions in queue.

This commit is contained in:
Roger Braun 2017-08-02 12:34:48 +02:00
commit e4a4135c1d
2 changed files with 11 additions and 2 deletions

View file

@ -26,6 +26,15 @@ defmodule Pleroma.Web.Federator do
end)
end
def handle(:request_subscription, websub) do
Logger.debug("Refreshing #{websub.topic}")
with {:ok, websub } <- Websub.request_subscription(websub) do
Logger.debug("Successfully refreshed #{websub.topic}")
else
_e -> Logger.debug("Couldn't refresh #{websub.topic}")
end
end
def handle(:publish, activity) do
Logger.debug(fn -> "Running publish for #{activity.data["id"]}" end)
with actor when not is_nil(actor) <- User.get_cached_by_ap_id(activity.data["actor"]) do