1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ActivityPub.Publisher do
10 alias Pleroma.Instances
14 alias Pleroma.Web.ActivityPub.Relay
15 alias Pleroma.Web.ActivityPub.Transmogrifier
17 require Pleroma.Constants
19 import Pleroma.Web.ActivityPub.Visibility
21 @behaviour Pleroma.Web.Federator.Publisher
26 ActivityPub outgoing federation module.
30 Determine if an activity can be represented by running it through Transmogrifier.
32 def is_representable?(%Activity{} = activity) do
33 with {:ok, _data} <- Transmogrifier.prepare_outgoing(activity.data) do
42 Publish a single message to a peer. Takes a struct with the following
45 * `inbox`: the inbox to publish to
46 * `json`: the JSON message body representing the ActivityPub message
47 * `actor`: the actor which is signing the message
48 * `id`: the ActivityStreams URI of the message
50 def publish_one(%{inbox: inbox, json: json, actor: %User{} = actor, id: id} = params) do
51 Logger.debug("Federating #{id} to #{inbox}")
52 uri = %{path: path} = URI.parse(inbox)
53 digest = "SHA-256=" <> (:crypto.hash(:sha256, json) |> Base.encode64())
55 date = Pleroma.Signature.signed_date()
58 Pleroma.Signature.sign(actor, %{
59 "(request-target)": "post #{path}",
60 host: signature_host(uri),
61 "content-length": byte_size(json),
66 with {:ok, %{status: code}} when code in 200..299 <-
72 {"Content-Type", "application/activity+json"},
74 {"signature", signature},
78 if not Map.has_key?(params, :unreachable_since) || params[:unreachable_since] do
79 Instances.set_reachable(inbox)
84 {_post_result, response} ->
85 unless params[:unreachable_since], do: Instances.set_unreachable(inbox)
90 def publish_one(%{actor_id: actor_id} = params) do
91 actor = User.get_cached_by_id(actor_id)
94 |> Map.delete(:actor_id)
95 |> Map.put(:actor, actor)
99 defp signature_host(%URI{port: port, scheme: scheme, host: host}) do
100 if port == URI.default_port(scheme) do
107 defp should_federate?(inbox, public) do
111 %{host: host} = URI.parse(inbox)
113 quarantined_instances =
114 Config.get([:instance, :quarantined_instances], [])
115 |> Pleroma.Web.ActivityPub.MRF.subdomains_regex()
117 !Pleroma.Web.ActivityPub.MRF.subdomain_match?(quarantined_instances, host)
121 @spec recipients(User.t(), Activity.t()) :: list(User.t()) | []
122 defp recipients(actor, activity) do
124 if actor.follower_address in activity.recipients do
125 User.get_external_followers(actor)
131 with %Activity{data: %{"type" => "Delete"}} <- activity,
132 %Object{id: object_id} <- Object.normalize(activity, fetch: false),
133 fetchers <- User.get_delivered_users_by_object_id(object_id),
134 _ <- Delivery.delete_all_by_object_id(object_id) do
141 Pleroma.Web.Federator.Publisher.remote_users(actor, activity) ++ followers ++ fetchers
144 defp get_cc_ap_ids(ap_id, recipients) do
145 host = Map.get(URI.parse(ap_id), :host)
148 |> Enum.filter(fn %User{ap_id: ap_id} -> Map.get(URI.parse(ap_id), :host) == host end)
149 |> Enum.map(& &1.ap_id)
152 defp maybe_use_sharedinbox(%User{shared_inbox: nil, inbox: inbox}), do: inbox
153 defp maybe_use_sharedinbox(%User{shared_inbox: shared_inbox}), do: shared_inbox
156 Determine a user inbox to use based on heuristics. These heuristics
157 are based on an approximation of the ``sharedInbox`` rules in the
158 [ActivityPub specification][ap-sharedinbox].
160 Please do not edit this function (or its children) without reading
161 the spec, as editing the code is likely to introduce some breakage
162 without some familiarity.
164 [ap-sharedinbox]: https://www.w3.org/TR/activitypub/#shared-inbox-delivery
167 %Activity{data: activity_data},
168 %User{inbox: inbox} = user
170 to = activity_data["to"] || []
171 cc = activity_data["cc"] || []
172 type = activity_data["type"]
176 maybe_use_sharedinbox(user)
178 Pleroma.Constants.as_public() in to || Pleroma.Constants.as_public() in cc ->
179 maybe_use_sharedinbox(user)
181 length(to) + length(cc) > 1 ->
182 maybe_use_sharedinbox(user)
190 Publishes an activity with BCC to all relevant peers.
193 def publish(%User{} = actor, %{data: %{"bcc" => bcc}} = activity)
194 when is_list(bcc) and bcc != [] do
195 public = is_public?(activity)
196 {:ok, data} = Transmogrifier.prepare_outgoing(activity.data)
198 recipients = recipients(actor, activity)
202 |> Enum.filter(&User.ap_enabled?/1)
203 |> Enum.map(fn actor -> actor.inbox end)
204 |> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
205 |> Instances.filter_reachable()
208 Enum.each(inboxes, fn {inbox, unreachable_since} ->
209 %User{ap_id: ap_id} = Enum.find(recipients, fn actor -> actor.inbox == inbox end)
211 # Get all the recipients on the same host and add them to cc. Otherwise, a remote
212 # instance would only accept a first message for the first recipient and ignore the rest.
213 cc = get_cc_ap_ids(ap_id, recipients)
220 Pleroma.Web.Federator.Publisher.enqueue_one(__MODULE__, %{
224 id: activity.data["id"],
225 unreachable_since: unreachable_since
231 # Publishes an activity to all relevant peers.
232 def publish(%User{} = actor, %Activity{} = activity) do
233 public = is_public?(activity)
235 if public && Config.get([:instance, :allow_relay]) do
236 Logger.debug(fn -> "Relaying #{activity.data["id"]} out" end)
237 Relay.publish(activity)
240 {:ok, data} = Transmogrifier.prepare_outgoing(activity.data)
241 json = Jason.encode!(data)
243 recipients(actor, activity)
244 |> Enum.filter(fn user -> User.ap_enabled?(user) end)
245 |> Enum.map(fn %User{} = user ->
246 determine_inbox(activity, user)
249 |> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
250 |> Instances.filter_reachable()
251 |> Enum.each(fn {inbox, unreachable_since} ->
252 Pleroma.Web.Federator.Publisher.enqueue_one(
258 id: activity.data["id"],
259 unreachable_since: unreachable_since
265 def gather_webfinger_links(%User{} = user) do
267 %{"rel" => "self", "type" => "application/activity+json", "href" => user.ap_id},
270 "type" => "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"",
274 "rel" => "http://ostatus.org/schema/1.0/subscribe",
275 "template" => "#{Pleroma.Web.Endpoint.url()}/ostatus_subscribe?acct={uri}"
280 def gather_nodeinfo_protocol_names, do: ["activitypub"]