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:55:17 +00:00
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Config
|
|
|
|
alias Pleroma.User
|
2019-08-31 16:08:56 +00:00
|
|
|
alias Pleroma.Workers.PublisherWorker
|
2019-05-12 03:43:53 +00:00
|
|
|
|
|
|
|
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 """
|
|
|
|
Enqueue publishing a single activity.
|
|
|
|
"""
|
|
|
|
@spec enqueue_one(module(), Map.t()) :: :ok
|
2019-08-01 14:28:00 +00:00
|
|
|
def enqueue_one(module, %{} = params) do
|
2019-08-31 18:58:42 +00:00
|
|
|
PublisherWorker.enqueue(
|
|
|
|
"publish_one",
|
|
|
|
%{"module" => to_string(module), "params" => params}
|
|
|
|
)
|
2019-05-12 03:43:53 +00:00
|
|
|
end
|
2019-05-12 03:55:17 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Relays an activity to all specified peers.
|
|
|
|
"""
|
2019-05-17 07:25:20 +00:00
|
|
|
@callback publish(User.t(), Activity.t()) :: :ok | {:error, any()}
|
2019-05-12 03:55:17 +00:00
|
|
|
|
2019-05-17 07:25:20 +00:00
|
|
|
@spec publish(User.t(), Activity.t()) :: :ok
|
2019-05-12 03:55:17 +00:00
|
|
|
def publish(%User{} = user, %Activity{} = activity) do
|
|
|
|
Config.get([:instance, :federation_publisher_modules])
|
|
|
|
|> Enum.each(fn module ->
|
2019-05-12 04:17:17 +00:00
|
|
|
if module.is_representable?(activity) do
|
|
|
|
Logger.info("Publishing #{activity.data["id"]} using #{inspect(module)}")
|
|
|
|
module.publish(user, activity)
|
|
|
|
end
|
2019-05-12 03:55:17 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
:ok
|
|
|
|
end
|
2019-05-12 19:05:03 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gathers links used by an outgoing federation module for WebFinger output.
|
|
|
|
"""
|
2019-05-17 07:25:20 +00:00
|
|
|
@callback gather_webfinger_links(User.t()) :: list()
|
2019-05-12 19:05:03 +00:00
|
|
|
|
2019-05-17 07:25:20 +00:00
|
|
|
@spec gather_webfinger_links(User.t()) :: list()
|
2019-05-12 19:05:03 +00:00
|
|
|
def gather_webfinger_links(%User{} = user) do
|
|
|
|
Config.get([:instance, :federation_publisher_modules])
|
|
|
|
|> Enum.reduce([], fn module, links ->
|
|
|
|
links ++ module.gather_webfinger_links(user)
|
|
|
|
end)
|
|
|
|
end
|
2019-05-12 19:15:29 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Gathers nodeinfo protocol names supported by the federation module.
|
|
|
|
"""
|
|
|
|
@callback gather_nodeinfo_protocol_names() :: list()
|
|
|
|
|
|
|
|
@spec gather_nodeinfo_protocol_names() :: list()
|
|
|
|
def gather_nodeinfo_protocol_names do
|
|
|
|
Config.get([:instance, :federation_publisher_modules])
|
|
|
|
|> Enum.reduce([], fn module, links ->
|
|
|
|
links ++ module.gather_nodeinfo_protocol_names()
|
|
|
|
end)
|
|
|
|
end
|
2019-05-12 02:41:34 +00:00
|
|
|
end
|