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
9 alias Pleroma.Instances
11 alias Pleroma.Web.ActivityPub.Relay
12 alias Pleroma.Web.ActivityPub.Transmogrifier
14 require Pleroma.Constants
16 import Pleroma.Web.ActivityPub.Visibility
18 @behaviour Pleroma.Web.Federator.Publisher
23 ActivityPub outgoing federation module.
27 Determine if an activity can be represented by running it through Transmogrifier.
29 def is_representable?(%Activity{} = activity) do
30 with {:ok, _data} <- Transmogrifier.prepare_outgoing(activity.data) do
39 Publish a single message to a peer. Takes a struct with the following
42 * `inbox`: the inbox to publish to
43 * `json`: the JSON message body representing the ActivityPub message
44 * `actor`: the actor which is signing the message
45 * `id`: the ActivityStreams URI of the message
47 def publish_one(%{inbox: inbox, json: json, actor: %User{} = actor, id: id} = params) do
48 Logger.info("Federating #{id} to #{inbox}")
49 %{host: host, path: path} = URI.parse(inbox)
51 digest = "SHA-256=" <> (:crypto.hash(:sha256, json) |> Base.encode64())
53 date = Pleroma.Signature.signed_date()
56 Pleroma.Signature.sign(actor, %{
57 "(request-target)": "post #{path}",
59 "content-length": byte_size(json),
64 with {:ok, %{status: code}} when code in 200..299 <-
70 {"Content-Type", "application/activity+json"},
72 {"signature", signature},
76 if !Map.has_key?(params, :unreachable_since) || params[:unreachable_since],
77 do: Instances.set_reachable(inbox)
81 {_post_result, response} ->
82 unless params[:unreachable_since], do: Instances.set_unreachable(inbox)
87 defp should_federate?(inbox, public) do
91 %{host: host} = URI.parse(inbox)
93 quarantined_instances =
94 Config.get([:instance, :quarantined_instances], [])
95 |> Pleroma.Web.ActivityPub.MRF.subdomains_regex()
97 !Pleroma.Web.ActivityPub.MRF.subdomain_match?(quarantined_instances, host)
101 @spec recipients(User.t(), Activity.t()) :: list(User.t()) | []
102 defp recipients(actor, activity) do
104 if actor.follower_address in activity.recipients do
105 User.get_external_followers(actor)
110 Pleroma.Web.Salmon.remote_users(actor, activity) ++ followers
113 defp get_cc_ap_ids(ap_id, recipients) do
114 host = Map.get(URI.parse(ap_id), :host)
117 |> Enum.filter(fn %User{ap_id: ap_id} -> Map.get(URI.parse(ap_id), :host) == host end)
118 |> Enum.map(& &1.ap_id)
121 defp maybe_use_sharedinbox(%User{info: %{source_data: data}}),
122 do: (is_map(data["endpoints"]) && Map.get(data["endpoints"], "sharedInbox")) || data["inbox"]
125 Determine a user inbox to use based on heuristics. These heuristics
126 are based on an approximation of the ``sharedInbox`` rules in the
127 [ActivityPub specification][ap-sharedinbox].
129 Please do not edit this function (or its children) without reading
130 the spec, as editing the code is likely to introduce some breakage
131 without some familiarity.
133 [ap-sharedinbox]: https://www.w3.org/TR/activitypub/#shared-inbox-delivery
136 %Activity{data: activity_data},
137 %User{info: %{source_data: data}} = user
139 to = activity_data["to"] || []
140 cc = activity_data["cc"] || []
141 type = activity_data["type"]
145 maybe_use_sharedinbox(user)
147 Pleroma.Constants.as_public() in to || Pleroma.Constants.as_public() in cc ->
148 maybe_use_sharedinbox(user)
150 length(to) + length(cc) > 1 ->
151 maybe_use_sharedinbox(user)
159 Publishes an activity with BCC to all relevant peers.
162 def publish(actor, %{data: %{"bcc" => bcc}} = activity) when is_list(bcc) and bcc != [] do
163 public = is_public?(activity)
164 {:ok, data} = Transmogrifier.prepare_outgoing(activity.data)
166 recipients = recipients(actor, activity)
169 |> Enum.filter(&User.ap_enabled?/1)
170 |> Enum.map(fn %{info: %{source_data: data}} -> data["inbox"] end)
171 |> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
172 |> Instances.filter_reachable()
173 |> Enum.each(fn {inbox, unreachable_since} ->
174 %User{ap_id: ap_id} =
175 Enum.find(recipients, fn %{info: %{source_data: data}} -> data["inbox"] == inbox end)
177 # Get all the recipients on the same host and add them to cc. Otherwise, a remote
178 # instance would only accept a first message for the first recipient and ignore the rest.
179 cc = get_cc_ap_ids(ap_id, recipients)
186 Pleroma.Web.Federator.Publisher.enqueue_one(__MODULE__, %{
190 id: activity.data["id"],
191 unreachable_since: unreachable_since
197 Publishes an activity to all relevant peers.
199 def publish(%User{} = actor, %Activity{} = activity) do
200 public = is_public?(activity)
202 if public && Config.get([:instance, :allow_relay]) do
203 Logger.info(fn -> "Relaying #{activity.data["id"]} out" end)
204 Relay.publish(activity)
207 {:ok, data} = Transmogrifier.prepare_outgoing(activity.data)
208 json = Jason.encode!(data)
210 recipients(actor, activity)
211 |> Enum.filter(fn user -> User.ap_enabled?(user) end)
212 |> Enum.map(fn %User{} = user ->
213 determine_inbox(activity, user)
216 |> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
217 |> Instances.filter_reachable()
218 |> Enum.each(fn {inbox, unreachable_since} ->
219 Pleroma.Web.Federator.Publisher.enqueue_one(
225 id: activity.data["id"],
226 unreachable_since: unreachable_since
232 def gather_webfinger_links(%User{} = user) do
234 %{"rel" => "self", "type" => "application/activity+json", "href" => user.ap_id},
237 "type" => "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"",
243 def gather_nodeinfo_protocol_names, do: ["activitypub"]