1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 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 %{host: host, path: path} = URI.parse(inbox)
54 digest = "SHA-256=" <> (:crypto.hash(:sha256, json) |> Base.encode64())
56 date = Pleroma.Signature.signed_date()
59 Pleroma.Signature.sign(actor, %{
60 "(request-target)": "post #{path}",
62 "content-length": byte_size(json),
67 with {:ok, %{status: code}} when code in 200..299 <-
73 {"Content-Type", "application/activity+json"},
75 {"signature", signature},
79 if !Map.has_key?(params, :unreachable_since) || params[:unreachable_since],
80 do: 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 should_federate?(inbox, public) do
103 %{host: host} = URI.parse(inbox)
105 quarantined_instances =
106 Config.get([:instance, :quarantined_instances], [])
107 |> Pleroma.Web.ActivityPub.MRF.subdomains_regex()
109 !Pleroma.Web.ActivityPub.MRF.subdomain_match?(quarantined_instances, host)
113 @spec recipients(User.t(), Activity.t()) :: list(User.t()) | []
114 defp recipients(actor, activity) do
116 if actor.follower_address in activity.recipients do
117 User.get_external_followers(actor)
123 with %Activity{data: %{"type" => "Delete"}} <- activity,
124 %Object{id: object_id} <- Object.normalize(activity),
125 fetchers <- User.get_delivered_users_by_object_id(object_id),
126 _ <- Delivery.delete_all_by_object_id(object_id) do
133 Pleroma.Web.Federator.Publisher.remote_users(actor, activity) ++ followers ++ fetchers
136 defp get_cc_ap_ids(ap_id, recipients) do
137 host = Map.get(URI.parse(ap_id), :host)
140 |> Enum.filter(fn %User{ap_id: ap_id} -> Map.get(URI.parse(ap_id), :host) == host end)
141 |> Enum.map(& &1.ap_id)
144 defp maybe_use_sharedinbox(%User{source_data: data}),
145 do: (is_map(data["endpoints"]) && Map.get(data["endpoints"], "sharedInbox")) || data["inbox"]
148 Determine a user inbox to use based on heuristics. These heuristics
149 are based on an approximation of the ``sharedInbox`` rules in the
150 [ActivityPub specification][ap-sharedinbox].
152 Please do not edit this function (or its children) without reading
153 the spec, as editing the code is likely to introduce some breakage
154 without some familiarity.
156 [ap-sharedinbox]: https://www.w3.org/TR/activitypub/#shared-inbox-delivery
159 %Activity{data: activity_data},
160 %User{source_data: data} = user
162 to = activity_data["to"] || []
163 cc = activity_data["cc"] || []
164 type = activity_data["type"]
168 maybe_use_sharedinbox(user)
170 Pleroma.Constants.as_public() in to || Pleroma.Constants.as_public() in cc ->
171 maybe_use_sharedinbox(user)
173 length(to) + length(cc) > 1 ->
174 maybe_use_sharedinbox(user)
182 Publishes an activity with BCC to all relevant peers.
185 def publish(%User{} = actor, %{data: %{"bcc" => bcc}} = activity)
186 when is_list(bcc) and bcc != [] do
187 public = is_public?(activity)
188 {:ok, data} = Transmogrifier.prepare_outgoing(activity.data)
190 recipients = recipients(actor, activity)
194 |> Enum.filter(&User.ap_enabled?/1)
195 |> Enum.map(fn %{source_data: data} -> data["inbox"] end)
196 |> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
197 |> Instances.filter_reachable()
200 Enum.each(inboxes, fn {inbox, unreachable_since} ->
201 %User{ap_id: ap_id} =
202 Enum.find(recipients, fn %{source_data: data} -> data["inbox"] == inbox end)
204 # Get all the recipients on the same host and add them to cc. Otherwise, a remote
205 # instance would only accept a first message for the first recipient and ignore the rest.
206 cc = get_cc_ap_ids(ap_id, recipients)
213 Pleroma.Web.Federator.Publisher.enqueue_one(__MODULE__, %{
217 id: activity.data["id"],
218 unreachable_since: unreachable_since
225 Publishes an activity to all relevant peers.
227 def publish(%User{} = actor, %Activity{} = activity) do
228 public = is_public?(activity)
230 if public && Config.get([:instance, :allow_relay]) do
231 Logger.debug(fn -> "Relaying #{activity.data["id"]} out" end)
232 Relay.publish(activity)
235 {:ok, data} = Transmogrifier.prepare_outgoing(activity.data)
236 json = Jason.encode!(data)
238 recipients(actor, activity)
239 |> Enum.filter(fn user -> User.ap_enabled?(user) end)
240 |> Enum.map(fn %User{} = user ->
241 determine_inbox(activity, user)
244 |> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
245 |> Instances.filter_reachable()
246 |> Enum.each(fn {inbox, unreachable_since} ->
247 Pleroma.Web.Federator.Publisher.enqueue_one(
253 id: activity.data["id"],
254 unreachable_since: unreachable_since
260 def gather_webfinger_links(%User{} = user) do
262 %{"rel" => "self", "type" => "application/activity+json", "href" => user.ap_id},
265 "type" => "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"",
271 def gather_nodeinfo_protocol_names, do: ["activitypub"]