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.Utils do
9 alias Pleroma.Notification
14 alias Pleroma.Web.ActivityPub.ActivityPub
15 alias Pleroma.Web.ActivityPub.Visibility
16 alias Pleroma.Web.AdminAPI.AccountView
17 alias Pleroma.Web.Endpoint
18 alias Pleroma.Web.Router.Helpers
23 require Pleroma.Constants
25 @supported_object_types [
35 @strip_status_report_states ~w(closed resolved)
36 @supported_report_states ~w(open closed resolved)
37 @valid_visibilities ~w(public unlisted private direct)
39 # Some implementations send the actor URI as the actor field, others send the entire actor object,
40 # so figure out what the actor's URI is based on what we have.
41 def get_ap_id(%{"id" => id} = _), do: id
42 def get_ap_id(id), do: id
44 def normalize_params(params) do
45 Map.put(params, "actor", get_ap_id(params["actor"]))
48 @spec determine_explicit_mentions(map()) :: map()
49 def determine_explicit_mentions(%{"tag" => tag} = _) when is_list(tag) do
51 %{"type" => "Mention", "href" => href} -> [href]
56 def determine_explicit_mentions(%{"tag" => tag} = object) when is_map(tag) do
58 |> Map.put("tag", [tag])
59 |> determine_explicit_mentions()
62 def determine_explicit_mentions(_), do: []
64 @spec label_in_collection?(any(), any()) :: boolean()
65 defp label_in_collection?(ap_id, coll) when is_binary(coll), do: ap_id == coll
66 defp label_in_collection?(ap_id, coll) when is_list(coll), do: ap_id in coll
67 defp label_in_collection?(_, _), do: false
69 @spec label_in_message?(String.t(), map()) :: boolean()
70 def label_in_message?(label, params),
72 [params["to"], params["cc"], params["bto"], params["bcc"]]
73 |> Enum.any?(&label_in_collection?(label, &1))
75 @spec unaddressed_message?(map()) :: boolean()
76 def unaddressed_message?(params),
78 [params["to"], params["cc"], params["bto"], params["bcc"]]
79 |> Enum.all?(&is_nil(&1))
81 @spec recipient_in_message(User.t(), User.t(), map()) :: boolean()
82 def recipient_in_message(%User{ap_id: ap_id} = recipient, %User{} = actor, params),
84 label_in_message?(ap_id, params) || unaddressed_message?(params) ||
85 User.following?(recipient, actor)
87 defp extract_list(target) when is_binary(target), do: [target]
88 defp extract_list(lst) when is_list(lst), do: lst
89 defp extract_list(_), do: []
91 def maybe_splice_recipient(ap_id, params) do
93 !label_in_collection?(ap_id, params["to"]) &&
94 !label_in_collection?(ap_id, params["cc"])
97 cc_list = extract_list(params["cc"])
98 Map.put(params, "cc", [ap_id | cc_list])
104 def make_json_ld_header do
107 "https://www.w3.org/ns/activitystreams",
108 "#{Web.base_url()}/schemas/litepub-0.1.jsonld",
117 DateTime.utc_now() |> DateTime.to_iso8601()
120 def generate_activity_id do
121 generate_id("activities")
124 def generate_context_id do
125 generate_id("contexts")
128 def generate_object_id do
129 Helpers.o_status_url(Endpoint, :object, UUID.generate())
132 def generate_id(type) do
133 "#{Web.base_url()}/#{type}/#{UUID.generate()}"
136 def get_notified_from_object(%{"type" => type} = object) when type in @supported_object_types do
137 fake_create_activity = %{
138 "to" => object["to"],
139 "cc" => object["cc"],
144 get_notified_from_object(fake_create_activity)
147 def get_notified_from_object(object) do
148 Notification.get_notified_from_activity(%Activity{data: object}, false)
151 def create_context(context) do
152 context = context || generate_id("contexts")
154 # Ecto has problems accessing the constraint inside the jsonb,
155 # so we explicitly check for the existed object before insert
156 object = Object.get_cached_by_ap_id(context)
158 with true <- is_nil(object),
159 changeset <- Object.context_mapping(context),
160 {:ok, inserted_object} <- Repo.insert(changeset) do
169 Enqueues an activity for federation if it's local
171 @spec maybe_federate(any()) :: :ok
172 def maybe_federate(%Activity{local: true} = activity) do
173 if Pleroma.Config.get!([:instance, :federating]) do
174 Pleroma.Web.Federator.publish(activity)
180 def maybe_federate(_), do: :ok
183 Adds an id and a published data if they aren't there,
184 also adds it to an included object
186 @spec lazy_put_activity_defaults(map(), boolean) :: map()
187 def lazy_put_activity_defaults(map, fake? \\ false)
189 def lazy_put_activity_defaults(map, true) do
191 |> Map.put_new("id", "pleroma:fakeid")
192 |> Map.put_new_lazy("published", &make_date/0)
193 |> Map.put_new("context", "pleroma:fakecontext")
194 |> Map.put_new("context_id", -1)
195 |> lazy_put_object_defaults(true)
198 def lazy_put_activity_defaults(map, _fake?) do
199 %{data: %{"id" => context}, id: context_id} = create_context(map["context"])
202 |> Map.put_new_lazy("id", &generate_activity_id/0)
203 |> Map.put_new_lazy("published", &make_date/0)
204 |> Map.put_new("context", context)
205 |> Map.put_new("context_id", context_id)
206 |> lazy_put_object_defaults(false)
209 # Adds an id and published date if they aren't there.
211 @spec lazy_put_object_defaults(map(), boolean()) :: map()
212 defp lazy_put_object_defaults(%{"object" => map} = activity, true)
216 |> Map.put_new("id", "pleroma:fake_object_id")
217 |> Map.put_new_lazy("published", &make_date/0)
218 |> Map.put_new("context", activity["context"])
219 |> Map.put_new("context_id", activity["context_id"])
220 |> Map.put_new("fake", true)
222 %{activity | "object" => object}
225 defp lazy_put_object_defaults(%{"object" => map} = activity, _)
229 |> Map.put_new_lazy("id", &generate_object_id/0)
230 |> Map.put_new_lazy("published", &make_date/0)
231 |> Map.put_new("context", activity["context"])
232 |> Map.put_new("context_id", activity["context_id"])
234 %{activity | "object" => object}
237 defp lazy_put_object_defaults(activity, _), do: activity
240 Inserts a full object if it is contained in an activity.
242 def insert_full_object(%{"object" => %{"type" => type} = object_data} = map)
243 when is_map(object_data) and type in @supported_object_types do
244 with {:ok, object} <- Object.create(object_data) do
245 map = Map.put(map, "object", object.data["id"])
251 def insert_full_object(map), do: {:ok, map, nil}
253 #### Like-related helpers
256 Returns an existing like if a user already liked an object
258 @spec get_existing_like(String.t(), map()) :: Activity.t() | nil
259 def get_existing_like(actor, %{data: %{"id" => id}}) do
261 |> Activity.Queries.by_actor()
262 |> Activity.Queries.by_object_id(id)
263 |> Activity.Queries.by_type("Like")
269 Returns like activities targeting an object
271 def get_object_likes(%{data: %{"id" => id}}) do
273 |> Activity.Queries.by_object_id()
274 |> Activity.Queries.by_type("Like")
278 @spec make_like_data(User.t(), map(), String.t()) :: map()
280 %User{ap_id: ap_id} = actor,
281 %{data: %{"actor" => object_actor_id, "id" => id}} = object,
284 object_actor = User.get_cached_by_ap_id(object_actor_id)
287 if Visibility.is_public?(object) do
288 [actor.follower_address, object.data["actor"]]
290 [object.data["actor"]]
294 (object.data["to"] ++ (object.data["cc"] || []))
295 |> List.delete(actor.ap_id)
296 |> List.delete(object_actor.follower_address)
304 "context" => object.data["context"]
306 |> maybe_put("id", activity_id)
309 def make_emoji_reaction_data(user, object, emoji, activity_id) do
310 make_like_data(user, object, activity_id)
311 |> Map.put("type", "EmojiReaction")
312 |> Map.put("content", emoji)
315 @spec update_element_in_object(String.t(), list(any), Object.t(), integer() | nil) ::
316 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
317 def update_element_in_object(property, element, object, count \\ nil) do
325 %{"#{property}_count" => length, "#{property}s" => element}
329 |> Changeset.change(data: data)
330 |> Object.update_and_set_cache()
333 @spec add_emoji_reaction_to_object(Activity.t(), Object.t()) ::
334 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
336 def add_emoji_reaction_to_object(
337 %Activity{data: %{"content" => emoji, "actor" => actor}},
340 reactions = object.data["reactions"] || []
343 case Enum.find_index(reactions, fn [candidate, _] -> emoji == candidate end) do
345 reactions ++ [[emoji, [actor]]]
351 fn [emoji, users] -> [emoji, Enum.uniq([actor | users])] end
355 count = emoji_count(new_reactions)
357 update_element_in_object("reaction", new_reactions, object, count)
360 def emoji_count(reactions_list) do
361 Enum.reduce(reactions_list, 0, fn [_, users], acc -> acc + length(users) end)
364 def remove_emoji_reaction_from_object(
365 %Activity{data: %{"content" => emoji, "actor" => actor}},
368 reactions = object.data["reactions"] || []
371 case Enum.find_index(reactions, fn [candidate, _] -> emoji == candidate end) do
379 fn [emoji, users] -> [emoji, List.delete(users, actor)] end
381 |> Enum.reject(fn [_, users] -> Enum.empty?(users) end)
384 count = emoji_count(new_reactions)
385 update_element_in_object("reaction", new_reactions, object, count)
388 @spec add_like_to_object(Activity.t(), Object.t()) ::
389 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
390 def add_like_to_object(%Activity{data: %{"actor" => actor}}, object) do
391 [actor | fetch_likes(object)]
393 |> update_likes_in_object(object)
396 @spec remove_like_from_object(Activity.t(), Object.t()) ::
397 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
398 def remove_like_from_object(%Activity{data: %{"actor" => actor}}, object) do
401 |> List.delete(actor)
402 |> update_likes_in_object(object)
405 defp update_likes_in_object(likes, object) do
406 update_element_in_object("like", likes, object)
409 defp fetch_likes(object) do
410 if is_list(object.data["likes"]) do
417 #### Follow-related helpers
420 Updates a follow activity's state (for locked accounts).
422 @spec update_follow_state_for_all(Activity.t(), String.t()) :: {:ok, Activity} | {:error, any()}
423 def update_follow_state_for_all(
424 %Activity{data: %{"actor" => actor, "object" => object}} = activity,
428 |> Activity.Queries.by_type()
429 |> Activity.Queries.by_actor(actor)
430 |> Activity.Queries.by_object_id(object)
431 |> where(fragment("data->>'state' = 'pending'"))
432 |> update(set: [data: fragment("jsonb_set(data, '{state}', ?)", ^state)])
433 |> Repo.update_all([])
435 User.set_follow_state_cache(actor, object, state)
437 activity = Activity.get_by_id(activity.id)
442 def update_follow_state(
443 %Activity{data: %{"actor" => actor, "object" => object}} = activity,
446 new_data = Map.put(activity.data, "state", state)
447 changeset = Changeset.change(activity, data: new_data)
449 with {:ok, activity} <- Repo.update(changeset) do
450 User.set_follow_state_cache(actor, object, state)
456 Makes a follow activity data for the given follower and followed
458 def make_follow_data(
459 %User{ap_id: follower_id},
460 %User{ap_id: followed_id} = _followed,
465 "actor" => follower_id,
466 "to" => [followed_id],
467 "cc" => [Pleroma.Constants.as_public()],
468 "object" => followed_id,
471 |> maybe_put("id", activity_id)
474 def fetch_latest_follow(%User{ap_id: follower_id}, %User{ap_id: followed_id}) do
476 |> Activity.Queries.by_type()
477 |> where(actor: ^follower_id)
478 # this is to use the index
479 |> Activity.Queries.by_object_id(followed_id)
480 |> order_by([activity], fragment("? desc nulls last", activity.id))
485 def get_latest_reaction(internal_activity_id, %{ap_id: ap_id}, emoji) do
486 %{data: %{"object" => object_ap_id}} = Activity.get_by_id(internal_activity_id)
489 |> Activity.Queries.by_type()
490 |> where(actor: ^ap_id)
491 |> where([activity], fragment("?->>'content' = ?", activity.data, ^emoji))
492 |> Activity.Queries.by_object_id(object_ap_id)
493 |> order_by([activity], fragment("? desc nulls last", activity.id))
498 #### Announce-related helpers
501 Retruns an existing announce activity if the notice has already been announced
503 @spec get_existing_announce(String.t(), map()) :: Activity.t() | nil
504 def get_existing_announce(actor, %{data: %{"id" => ap_id}}) do
506 |> Activity.Queries.by_type()
507 |> where(actor: ^actor)
508 # this is to use the index
509 |> Activity.Queries.by_object_id(ap_id)
514 Make announce activity data for the given actor and object
516 # for relayed messages, we only want to send to subscribers
517 def make_announce_data(
518 %User{ap_id: ap_id} = user,
519 %Object{data: %{"id" => id}} = object,
524 "type" => "Announce",
527 "to" => [user.follower_address],
529 "context" => object.data["context"]
531 |> maybe_put("id", activity_id)
534 def make_announce_data(
535 %User{ap_id: ap_id} = user,
536 %Object{data: %{"id" => id}} = object,
541 "type" => "Announce",
544 "to" => [user.follower_address, object.data["actor"]],
545 "cc" => [Pleroma.Constants.as_public()],
546 "context" => object.data["context"]
548 |> maybe_put("id", activity_id)
552 Make unannounce activity data for the given actor and object
554 def make_unannounce_data(
555 %User{ap_id: ap_id} = user,
556 %Activity{data: %{"context" => context, "object" => object}} = activity,
559 object = Object.normalize(object)
564 "object" => activity.data,
565 "to" => [user.follower_address, object.data["actor"]],
566 "cc" => [Pleroma.Constants.as_public()],
569 |> maybe_put("id", activity_id)
572 def make_unlike_data(
573 %User{ap_id: ap_id} = user,
574 %Activity{data: %{"context" => context, "object" => object}} = activity,
577 object = Object.normalize(object)
582 "object" => activity.data,
583 "to" => [user.follower_address, object.data["actor"]],
584 "cc" => [Pleroma.Constants.as_public()],
587 |> maybe_put("id", activity_id)
591 %User{ap_id: actor, follower_address: follower_address},
593 data: %{"id" => undone_activity_id, "context" => context},
594 actor: undone_activity_actor
601 "object" => undone_activity_id,
602 "to" => [follower_address, undone_activity_actor],
603 "cc" => [Pleroma.Constants.as_public()],
606 |> maybe_put("id", activity_id)
609 @spec add_announce_to_object(Activity.t(), Object.t()) ::
610 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
611 def add_announce_to_object(
612 %Activity{data: %{"actor" => actor}},
615 unless actor |> User.get_cached_by_ap_id() |> User.invisible?() do
616 announcements = take_announcements(object)
618 with announcements <- Enum.uniq([actor | announcements]) do
619 update_element_in_object("announcement", announcements, object)
626 def add_announce_to_object(_, object), do: {:ok, object}
628 @spec remove_announce_from_object(Activity.t(), Object.t()) ::
629 {:ok, Object.t()} | {:error, Ecto.Changeset.t()}
630 def remove_announce_from_object(%Activity{data: %{"actor" => actor}}, object) do
631 with announcements <- List.delete(take_announcements(object), actor) do
632 update_element_in_object("announcement", announcements, object)
636 defp take_announcements(%{data: %{"announcements" => announcements}} = _)
637 when is_list(announcements),
640 defp take_announcements(_), do: []
642 #### Unfollow-related helpers
644 def make_unfollow_data(follower, followed, follow_activity, activity_id) do
647 "actor" => follower.ap_id,
648 "to" => [followed.ap_id],
649 "object" => follow_activity.data
651 |> maybe_put("id", activity_id)
654 #### Block-related helpers
655 @spec fetch_latest_block(User.t(), User.t()) :: Activity.t() | nil
656 def fetch_latest_block(%User{ap_id: blocker_id}, %User{ap_id: blocked_id}) do
658 |> Activity.Queries.by_type()
659 |> where(actor: ^blocker_id)
660 # this is to use the index
661 |> Activity.Queries.by_object_id(blocked_id)
662 |> order_by([activity], fragment("? desc nulls last", activity.id))
667 def make_block_data(blocker, blocked, activity_id) do
670 "actor" => blocker.ap_id,
671 "to" => [blocked.ap_id],
672 "object" => blocked.ap_id
674 |> maybe_put("id", activity_id)
677 def make_unblock_data(blocker, blocked, block_activity, activity_id) do
680 "actor" => blocker.ap_id,
681 "to" => [blocked.ap_id],
682 "object" => block_activity.data
684 |> maybe_put("id", activity_id)
687 #### Create-related helpers
689 def make_create_data(params, additional) do
690 published = params.published || make_date()
694 "to" => params.to |> Enum.uniq(),
695 "actor" => params.actor.ap_id,
696 "object" => params.object,
697 "published" => published,
698 "context" => params.context
700 |> Map.merge(additional)
703 #### Listen-related helpers
704 def make_listen_data(params, additional) do
705 published = params.published || make_date()
709 "to" => params.to |> Enum.uniq(),
710 "actor" => params.actor.ap_id,
711 "object" => params.object,
712 "published" => published,
713 "context" => params.context
715 |> Map.merge(additional)
718 #### Flag-related helpers
719 @spec make_flag_data(map(), map()) :: map()
720 def make_flag_data(%{actor: actor, context: context, content: content} = params, additional) do
723 "actor" => actor.ap_id,
724 "content" => content,
725 "object" => build_flag_object(params),
726 "context" => context,
729 |> Map.merge(additional)
732 def make_flag_data(_, _), do: %{}
734 defp build_flag_object(%{account: account, statuses: statuses} = _) do
735 [account.ap_id] ++ build_flag_object(%{statuses: statuses})
738 defp build_flag_object(%{statuses: statuses}) do
739 Enum.map(statuses || [], &build_flag_object/1)
742 defp build_flag_object(act) when is_map(act) or is_binary(act) do
745 %Activity{} = act -> act.data["id"]
746 act when is_map(act) -> act["id"]
747 act when is_binary(act) -> act
750 case Activity.get_by_ap_id_with_object(id) do
751 %Activity{} = activity ->
754 "id" => activity.data["id"],
755 "content" => activity.object.data["content"],
756 "published" => activity.object.data["published"],
758 AccountView.render("show.json", %{
759 user: User.get_by_ap_id(activity.object.data["actor"])
764 %{"id" => id, "deleted" => true}
768 defp build_flag_object(_), do: []
771 Fetches the OrderedCollection/OrderedCollectionPage from `from`, limiting the amount of pages fetched after
772 the first one to `pages_left` pages.
773 If the amount of pages is higher than the collection has, it returns whatever was there.
775 def fetch_ordered_collection(from, pages_left, acc \\ []) do
776 with {:ok, response} <- Tesla.get(from),
777 {:ok, collection} <- Jason.decode(response.body) do
778 case collection["type"] do
779 "OrderedCollection" ->
780 # If we've encountered the OrderedCollection and not the page,
781 # just call the same function on the page address
782 fetch_ordered_collection(collection["first"], pages_left)
784 "OrderedCollectionPage" ->
786 # There are still more pages
787 if Map.has_key?(collection, "next") do
788 # There are still more pages, go deeper saving what we have into the accumulator
789 fetch_ordered_collection(
792 acc ++ collection["orderedItems"]
795 # No more pages left, just return whatever we already have
796 acc ++ collection["orderedItems"]
799 # Got the amount of pages needed, add them all to the accumulator
800 acc ++ collection["orderedItems"]
804 {:error, "Not an OrderedCollection or OrderedCollectionPage"}
809 #### Report-related helpers
810 def get_reports(params, page, page_size) do
813 |> Map.put("type", "Flag")
814 |> Map.put("skip_preload", true)
815 |> Map.put("preload_report_notes", true)
816 |> Map.put("total", true)
817 |> Map.put("limit", page_size)
818 |> Map.put("offset", (page - 1) * page_size)
820 ActivityPub.fetch_activities([], params, :offset)
823 def parse_report_group(activity) do
824 reports = get_reports_by_status_id(activity["id"])
825 max_date = Enum.max_by(reports, &NaiveDateTime.from_iso8601!(&1.data["published"]))
826 actors = Enum.map(reports, & &1.user_actor)
827 [%{data: %{"object" => [account_id | _]}} | _] = reports
830 AccountView.render("show.json", %{
831 user: User.get_by_ap_id(account_id)
834 status = get_status_data(activity)
837 date: max_date.data["published"],
840 actors: Enum.uniq(actors),
845 defp get_status_data(status) do
846 case status["deleted"] do
849 "id" => status["id"],
854 Activity.get_by_ap_id(status["id"])
858 def get_reports_by_status_id(ap_id) do
860 where: fragment("(?)->>'type' = 'Flag'", a.data),
861 where: fragment("(?)->'object' @> ?", a.data, ^[%{id: ap_id}]),
862 or_where: fragment("(?)->'object' @> ?", a.data, ^[ap_id])
864 |> Activity.with_preloaded_user_actor()
868 @spec get_reports_grouped_by_status([String.t()]) :: %{
869 required(:groups) => [
871 required(:date) => String.t(),
872 required(:account) => %{},
873 required(:status) => %{},
874 required(:actors) => [%User{}],
875 required(:reports) => [%Activity{}]
879 def get_reports_grouped_by_status(activity_ids) do
884 |> build_flag_object()
885 |> parse_report_group()
889 groups: parsed_groups
893 @spec get_reported_activities() :: [
895 required(:activity) => String.t(),
896 required(:date) => String.t()
899 def get_reported_activities do
900 reported_activities_query =
902 where: fragment("(?)->>'type' = 'Flag'", a.data),
904 activity: fragment("jsonb_array_elements((? #- '{object,0}')->'object')", a.data)
906 group_by: fragment("activity")
909 from(a in subquery(reported_activities_query),
912 id: fragment("COALESCE(?->>'id'::text, ? #>> '{}')", a.activity, a.activity)
919 def update_report_state(%Activity{} = activity, state)
920 when state in @strip_status_report_states do
921 {:ok, stripped_activity} = strip_report_status_data(activity)
925 |> Map.put("state", state)
926 |> Map.put("object", stripped_activity.data["object"])
929 |> Changeset.change(data: new_data)
933 def update_report_state(%Activity{} = activity, state) when state in @supported_report_states do
934 new_data = Map.put(activity.data, "state", state)
937 |> Changeset.change(data: new_data)
941 def update_report_state(activity_ids, state) when state in @supported_report_states do
942 activities_num = length(activity_ids)
944 from(a in Activity, where: a.id in ^activity_ids)
945 |> update(set: [data: fragment("jsonb_set(data, '{state}', ?)", ^state)])
946 |> Repo.update_all([])
948 {^activities_num, _} -> :ok
949 _ -> {:error, activity_ids}
953 def update_report_state(_, _), do: {:error, "Unsupported state"}
955 def strip_report_status_data(activity) do
956 [actor | reported_activities] = activity.data["object"]
958 stripped_activities =
959 Enum.map(reported_activities, fn
960 act when is_map(act) -> act["id"]
961 act when is_binary(act) -> act
964 new_data = put_in(activity.data, ["object"], [actor | stripped_activities])
966 {:ok, %{activity | data: new_data}}
969 def update_activity_visibility(activity, visibility) when visibility in @valid_visibilities do
970 [to, cc, recipients] =
972 |> get_updated_targets(visibility)
973 |> Enum.map(&Enum.uniq/1)
982 |> Object.change(%{data: object_data})
983 |> Object.update_and_set_cache()
991 |> Map.put(:object, object)
992 |> Activity.change(%{data: activity_data, recipients: recipients})
996 def update_activity_visibility(_, _), do: {:error, "Unsupported visibility"}
998 defp get_updated_targets(
999 %Activity{data: %{"to" => to} = data, recipients: recipients},
1002 cc = Map.get(data, "cc", [])
1003 follower_address = User.get_cached_by_ap_id(data["actor"]).follower_address
1004 public = Pleroma.Constants.as_public()
1008 to = [public | List.delete(to, follower_address)]
1009 cc = [follower_address | List.delete(cc, public)]
1010 recipients = [public | recipients]
1011 [to, cc, recipients]
1014 to = [follower_address | List.delete(to, public)]
1015 cc = List.delete(cc, public)
1016 recipients = List.delete(recipients, public)
1017 [to, cc, recipients]
1020 to = [follower_address | List.delete(to, public)]
1021 cc = [public | List.delete(cc, follower_address)]
1022 recipients = recipients ++ [follower_address, public]
1023 [to, cc, recipients]
1026 [to, cc, recipients]
1030 def get_existing_votes(actor, %{data: %{"id" => id}}) do
1032 |> Activity.Queries.by_actor()
1033 |> Activity.Queries.by_type("Create")
1034 |> Activity.with_preloaded_object()
1035 |> where([a, object: o], fragment("(?)->>'inReplyTo' = ?", o.data, ^to_string(id)))
1036 |> where([a, object: o], fragment("(?)->>'type' = 'Answer'", o.data))
1040 def maybe_put(map, _key, nil), do: map
1041 def maybe_put(map, key, value), do: Map.put(map, key, value)