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.UserRelationship do
12 alias Pleroma.FollowingRelationship
15 alias Pleroma.UserRelationship
17 schema "user_relationships" do
18 belongs_to(:source, User, type: FlakeId.Ecto.CompatType)
19 belongs_to(:target, User, type: FlakeId.Ecto.CompatType)
20 field(:relationship_type, Pleroma.UserRelationship.Type)
22 timestamps(updated_at: false)
25 for relationship_type <- Keyword.keys(Pleroma.UserRelationship.Type.__enum_map__()) do
26 # `def create_block/2`, `def create_mute/2`, `def create_reblog_mute/2`,
27 # `def create_notification_mute/2`, `def create_inverse_subscription/2`
28 def unquote(:"create_#{relationship_type}")(source, target),
29 do: create(unquote(relationship_type), source, target)
31 # `def delete_block/2`, `def delete_mute/2`, `def delete_reblog_mute/2`,
32 # `def delete_notification_mute/2`, `def delete_inverse_subscription/2`
33 def unquote(:"delete_#{relationship_type}")(source, target),
34 do: delete(unquote(relationship_type), source, target)
36 # `def block_exists?/2`, `def mute_exists?/2`, `def reblog_mute_exists?/2`,
37 # `def notification_mute_exists?/2`, `def inverse_subscription_exists?/2`
38 def unquote(:"#{relationship_type}_exists?")(source, target),
39 do: exists?(unquote(relationship_type), source, target)
42 def user_relationship_types, do: Keyword.keys(user_relationship_mappings())
44 def user_relationship_mappings, do: Pleroma.UserRelationship.Type.__enum_map__()
46 def changeset(%UserRelationship{} = user_relationship, params \\ %{}) do
48 |> cast(params, [:relationship_type, :source_id, :target_id])
49 |> validate_required([:relationship_type, :source_id, :target_id])
50 |> unique_constraint(:relationship_type,
51 name: :user_relationships_source_id_relationship_type_target_id_index
53 |> validate_not_self_relationship()
56 def exists?(relationship_type, %User{} = source, %User{} = target) do
58 |> where(relationship_type: ^relationship_type, source_id: ^source.id, target_id: ^target.id)
62 def create(relationship_type, %User{} = source, %User{} = target) do
65 relationship_type: relationship_type,
70 on_conflict: {:replace_all_except, [:id]},
71 conflict_target: [:source_id, :relationship_type, :target_id]
75 def delete(relationship_type, %User{} = source, %User{} = target) do
76 attrs = %{relationship_type: relationship_type, source_id: source.id, target_id: target.id}
78 case Repo.get_by(UserRelationship, attrs) do
79 %UserRelationship{} = existing_record -> Repo.delete(existing_record)
87 source_to_target_rel_types \\ nil,
88 target_to_source_rel_types \\ nil
94 [] = _source_to_target_rel_types,
95 [] = _target_to_source_rel_types
103 source_to_target_rel_types,
104 target_to_source_rel_types
106 when is_list(source_users) and is_list(target_users) do
107 source_user_ids = User.binary_id(source_users)
108 target_user_ids = User.binary_id(target_users)
110 get_rel_type_codes = fn rel_type -> user_relationship_mappings()[rel_type] end
112 source_to_target_rel_types =
113 Enum.map(source_to_target_rel_types || user_relationship_types(), &get_rel_type_codes.(&1))
115 target_to_source_rel_types =
116 Enum.map(target_to_source_rel_types || user_relationship_types(), &get_rel_type_codes.(&1))
121 "(source_id = ANY(?) AND target_id = ANY(?) AND relationship_type = ANY(?)) OR \
122 (source_id = ANY(?) AND target_id = ANY(?) AND relationship_type = ANY(?))",
125 ^source_to_target_rel_types,
128 ^target_to_source_rel_types
131 |> select([ur], [ur.relationship_type, ur.source_id, ur.target_id])
135 def exists?(dictionary, rel_type, source, target, func) do
137 is_nil(source) or is_nil(target) ->
141 [rel_type, source.id, target.id] in dictionary
144 func.(source, target)
148 @doc ":relationships option for StatusView / AccountView / NotificationView"
149 def view_relationships_option(reading_user, actors, opts \\ [])
151 def view_relationships_option(nil = _reading_user, _actors, _opts) do
152 %{user_relationships: [], following_relationships: []}
155 def view_relationships_option(%User{} = reading_user, actors, opts) do
156 {source_to_target_rel_types, target_to_source_rel_types} =
157 case opts[:subset] do
159 # Used for statuses rendering (FE needs `muted` flag for each status when statuses load)
163 {[:block, :mute, :notification_mute, :reblog_mute], [:block, :inverse_subscription]}
166 raise "Unsupported :subset option value: #{inspect(unknown)}"
170 UserRelationship.dictionary(
173 source_to_target_rel_types,
174 target_to_source_rel_types
177 following_relationships =
178 case opts[:subset] do
183 FollowingRelationship.all_between_user_sets([reading_user], actors)
186 raise "Unsupported :subset option value: #{inspect(unknown)}"
189 %{user_relationships: user_relationships, following_relationships: following_relationships}
192 defp validate_not_self_relationship(%Changeset{} = changeset) do
194 |> validate_source_id_target_id_inequality()
195 |> validate_target_id_source_id_inequality()
198 defp validate_source_id_target_id_inequality(%Changeset{} = changeset) do
199 validate_change(changeset, :source_id, fn _, source_id ->
200 if source_id == get_field(changeset, :target_id) do
201 [source_id: "can't be equal to target_id"]
208 defp validate_target_id_source_id_inequality(%Changeset{} = changeset) do
209 validate_change(changeset, :target_id, fn _, target_id ->
210 if target_id == get_field(changeset, :source_id) do
211 [target_id: "can't be equal to source_id"]