2019-05-12 02:41:34 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.Federator.Publisher do
|
2019-05-12 03:43:53 +00:00
|
|
|
alias Pleroma.Web.Federator.RetryQueue
|
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
2019-05-12 02:41:34 +00:00
|
|
|
@moduledoc """
|
|
|
|
Defines the contract used by federation implementations to publish messages to
|
|
|
|
their peers.
|
|
|
|
"""
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Determine whether an activity can be relayed using the federation module.
|
|
|
|
"""
|
|
|
|
@callback is_representable?(Pleroma.Activity.t()) :: boolean()
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Relays an activity to a specified peer, determined by the parameters. The
|
|
|
|
parameters used are controlled by the federation module.
|
|
|
|
"""
|
|
|
|
@callback publish_one(Map.t()) :: {:ok, Map.t()} | {:error, any()}
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Relays an activity to all specified peers.
|
|
|
|
"""
|
|
|
|
@callback publish(Pleroma.User.t(), Pleroma.Activity.t()) :: :ok | {:error, any()}
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Enqueue publishing a single activity.
|
|
|
|
"""
|
|
|
|
@spec enqueue_one(module(), Map.t()) :: :ok
|
2019-05-12 03:43:53 +00:00
|
|
|
def enqueue_one(module, %{} = params),
|
|
|
|
do: PleromaJobQueue.enqueue(:federation_outgoing, __MODULE__, [:publish_one, module, params])
|
|
|
|
|
|
|
|
@spec perform(atom(), module(), any()) :: {:ok, any()} | {:error, any()}
|
|
|
|
def perform(:publish_one, module, params) do
|
|
|
|
case apply(module, :publish_one, [params]) do
|
|
|
|
{:ok, _} ->
|
|
|
|
:ok
|
|
|
|
|
|
|
|
{:error, _} ->
|
|
|
|
RetryQueue.enqueue(params, module)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def perform(type, _, _) do
|
|
|
|
Logger.debug("Unknown task: #{type}")
|
|
|
|
{:error, "Don't know what to do with this"}
|
|
|
|
end
|
2019-05-12 02:41:34 +00:00
|
|
|
end
|