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.Utils do
11 alias Pleroma.Notification
15 alias Pleroma.Web.ActivityPub.ActivityPub
16 alias Pleroma.Web.ActivityPub.Visibility
17 alias Pleroma.Web.AdminAPI.AccountView
18 alias Pleroma.Web.Endpoint
19 alias Pleroma.Web.Router.Helpers
24 require Pleroma.Constants
26 @supported_object_types [
36 @strip_status_report_states ~w(closed resolved)
37 @supported_report_states ~w(open closed resolved)
38 @valid_visibilities ~w(public unlisted private direct)
40 def as_local_public, do: Endpoint.url() <> "/#Public"
42 # Some implementations send the actor URI as the actor field, others send the entire actor object,
43 # so figure out what the actor's URI is based on what we have.
44 def get_ap_id(%{"id" => id} = _), do: id
45 def get_ap_id(id), do: id
47 def normalize_params(params) do
48 Map.put(params, "actor", get_ap_id(params["actor"]))
51 @spec determine_explicit_mentions(map()) :: [any]
52 def determine_explicit_mentions(%{"tag" => tag}) when is_list(tag) do
54 %{"type" => "Mention", "href" => href} -> [href]
59 def determine_explicit_mentions(%{"tag" => tag} = object) when is_map(tag) do
61 |> Map.put("tag", [tag])
62 |> determine_explicit_mentions()
65 def determine_explicit_mentions(_), do: []
67 @spec label_in_collection?(any(), any()) :: boolean()
68 defp label_in_collection?(ap_id, coll) when is_binary(coll), do: ap_id == coll
69 defp label_in_collection?(ap_id, coll) when is_list(coll), do: ap_id in coll
70 defp label_in_collection?(_, _), do: false
72 @spec label_in_message?(String.t(), map()) :: boolean()
73 def label_in_message?(label, params),
75 [params["to"], params["cc"], params["bto"], params["bcc"]]
76 |> Enum.any?(&label_in_collection?(label, &1))
78 @spec unaddressed_message?(map()) :: boolean()
79 def unaddressed_message?(params),
81 [params["to"], params["cc"], params["bto"], params["bcc"]]
82 |> Enum.all?(&is_nil(&1))
84 @spec recipient_in_message(User.t(), User.t(), map()) :: boolean()
85 def recipient_in_message(%User{ap_id: ap_id} = recipient, %User{} = actor, params),
87 label_in_message?(ap_id, params) || unaddressed_message?(params) ||
88 User.following?(recipient, actor)
90 defp extract_list(target) when is_binary(target), do: [target]
91 defp extract_list(lst) when is_list(lst), do: lst
92 defp extract_list(_), do: []
94 def maybe_splice_recipient(ap_id, params) do
96 !label_in_collection?(ap_id, params["to"]) &&
97 !label_in_collection?(ap_id, params["cc"])
100 cc = [ap_id | extract_list(params["cc"])]
104 |> Maps.safe_put_in(["object", "cc"], cc)
110 def make_json_ld_header do
113 "https://www.w3.org/ns/activitystreams",
114 "#{Endpoint.url()}/schemas/litepub-0.1.jsonld",
123 DateTime.utc_now() |> DateTime.to_iso8601()
126 def generate_activity_id do
127 generate_id("activities")
130 def generate_context_id do
131 generate_id("contexts")
134 def generate_object_id do
135 Helpers.o_status_url(Endpoint, :object, UUID.generate())
138 def generate_id(type) do
139 "#{Endpoint.url()}/#{type}/#{UUID.generate()}"
142 def get_notified_from_object(%{"type" => type} = object) when type in @supported_object_types do
143 fake_create_activity = %{
144 "to" => object["to"],
145 "cc" => object["cc"],
150 get_notified_from_object(fake_create_activity)
153 def get_notified_from_object(object) do
154 Notification.get_notified_from_activity(%Activity{data: object}, false)
157 def create_context(context) do
158 context = context || generate_id("contexts")
160 # Ecto has problems accessing the constraint inside the jsonb,
161 # so we explicitly check for the existed object before insert
162 object = Object.get_cached_by_ap_id(context)
164 with true <- is_nil(object),
165 changeset <- Object.context_mapping(context),
166 {:ok, inserted_object} <- Repo.insert(changeset) do
175 Enqueues an activity for federation if it's local
177 @spec maybe_federate(any()) :: :ok
178 def maybe_federate(%Activity{local: true, data: %{"type" => type}} = activity) do
179 outgoing_blocks = Config.get([:activitypub, :outgoing_blocks])
181 with true <- Config.get!([:instance, :federating]),
182 true <- type != "Block" || outgoing_blocks,
183 false <- Visibility.is_local_public?(activity) do
184 Pleroma.Web.Federator.publish(activity)
190 def maybe_federate(_), do: :ok
193 Adds an id and a published data if they aren't there,
194 also adds it to an included object
196 @spec lazy_put_activity_defaults(map(), boolean) :: map()
197 def lazy_put_activity_defaults(map, fake? \\ false)
199 def lazy_put_activity_defaults(map, true) do
201 |> Map.put_new("id", "pleroma:fakeid")
202 |> Map.put_new_lazy("published", &make_date/0)
203 |> Map.put_new("context", "pleroma:fakecontext")
204 |> Map.put_new("context_id", -1)
205 |> lazy_put_object_defaults(true)
208 def lazy_put_activity_defaults(map, _fake?) do
209 %{data: %{"id" => context}, id: context_id} = create_context(map["context"])
212 |> Map.put_new_lazy("id", &generate_activity_id/0)
213 |> Map.put_new_lazy("published", &make_date/0)
214 |> Map.put_new("context", context)
215 |> Map.put_new("context_id", context_id)
216 |> lazy_put_object_defaults(false)
219 # Adds an id and published date if they aren't there.
221 @spec lazy_put_object_defaults(map(), boolean()) :: map()
222 defp lazy_put_object_defaults(%{"object" => map} = activity, true)
226 |> Map.put_new("id", "pleroma:fake_object_id")
227 |> Map.put_new_lazy("published", &make_date/0)
228 |> Map.put_new("context", activity["context"])
229 |> Map.put_new("context_id", activity["context_id"])
230 |> Map.put_new("fake", true)
232 %{activity | "object" => object}
235 defp lazy_put_object_defaults(%{"object" => map} = activity, _)
239 |> Map.put_new_lazy("id", &generate_object_id/0)
240 |> Map.put_new_lazy("published", &make_date/0)
241 |> Map.put_new("context", activity["context"])
242 |> Map.put_new("context_id", activity["context_id"])
244 %{activity | "object" => object}
247 defp lazy_put_object_defaults(activity, _), do: activity
250 Inserts a full object if it is contained in an activity.
252 def insert_full_object(%{"object" => %{"type" => type} = object_data} = map)
253 when type in @supported_object_types do
254 with {:ok, object} <- Object.create(object_data) do
255 map = Map.put(map, "object", object.data["id"])
261 def insert_full_object(map), do: {:ok, map, nil}
263 #### Like-related helpers
266 Returns an existing like if a user already liked an object
268 @spec get_existing_like(String.t(), map()) :: Activity.t() | nil
269 def get_existing_like(actor, %{data: %{"id" => id}}) do
271 |> Activity.Queries.by_actor()
272 |> Activity.Queries.by_object_id(id)
273 |> Activity.Queries.by_type("Like")
279 Returns like activities targeting an object
281 def get_object_likes(%{data: %{"id" => id}}) do
283 |> Activity.Queries.by_object_id()
284 |> Activity.Queries.by_type("Like")
288 @spec make_like_data(User.t(), map(), String.t()) :: map()
290 %User{ap_id: ap_id} = actor,
291 %{data: %{"actor" => object_actor_id, "id" => id}} = object,
294 object_actor = User.get_cached_by_ap_id(object_actor_id)
297 if Visibility.is_public?(object) do
298 [actor.follower_address, object.data["actor"]]
300 [object.data["actor"]]
304 (object.data["to"] ++ (object.data["cc"] || []))
305 |> List.delete(actor.ap_id)
306 |> List.delete(object_actor.follower_address)
314 "context" => object.data["context"]
316 |> Maps.put_if_present("id", activity_id)
319 def make_emoji_reaction_data(user, object, emoji, activity_id) do
320 make_like_data(user, object, activity_id)
321 |> Map.put("type", "EmojiReact")
322 |> Map.put("content", emoji)
325 @spec update_element_in_object(String.t(), list(any), Object.t(), integer() | nil) ::
326 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
327 def update_element_in_object(property, element, object, count \\ nil) do
335 %{"#{property}_count" => length, "#{property}s" => element}
339 |> Changeset.change(data: data)
340 |> Object.update_and_set_cache()
343 @spec add_emoji_reaction_to_object(Activity.t(), Object.t()) ::
344 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
346 def add_emoji_reaction_to_object(
347 %Activity{data: %{"content" => emoji, "actor" => actor}},
350 reactions = get_cached_emoji_reactions(object)
353 case Enum.find_index(reactions, fn [candidate, _] -> emoji == candidate end) do
355 reactions ++ [[emoji, [actor]]]
361 fn [emoji, users] -> [emoji, Enum.uniq([actor | users])] end
365 count = emoji_count(new_reactions)
367 update_element_in_object("reaction", new_reactions, object, count)
370 def emoji_count(reactions_list) do
371 Enum.reduce(reactions_list, 0, fn [_, users], acc -> acc + length(users) end)
374 def remove_emoji_reaction_from_object(
375 %Activity{data: %{"content" => emoji, "actor" => actor}},
378 reactions = get_cached_emoji_reactions(object)
381 case Enum.find_index(reactions, fn [candidate, _] -> emoji == candidate end) do
389 fn [emoji, users] -> [emoji, List.delete(users, actor)] end
391 |> Enum.reject(fn [_, users] -> Enum.empty?(users) end)
394 count = emoji_count(new_reactions)
395 update_element_in_object("reaction", new_reactions, object, count)
398 def get_cached_emoji_reactions(object) do
399 if is_list(object.data["reactions"]) do
400 object.data["reactions"]
406 @spec add_like_to_object(Activity.t(), Object.t()) ::
407 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
408 def add_like_to_object(%Activity{data: %{"actor" => actor}}, object) do
409 [actor | fetch_likes(object)]
411 |> update_likes_in_object(object)
414 @spec remove_like_from_object(Activity.t(), Object.t()) ::
415 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
416 def remove_like_from_object(%Activity{data: %{"actor" => actor}}, object) do
419 |> List.delete(actor)
420 |> update_likes_in_object(object)
423 defp update_likes_in_object(likes, object) do
424 update_element_in_object("like", likes, object)
427 defp fetch_likes(object) do
428 if is_list(object.data["likes"]) do
435 #### Follow-related helpers
438 Updates a follow activity's state (for locked accounts).
440 @spec update_follow_state_for_all(Activity.t(), String.t()) :: {:ok, Activity | nil}
441 def update_follow_state_for_all(
442 %Activity{data: %{"actor" => actor, "object" => object}} = activity,
446 |> Activity.Queries.by_type()
447 |> Activity.Queries.by_actor(actor)
448 |> Activity.Queries.by_object_id(object)
449 |> where(fragment("data->>'state' = 'pending'") or fragment("data->>'state' = 'accept'"))
450 |> update(set: [data: fragment("jsonb_set(data, '{state}', ?)", ^state)])
451 |> Repo.update_all([])
453 activity = Activity.get_by_id(activity.id)
458 def update_follow_state(
459 %Activity{} = activity,
462 new_data = Map.put(activity.data, "state", state)
463 changeset = Changeset.change(activity, data: new_data)
465 with {:ok, activity} <- Repo.update(changeset) do
471 Makes a follow activity data for the given follower and followed
473 def make_follow_data(
474 %User{ap_id: follower_id},
475 %User{ap_id: followed_id} = _followed,
480 "actor" => follower_id,
481 "to" => [followed_id],
482 "cc" => [Pleroma.Constants.as_public()],
483 "object" => followed_id,
486 |> Maps.put_if_present("id", activity_id)
489 def fetch_latest_follow(%User{ap_id: follower_id}, %User{ap_id: followed_id}) do
491 |> Activity.Queries.by_type()
492 |> where(actor: ^follower_id)
493 # this is to use the index
494 |> Activity.Queries.by_object_id(followed_id)
495 |> order_by([activity], fragment("? desc nulls last", activity.id))
500 def fetch_latest_undo(%User{ap_id: ap_id}) do
502 |> Activity.Queries.by_type()
503 |> where(actor: ^ap_id)
504 |> order_by([activity], fragment("? desc nulls last", activity.id))
509 def get_latest_reaction(internal_activity_id, %{ap_id: ap_id}, emoji) do
510 %{data: %{"object" => object_ap_id}} = Activity.get_by_id(internal_activity_id)
513 |> Activity.Queries.by_type()
514 |> where(actor: ^ap_id)
515 |> where([activity], fragment("?->>'content' = ?", activity.data, ^emoji))
516 |> Activity.Queries.by_object_id(object_ap_id)
517 |> order_by([activity], fragment("? desc nulls last", activity.id))
522 #### Announce-related helpers
525 Returns an existing announce activity if the notice has already been announced
527 @spec get_existing_announce(String.t(), map()) :: Activity.t() | nil
528 def get_existing_announce(actor, %{data: %{"id" => ap_id}}) do
530 |> Activity.Queries.by_type()
531 |> where(actor: ^actor)
532 # this is to use the index
533 |> Activity.Queries.by_object_id(ap_id)
538 Make announce activity data for the given actor and object
540 # for relayed messages, we only want to send to subscribers
541 def make_announce_data(
542 %User{ap_id: ap_id} = user,
543 %Object{data: %{"id" => id}} = object,
548 "type" => "Announce",
551 "to" => [user.follower_address],
553 "context" => object.data["context"]
555 |> Maps.put_if_present("id", activity_id)
558 def make_announce_data(
559 %User{ap_id: ap_id} = user,
560 %Object{data: %{"id" => id}} = object,
565 "type" => "Announce",
568 "to" => [user.follower_address, object.data["actor"]],
569 "cc" => [Pleroma.Constants.as_public()],
570 "context" => object.data["context"]
572 |> Maps.put_if_present("id", activity_id)
576 %User{ap_id: actor, follower_address: follower_address},
578 data: %{"id" => undone_activity_id, "context" => context},
579 actor: undone_activity_actor
586 "object" => undone_activity_id,
587 "to" => [follower_address, undone_activity_actor],
588 "cc" => [Pleroma.Constants.as_public()],
591 |> Maps.put_if_present("id", activity_id)
594 @spec add_announce_to_object(Activity.t(), Object.t()) ::
595 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
596 def add_announce_to_object(
597 %Activity{data: %{"actor" => actor}},
600 unless actor |> User.get_cached_by_ap_id() |> User.invisible?() do
601 announcements = take_announcements(object)
603 with announcements <- Enum.uniq([actor | announcements]) do
604 update_element_in_object("announcement", announcements, object)
611 def add_announce_to_object(_, object), do: {:ok, object}
613 @spec remove_announce_from_object(Activity.t(), Object.t()) ::
614 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
615 def remove_announce_from_object(%Activity{data: %{"actor" => actor}}, object) do
616 with announcements <- List.delete(take_announcements(object), actor) do
617 update_element_in_object("announcement", announcements, object)
621 defp take_announcements(%{data: %{"announcements" => announcements}} = _)
622 when is_list(announcements),
625 defp take_announcements(_), do: []
627 #### Unfollow-related helpers
629 def make_unfollow_data(follower, followed, follow_activity, activity_id) do
632 "actor" => follower.ap_id,
633 "to" => [followed.ap_id],
634 "object" => follow_activity.data
636 |> Maps.put_if_present("id", activity_id)
639 #### Block-related helpers
640 @spec fetch_latest_block(User.t(), User.t()) :: Activity.t() | nil
641 def fetch_latest_block(%User{ap_id: blocker_id}, %User{ap_id: blocked_id}) do
643 |> Activity.Queries.by_type()
644 |> where(actor: ^blocker_id)
645 # this is to use the index
646 |> Activity.Queries.by_object_id(blocked_id)
647 |> order_by([activity], fragment("? desc nulls last", activity.id))
652 def make_block_data(blocker, blocked, activity_id) do
655 "actor" => blocker.ap_id,
656 "to" => [blocked.ap_id],
657 "object" => blocked.ap_id
659 |> Maps.put_if_present("id", activity_id)
662 #### Create-related helpers
664 def make_create_data(params, additional) do
665 published = params.published || make_date()
669 "to" => params.to |> Enum.uniq(),
670 "actor" => params.actor.ap_id,
671 "object" => params.object,
672 "published" => published,
673 "context" => params.context
675 |> Map.merge(additional)
678 #### Listen-related helpers
679 def make_listen_data(params, additional) do
680 published = params.published || make_date()
684 "to" => params.to |> Enum.uniq(),
685 "actor" => params.actor.ap_id,
686 "object" => params.object,
687 "published" => published,
688 "context" => params.context
690 |> Map.merge(additional)
693 #### Flag-related helpers
694 @spec make_flag_data(map(), map()) :: map()
695 def make_flag_data(%{actor: actor, context: context, content: content} = params, additional) do
698 "actor" => actor.ap_id,
699 "content" => content,
700 "object" => build_flag_object(params),
701 "context" => context,
704 |> Map.merge(additional)
707 def make_flag_data(_, _), do: %{}
709 defp build_flag_object(%{account: account, statuses: statuses}) do
710 [account.ap_id | build_flag_object(%{statuses: statuses})]
713 defp build_flag_object(%{statuses: statuses}) do
714 Enum.map(statuses || [], &build_flag_object/1)
717 defp build_flag_object(%Activity{data: %{"id" => id}, object: %{data: data}}) do
718 activity_actor = User.get_by_ap_id(data["actor"])
723 "content" => data["content"],
724 "published" => data["published"],
728 %{user: activity_actor, skip_visibility_check: true}
733 defp build_flag_object(act) when is_map(act) or is_binary(act) do
736 %Activity{} = act -> act.data["id"]
737 act when is_map(act) -> act["id"]
738 act when is_binary(act) -> act
741 case Activity.get_by_ap_id_with_object(id) do
742 %Activity{} = activity ->
743 build_flag_object(activity)
746 if activity = Activity.get_by_object_ap_id_with_object(id) do
747 build_flag_object(activity)
749 %{"id" => id, "deleted" => true}
754 defp build_flag_object(_), do: []
756 #### Report-related helpers
757 def get_reports(params, page, page_size) do
760 |> Map.put(:type, "Flag")
761 |> Map.put(:skip_preload, true)
762 |> Map.put(:preload_report_notes, true)
763 |> Map.put(:total, true)
764 |> Map.put(:limit, page_size)
765 |> Map.put(:offset, (page - 1) * page_size)
767 ActivityPub.fetch_activities([], params, :offset)
770 def update_report_state(%Activity{} = activity, state)
771 when state in @strip_status_report_states do
772 {:ok, stripped_activity} = strip_report_status_data(activity)
776 |> Map.put("state", state)
777 |> Map.put("object", stripped_activity.data["object"])
780 |> Changeset.change(data: new_data)
784 def update_report_state(%Activity{} = activity, state) when state in @supported_report_states do
785 new_data = Map.put(activity.data, "state", state)
788 |> Changeset.change(data: new_data)
792 def update_report_state(activity_ids, state) when state in @supported_report_states do
793 activities_num = length(activity_ids)
795 from(a in Activity, where: a.id in ^activity_ids)
796 |> update(set: [data: fragment("jsonb_set(data, '{state}', ?)", ^state)])
797 |> Repo.update_all([])
799 {^activities_num, _} -> :ok
800 _ -> {:error, activity_ids}
804 def update_report_state(_, _), do: {:error, "Unsupported state"}
806 def strip_report_status_data(activity) do
807 [actor | reported_activities] = activity.data["object"]
809 stripped_activities =
810 Enum.map(reported_activities, fn
811 act when is_map(act) -> act["id"]
812 act when is_binary(act) -> act
815 new_data = put_in(activity.data, ["object"], [actor | stripped_activities])
817 {:ok, %{activity | data: new_data}}
820 def update_activity_visibility(activity, visibility) when visibility in @valid_visibilities do
821 [to, cc, recipients] =
823 |> get_updated_targets(visibility)
824 |> Enum.map(&Enum.uniq/1)
833 |> Object.change(%{data: object_data})
834 |> Object.update_and_set_cache()
842 |> Map.put(:object, object)
843 |> Activity.change(%{data: activity_data, recipients: recipients})
847 def update_activity_visibility(_, _), do: {:error, "Unsupported visibility"}
849 defp get_updated_targets(
850 %Activity{data: %{"to" => to} = data, recipients: recipients},
853 cc = Map.get(data, "cc", [])
854 follower_address = User.get_cached_by_ap_id(data["actor"]).follower_address
855 public = Pleroma.Constants.as_public()
859 to = [public | List.delete(to, follower_address)]
860 cc = [follower_address | List.delete(cc, public)]
861 recipients = [public | recipients]
865 to = [follower_address | List.delete(to, public)]
866 cc = List.delete(cc, public)
867 recipients = List.delete(recipients, public)
871 to = [follower_address | List.delete(to, public)]
872 cc = [public | List.delete(cc, follower_address)]
873 recipients = recipients ++ [follower_address, public]
881 def get_existing_votes(actor, %{data: %{"id" => id}}) do
883 |> Activity.Queries.by_actor()
884 |> Activity.Queries.by_type("Create")
885 |> Activity.with_preloaded_object()
886 |> where([a, object: o], fragment("(?)->>'inReplyTo' = ?", o.data, ^to_string(id)))
887 |> where([a, object: o], fragment("(?)->>'type' = 'Answer'", o.data))