remove `unread_conversation_count` from User
[akkoma] / lib / pleroma / user.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.User do
6 use Ecto.Schema
7
8 import Ecto.Changeset
9 import Ecto.Query
10 import Ecto, only: [assoc: 2]
11
12 alias Ecto.Multi
13 alias Pleroma.Activity
14 alias Pleroma.Config
15 alias Pleroma.Conversation.Participation
16 alias Pleroma.Delivery
17 alias Pleroma.EctoType.ActivityPub.ObjectValidators
18 alias Pleroma.Emoji
19 alias Pleroma.FollowingRelationship
20 alias Pleroma.Formatter
21 alias Pleroma.HTML
22 alias Pleroma.Keys
23 alias Pleroma.MFA
24 alias Pleroma.Notification
25 alias Pleroma.Object
26 alias Pleroma.Registration
27 alias Pleroma.Repo
28 alias Pleroma.RepoStreamer
29 alias Pleroma.User
30 alias Pleroma.UserRelationship
31 alias Pleroma.Web
32 alias Pleroma.Web.ActivityPub.ActivityPub
33 alias Pleroma.Web.ActivityPub.Builder
34 alias Pleroma.Web.ActivityPub.Pipeline
35 alias Pleroma.Web.ActivityPub.Utils
36 alias Pleroma.Web.CommonAPI
37 alias Pleroma.Web.CommonAPI.Utils, as: CommonUtils
38 alias Pleroma.Web.OAuth
39 alias Pleroma.Web.RelMe
40 alias Pleroma.Workers.BackgroundWorker
41
42 require Logger
43
44 @type t :: %__MODULE__{}
45 @type account_status ::
46 :active
47 | :deactivated
48 | :password_reset_pending
49 | :confirmation_pending
50 | :approval_pending
51 @primary_key {:id, FlakeId.Ecto.CompatType, autogenerate: true}
52
53 # credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
54 @email_regex ~r/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/
55
56 @strict_local_nickname_regex ~r/^[a-zA-Z\d]+$/
57 @extended_local_nickname_regex ~r/^[a-zA-Z\d_-]+$/
58
59 # AP ID user relationships (blocks, mutes etc.)
60 # Format: [rel_type: [outgoing_rel: :outgoing_rel_target, incoming_rel: :incoming_rel_source]]
61 @user_relationships_config [
62 block: [
63 blocker_blocks: :blocked_users,
64 blockee_blocks: :blocker_users
65 ],
66 mute: [
67 muter_mutes: :muted_users,
68 mutee_mutes: :muter_users
69 ],
70 reblog_mute: [
71 reblog_muter_mutes: :reblog_muted_users,
72 reblog_mutee_mutes: :reblog_muter_users
73 ],
74 notification_mute: [
75 notification_muter_mutes: :notification_muted_users,
76 notification_mutee_mutes: :notification_muter_users
77 ],
78 # Note: `inverse_subscription` relationship is inverse: subscriber acts as relationship target
79 inverse_subscription: [
80 subscribee_subscriptions: :subscriber_users,
81 subscriber_subscriptions: :subscribee_users
82 ]
83 ]
84
85 schema "users" do
86 field(:bio, :string)
87 field(:raw_bio, :string)
88 field(:email, :string)
89 field(:name, :string)
90 field(:nickname, :string)
91 field(:password_hash, :string)
92 field(:password, :string, virtual: true)
93 field(:password_confirmation, :string, virtual: true)
94 field(:keys, :string)
95 field(:public_key, :string)
96 field(:ap_id, :string)
97 field(:avatar, :map, default: %{})
98 field(:local, :boolean, default: true)
99 field(:follower_address, :string)
100 field(:following_address, :string)
101 field(:search_rank, :float, virtual: true)
102 field(:search_type, :integer, virtual: true)
103 field(:tags, {:array, :string}, default: [])
104 field(:last_refreshed_at, :naive_datetime_usec)
105 field(:last_digest_emailed_at, :naive_datetime)
106 field(:banner, :map, default: %{})
107 field(:background, :map, default: %{})
108 field(:note_count, :integer, default: 0)
109 field(:follower_count, :integer, default: 0)
110 field(:following_count, :integer, default: 0)
111 field(:locked, :boolean, default: false)
112 field(:confirmation_pending, :boolean, default: false)
113 field(:password_reset_pending, :boolean, default: false)
114 field(:approval_pending, :boolean, default: false)
115 field(:registration_reason, :string, default: nil)
116 field(:confirmation_token, :string, default: nil)
117 field(:default_scope, :string, default: "public")
118 field(:domain_blocks, {:array, :string}, default: [])
119 field(:deactivated, :boolean, default: false)
120 field(:no_rich_text, :boolean, default: false)
121 field(:ap_enabled, :boolean, default: false)
122 field(:is_moderator, :boolean, default: false)
123 field(:is_admin, :boolean, default: false)
124 field(:show_role, :boolean, default: true)
125 field(:mastofe_settings, :map, default: nil)
126 field(:uri, ObjectValidators.Uri, default: nil)
127 field(:hide_followers_count, :boolean, default: false)
128 field(:hide_follows_count, :boolean, default: false)
129 field(:hide_followers, :boolean, default: false)
130 field(:hide_follows, :boolean, default: false)
131 field(:hide_favorites, :boolean, default: true)
132 field(:pinned_activities, {:array, :string}, default: [])
133 field(:email_notifications, :map, default: %{"digest" => false})
134 field(:mascot, :map, default: nil)
135 field(:emoji, :map, default: %{})
136 field(:pleroma_settings_store, :map, default: %{})
137 field(:fields, {:array, :map}, default: [])
138 field(:raw_fields, {:array, :map}, default: [])
139 field(:discoverable, :boolean, default: false)
140 field(:invisible, :boolean, default: false)
141 field(:allow_following_move, :boolean, default: true)
142 field(:skip_thread_containment, :boolean, default: false)
143 field(:actor_type, :string, default: "Person")
144 field(:also_known_as, {:array, :string}, default: [])
145 field(:inbox, :string)
146 field(:shared_inbox, :string)
147 field(:accepts_chat_messages, :boolean, default: nil)
148
149 embeds_one(
150 :notification_settings,
151 Pleroma.User.NotificationSetting,
152 on_replace: :update
153 )
154
155 has_many(:notifications, Notification)
156 has_many(:registrations, Registration)
157 has_many(:deliveries, Delivery)
158
159 has_many(:outgoing_relationships, UserRelationship, foreign_key: :source_id)
160 has_many(:incoming_relationships, UserRelationship, foreign_key: :target_id)
161
162 for {relationship_type,
163 [
164 {outgoing_relation, outgoing_relation_target},
165 {incoming_relation, incoming_relation_source}
166 ]} <- @user_relationships_config do
167 # Definitions of `has_many` relations: :blocker_blocks, :muter_mutes, :reblog_muter_mutes,
168 # :notification_muter_mutes, :subscribee_subscriptions
169 has_many(outgoing_relation, UserRelationship,
170 foreign_key: :source_id,
171 where: [relationship_type: relationship_type]
172 )
173
174 # Definitions of `has_many` relations: :blockee_blocks, :mutee_mutes, :reblog_mutee_mutes,
175 # :notification_mutee_mutes, :subscriber_subscriptions
176 has_many(incoming_relation, UserRelationship,
177 foreign_key: :target_id,
178 where: [relationship_type: relationship_type]
179 )
180
181 # Definitions of `has_many` relations: :blocked_users, :muted_users, :reblog_muted_users,
182 # :notification_muted_users, :subscriber_users
183 has_many(outgoing_relation_target, through: [outgoing_relation, :target])
184
185 # Definitions of `has_many` relations: :blocker_users, :muter_users, :reblog_muter_users,
186 # :notification_muter_users, :subscribee_users
187 has_many(incoming_relation_source, through: [incoming_relation, :source])
188 end
189
190 # `:blocks` is deprecated (replaced with `blocked_users` relation)
191 field(:blocks, {:array, :string}, default: [])
192 # `:mutes` is deprecated (replaced with `muted_users` relation)
193 field(:mutes, {:array, :string}, default: [])
194 # `:muted_reblogs` is deprecated (replaced with `reblog_muted_users` relation)
195 field(:muted_reblogs, {:array, :string}, default: [])
196 # `:muted_notifications` is deprecated (replaced with `notification_muted_users` relation)
197 field(:muted_notifications, {:array, :string}, default: [])
198 # `:subscribers` is deprecated (replaced with `subscriber_users` relation)
199 field(:subscribers, {:array, :string}, default: [])
200
201 embeds_one(
202 :multi_factor_authentication_settings,
203 MFA.Settings,
204 on_replace: :delete
205 )
206
207 timestamps()
208 end
209
210 for {_relationship_type, [{_outgoing_relation, outgoing_relation_target}, _]} <-
211 @user_relationships_config do
212 # `def blocked_users_relation/2`, `def muted_users_relation/2`,
213 # `def reblog_muted_users_relation/2`, `def notification_muted_users/2`,
214 # `def subscriber_users/2`
215 def unquote(:"#{outgoing_relation_target}_relation")(user, restrict_deactivated? \\ false) do
216 target_users_query = assoc(user, unquote(outgoing_relation_target))
217
218 if restrict_deactivated? do
219 restrict_deactivated(target_users_query)
220 else
221 target_users_query
222 end
223 end
224
225 # `def blocked_users/2`, `def muted_users/2`, `def reblog_muted_users/2`,
226 # `def notification_muted_users/2`, `def subscriber_users/2`
227 def unquote(outgoing_relation_target)(user, restrict_deactivated? \\ false) do
228 __MODULE__
229 |> apply(unquote(:"#{outgoing_relation_target}_relation"), [
230 user,
231 restrict_deactivated?
232 ])
233 |> Repo.all()
234 end
235
236 # `def blocked_users_ap_ids/2`, `def muted_users_ap_ids/2`, `def reblog_muted_users_ap_ids/2`,
237 # `def notification_muted_users_ap_ids/2`, `def subscriber_users_ap_ids/2`
238 def unquote(:"#{outgoing_relation_target}_ap_ids")(user, restrict_deactivated? \\ false) do
239 __MODULE__
240 |> apply(unquote(:"#{outgoing_relation_target}_relation"), [
241 user,
242 restrict_deactivated?
243 ])
244 |> select([u], u.ap_id)
245 |> Repo.all()
246 end
247 end
248
249 defdelegate following_count(user), to: FollowingRelationship
250 defdelegate following(user), to: FollowingRelationship
251 defdelegate following?(follower, followed), to: FollowingRelationship
252 defdelegate following_ap_ids(user), to: FollowingRelationship
253 defdelegate get_follow_requests(user), to: FollowingRelationship
254 defdelegate search(query, opts \\ []), to: User.Search
255
256 @doc """
257 Dumps Flake Id to SQL-compatible format (16-byte UUID).
258 E.g. "9pQtDGXuq4p3VlcJEm" -> <<0, 0, 1, 110, 179, 218, 42, 92, 213, 41, 44, 227, 95, 213, 0, 0>>
259 """
260 def binary_id(source_id) when is_binary(source_id) do
261 with {:ok, dumped_id} <- FlakeId.Ecto.CompatType.dump(source_id) do
262 dumped_id
263 else
264 _ -> source_id
265 end
266 end
267
268 def binary_id(source_ids) when is_list(source_ids) do
269 Enum.map(source_ids, &binary_id/1)
270 end
271
272 def binary_id(%User{} = user), do: binary_id(user.id)
273
274 @doc "Returns status account"
275 @spec account_status(User.t()) :: account_status()
276 def account_status(%User{deactivated: true}), do: :deactivated
277 def account_status(%User{password_reset_pending: true}), do: :password_reset_pending
278 def account_status(%User{approval_pending: true}), do: :approval_pending
279
280 def account_status(%User{confirmation_pending: true}) do
281 if Config.get([:instance, :account_activation_required]) do
282 :confirmation_pending
283 else
284 :active
285 end
286 end
287
288 def account_status(%User{}), do: :active
289
290 @spec visible_for(User.t(), User.t() | nil) ::
291 :visible
292 | :invisible
293 | :restricted_unauthenticated
294 | :deactivated
295 | :confirmation_pending
296 def visible_for(user, for_user \\ nil)
297
298 def visible_for(%User{invisible: true}, _), do: :invisible
299
300 def visible_for(%User{id: user_id}, %User{id: user_id}), do: :visible
301
302 def visible_for(%User{} = user, nil) do
303 if restrict_unauthenticated?(user) do
304 :restrict_unauthenticated
305 else
306 visible_account_status(user)
307 end
308 end
309
310 def visible_for(%User{} = user, for_user) do
311 if superuser?(for_user) do
312 :visible
313 else
314 visible_account_status(user)
315 end
316 end
317
318 def visible_for(_, _), do: :invisible
319
320 defp restrict_unauthenticated?(%User{local: true}) do
321 Config.restrict_unauthenticated_access?(:profiles, :local)
322 end
323
324 defp restrict_unauthenticated?(%User{local: _}) do
325 Config.restrict_unauthenticated_access?(:profiles, :remote)
326 end
327
328 defp visible_account_status(user) do
329 status = account_status(user)
330
331 if status in [:active, :password_reset_pending] do
332 :visible
333 else
334 status
335 end
336 end
337
338 @spec superuser?(User.t()) :: boolean()
339 def superuser?(%User{local: true, is_admin: true}), do: true
340 def superuser?(%User{local: true, is_moderator: true}), do: true
341 def superuser?(_), do: false
342
343 @spec invisible?(User.t()) :: boolean()
344 def invisible?(%User{invisible: true}), do: true
345 def invisible?(_), do: false
346
347 def avatar_url(user, options \\ []) do
348 case user.avatar do
349 %{"url" => [%{"href" => href} | _]} ->
350 href
351
352 _ ->
353 unless options[:no_default] do
354 Config.get([:assets, :default_user_avatar], "#{Web.base_url()}/images/avi.png")
355 end
356 end
357 end
358
359 def banner_url(user, options \\ []) do
360 case user.banner do
361 %{"url" => [%{"href" => href} | _]} -> href
362 _ -> !options[:no_default] && "#{Web.base_url()}/images/banner.png"
363 end
364 end
365
366 # Should probably be renamed or removed
367 def ap_id(%User{nickname: nickname}), do: "#{Web.base_url()}/users/#{nickname}"
368
369 def ap_followers(%User{follower_address: fa}) when is_binary(fa), do: fa
370 def ap_followers(%User{} = user), do: "#{ap_id(user)}/followers"
371
372 @spec ap_following(User.t()) :: String.t()
373 def ap_following(%User{following_address: fa}) when is_binary(fa), do: fa
374 def ap_following(%User{} = user), do: "#{ap_id(user)}/following"
375
376 @spec restrict_deactivated(Ecto.Query.t()) :: Ecto.Query.t()
377 def restrict_deactivated(query) do
378 from(u in query, where: u.deactivated != ^true)
379 end
380
381 defp truncate_fields_param(params) do
382 if Map.has_key?(params, :fields) do
383 Map.put(params, :fields, Enum.map(params[:fields], &truncate_field/1))
384 else
385 params
386 end
387 end
388
389 defp truncate_if_exists(params, key, max_length) do
390 if Map.has_key?(params, key) and is_binary(params[key]) do
391 {value, _chopped} = String.split_at(params[key], max_length)
392 Map.put(params, key, value)
393 else
394 params
395 end
396 end
397
398 defp fix_follower_address(%{follower_address: _, following_address: _} = params), do: params
399
400 defp fix_follower_address(%{nickname: nickname} = params),
401 do: Map.put(params, :follower_address, ap_followers(%User{nickname: nickname}))
402
403 defp fix_follower_address(params), do: params
404
405 def remote_user_changeset(struct \\ %User{local: false}, params) do
406 bio_limit = Config.get([:instance, :user_bio_length], 5000)
407 name_limit = Config.get([:instance, :user_name_length], 100)
408
409 name =
410 case params[:name] do
411 name when is_binary(name) and byte_size(name) > 0 -> name
412 _ -> params[:nickname]
413 end
414
415 params =
416 params
417 |> Map.put(:name, name)
418 |> Map.put_new(:last_refreshed_at, NaiveDateTime.utc_now())
419 |> truncate_if_exists(:name, name_limit)
420 |> truncate_if_exists(:bio, bio_limit)
421 |> truncate_fields_param()
422 |> fix_follower_address()
423
424 struct
425 |> cast(
426 params,
427 [
428 :bio,
429 :name,
430 :emoji,
431 :ap_id,
432 :inbox,
433 :shared_inbox,
434 :nickname,
435 :public_key,
436 :avatar,
437 :ap_enabled,
438 :banner,
439 :locked,
440 :last_refreshed_at,
441 :uri,
442 :follower_address,
443 :following_address,
444 :hide_followers,
445 :hide_follows,
446 :hide_followers_count,
447 :hide_follows_count,
448 :follower_count,
449 :fields,
450 :following_count,
451 :discoverable,
452 :invisible,
453 :actor_type,
454 :also_known_as,
455 :accepts_chat_messages
456 ]
457 )
458 |> validate_required([:name, :ap_id])
459 |> unique_constraint(:nickname)
460 |> validate_format(:nickname, @email_regex)
461 |> validate_length(:bio, max: bio_limit)
462 |> validate_length(:name, max: name_limit)
463 |> validate_fields(true)
464 end
465
466 def update_changeset(struct, params \\ %{}) do
467 bio_limit = Config.get([:instance, :user_bio_length], 5000)
468 name_limit = Config.get([:instance, :user_name_length], 100)
469
470 struct
471 |> cast(
472 params,
473 [
474 :bio,
475 :raw_bio,
476 :name,
477 :emoji,
478 :avatar,
479 :public_key,
480 :inbox,
481 :shared_inbox,
482 :locked,
483 :no_rich_text,
484 :default_scope,
485 :banner,
486 :hide_follows,
487 :hide_followers,
488 :hide_followers_count,
489 :hide_follows_count,
490 :hide_favorites,
491 :allow_following_move,
492 :background,
493 :show_role,
494 :skip_thread_containment,
495 :fields,
496 :raw_fields,
497 :pleroma_settings_store,
498 :discoverable,
499 :actor_type,
500 :also_known_as,
501 :accepts_chat_messages
502 ]
503 )
504 |> unique_constraint(:nickname)
505 |> validate_format(:nickname, local_nickname_regex())
506 |> validate_length(:bio, max: bio_limit)
507 |> validate_length(:name, min: 1, max: name_limit)
508 |> validate_inclusion(:actor_type, ["Person", "Service"])
509 |> put_fields()
510 |> put_emoji()
511 |> put_change_if_present(:bio, &{:ok, parse_bio(&1, struct)})
512 |> put_change_if_present(:avatar, &put_upload(&1, :avatar))
513 |> put_change_if_present(:banner, &put_upload(&1, :banner))
514 |> put_change_if_present(:background, &put_upload(&1, :background))
515 |> put_change_if_present(
516 :pleroma_settings_store,
517 &{:ok, Map.merge(struct.pleroma_settings_store, &1)}
518 )
519 |> validate_fields(false)
520 end
521
522 defp put_fields(changeset) do
523 if raw_fields = get_change(changeset, :raw_fields) do
524 raw_fields =
525 raw_fields
526 |> Enum.filter(fn %{"name" => n} -> n != "" end)
527
528 fields =
529 raw_fields
530 |> Enum.map(fn f -> Map.update!(f, "value", &parse_fields(&1)) end)
531
532 changeset
533 |> put_change(:raw_fields, raw_fields)
534 |> put_change(:fields, fields)
535 else
536 changeset
537 end
538 end
539
540 defp parse_fields(value) do
541 value
542 |> Formatter.linkify(mentions_format: :full)
543 |> elem(0)
544 end
545
546 defp put_emoji(changeset) do
547 emojified_fields = [:bio, :name, :raw_fields]
548
549 if Enum.any?(changeset.changes, fn {k, _} -> k in emojified_fields end) do
550 bio = Emoji.Formatter.get_emoji_map(get_field(changeset, :bio))
551 name = Emoji.Formatter.get_emoji_map(get_field(changeset, :name))
552
553 emoji = Map.merge(bio, name)
554
555 emoji =
556 changeset
557 |> get_field(:raw_fields)
558 |> Enum.reduce(emoji, fn x, acc ->
559 Map.merge(acc, Emoji.Formatter.get_emoji_map(x["name"] <> x["value"]))
560 end)
561
562 put_change(changeset, :emoji, emoji)
563 else
564 changeset
565 end
566 end
567
568 defp put_change_if_present(changeset, map_field, value_function) do
569 with {:ok, value} <- fetch_change(changeset, map_field),
570 {:ok, new_value} <- value_function.(value) do
571 put_change(changeset, map_field, new_value)
572 else
573 _ -> changeset
574 end
575 end
576
577 defp put_upload(value, type) do
578 with %Plug.Upload{} <- value,
579 {:ok, object} <- ActivityPub.upload(value, type: type) do
580 {:ok, object.data}
581 end
582 end
583
584 def update_as_admin_changeset(struct, params) do
585 struct
586 |> update_changeset(params)
587 |> cast(params, [:email])
588 |> delete_change(:also_known_as)
589 |> unique_constraint(:email)
590 |> validate_format(:email, @email_regex)
591 |> validate_inclusion(:actor_type, ["Person", "Service"])
592 end
593
594 @spec update_as_admin(User.t(), map()) :: {:ok, User.t()} | {:error, Changeset.t()}
595 def update_as_admin(user, params) do
596 params = Map.put(params, "password_confirmation", params["password"])
597 changeset = update_as_admin_changeset(user, params)
598
599 if params["password"] do
600 reset_password(user, changeset, params)
601 else
602 User.update_and_set_cache(changeset)
603 end
604 end
605
606 def password_update_changeset(struct, params) do
607 struct
608 |> cast(params, [:password, :password_confirmation])
609 |> validate_required([:password, :password_confirmation])
610 |> validate_confirmation(:password)
611 |> put_password_hash()
612 |> put_change(:password_reset_pending, false)
613 end
614
615 @spec reset_password(User.t(), map()) :: {:ok, User.t()} | {:error, Changeset.t()}
616 def reset_password(%User{} = user, params) do
617 reset_password(user, user, params)
618 end
619
620 def reset_password(%User{id: user_id} = user, struct, params) do
621 multi =
622 Multi.new()
623 |> Multi.update(:user, password_update_changeset(struct, params))
624 |> Multi.delete_all(:tokens, OAuth.Token.Query.get_by_user(user_id))
625 |> Multi.delete_all(:auth, OAuth.Authorization.delete_by_user_query(user))
626
627 case Repo.transaction(multi) do
628 {:ok, %{user: user} = _} -> set_cache(user)
629 {:error, _, changeset, _} -> {:error, changeset}
630 end
631 end
632
633 def update_password_reset_pending(user, value) do
634 user
635 |> change()
636 |> put_change(:password_reset_pending, value)
637 |> update_and_set_cache()
638 end
639
640 def force_password_reset_async(user) do
641 BackgroundWorker.enqueue("force_password_reset", %{"user_id" => user.id})
642 end
643
644 @spec force_password_reset(User.t()) :: {:ok, User.t()} | {:error, Ecto.Changeset.t()}
645 def force_password_reset(user), do: update_password_reset_pending(user, true)
646
647 # Used to auto-register LDAP accounts which won't have a password hash stored locally
648 def register_changeset_ldap(struct, params = %{password: password})
649 when is_nil(password) do
650 params = Map.put_new(params, :accepts_chat_messages, true)
651
652 params =
653 if Map.has_key?(params, :email) do
654 Map.put_new(params, :email, params[:email])
655 else
656 params
657 end
658
659 struct
660 |> cast(params, [
661 :name,
662 :nickname,
663 :email,
664 :accepts_chat_messages
665 ])
666 |> validate_required([:name, :nickname])
667 |> unique_constraint(:nickname)
668 |> validate_exclusion(:nickname, Config.get([User, :restricted_nicknames]))
669 |> validate_format(:nickname, local_nickname_regex())
670 |> put_ap_id()
671 |> unique_constraint(:ap_id)
672 |> put_following_and_follower_address()
673 end
674
675 def register_changeset(struct, params \\ %{}, opts \\ []) do
676 bio_limit = Config.get([:instance, :user_bio_length], 5000)
677 name_limit = Config.get([:instance, :user_name_length], 100)
678 reason_limit = Config.get([:instance, :registration_reason_length], 500)
679 params = Map.put_new(params, :accepts_chat_messages, true)
680
681 need_confirmation? =
682 if is_nil(opts[:need_confirmation]) do
683 Config.get([:instance, :account_activation_required])
684 else
685 opts[:need_confirmation]
686 end
687
688 need_approval? =
689 if is_nil(opts[:need_approval]) do
690 Config.get([:instance, :account_approval_required])
691 else
692 opts[:need_approval]
693 end
694
695 struct
696 |> confirmation_changeset(need_confirmation: need_confirmation?)
697 |> approval_changeset(need_approval: need_approval?)
698 |> cast(params, [
699 :bio,
700 :raw_bio,
701 :email,
702 :name,
703 :nickname,
704 :password,
705 :password_confirmation,
706 :emoji,
707 :accepts_chat_messages,
708 :registration_reason
709 ])
710 |> validate_required([:name, :nickname, :password, :password_confirmation])
711 |> validate_confirmation(:password)
712 |> unique_constraint(:email)
713 |> validate_format(:email, @email_regex)
714 |> validate_change(:email, fn :email, email ->
715 valid? =
716 Config.get([User, :email_blacklist])
717 |> Enum.all?(fn blacklisted_domain ->
718 !String.ends_with?(email, ["@" <> blacklisted_domain, "." <> blacklisted_domain])
719 end)
720
721 if valid?, do: [], else: [email: "Invalid email"]
722 end)
723 |> unique_constraint(:nickname)
724 |> validate_exclusion(:nickname, Config.get([User, :restricted_nicknames]))
725 |> validate_format(:nickname, local_nickname_regex())
726 |> validate_length(:bio, max: bio_limit)
727 |> validate_length(:name, min: 1, max: name_limit)
728 |> validate_length(:registration_reason, max: reason_limit)
729 |> maybe_validate_required_email(opts[:external])
730 |> put_password_hash
731 |> put_ap_id()
732 |> unique_constraint(:ap_id)
733 |> put_following_and_follower_address()
734 end
735
736 def maybe_validate_required_email(changeset, true), do: changeset
737
738 def maybe_validate_required_email(changeset, _) do
739 if Config.get([:instance, :account_activation_required]) do
740 validate_required(changeset, [:email])
741 else
742 changeset
743 end
744 end
745
746 defp put_ap_id(changeset) do
747 ap_id = ap_id(%User{nickname: get_field(changeset, :nickname)})
748 put_change(changeset, :ap_id, ap_id)
749 end
750
751 defp put_following_and_follower_address(changeset) do
752 followers = ap_followers(%User{nickname: get_field(changeset, :nickname)})
753
754 changeset
755 |> put_change(:follower_address, followers)
756 end
757
758 defp autofollow_users(user) do
759 candidates = Config.get([:instance, :autofollowed_nicknames])
760
761 autofollowed_users =
762 User.Query.build(%{nickname: candidates, local: true, deactivated: false})
763 |> Repo.all()
764
765 follow_all(user, autofollowed_users)
766 end
767
768 @doc "Inserts provided changeset, performs post-registration actions (confirmation email sending etc.)"
769 def register(%Ecto.Changeset{} = changeset) do
770 with {:ok, user} <- Repo.insert(changeset) do
771 post_register_action(user)
772 end
773 end
774
775 def post_register_action(%User{} = user) do
776 with {:ok, user} <- autofollow_users(user),
777 {:ok, user} <- set_cache(user),
778 {:ok, _} <- send_welcome_email(user),
779 {:ok, _} <- send_welcome_message(user),
780 {:ok, _} <- send_welcome_chat_message(user),
781 {:ok, _} <- try_send_confirmation_email(user) do
782 {:ok, user}
783 end
784 end
785
786 def send_welcome_message(user) do
787 if User.WelcomeMessage.enabled?() do
788 User.WelcomeMessage.post_message(user)
789 {:ok, :enqueued}
790 else
791 {:ok, :noop}
792 end
793 end
794
795 def send_welcome_chat_message(user) do
796 if User.WelcomeChatMessage.enabled?() do
797 User.WelcomeChatMessage.post_message(user)
798 {:ok, :enqueued}
799 else
800 {:ok, :noop}
801 end
802 end
803
804 def send_welcome_email(%User{email: email} = user) when is_binary(email) do
805 if User.WelcomeEmail.enabled?() do
806 User.WelcomeEmail.send_email(user)
807 {:ok, :enqueued}
808 else
809 {:ok, :noop}
810 end
811 end
812
813 def send_welcome_email(_), do: {:ok, :noop}
814
815 @spec try_send_confirmation_email(User.t()) :: {:ok, :enqueued | :noop}
816 def try_send_confirmation_email(%User{confirmation_pending: true} = user) do
817 if Config.get([:instance, :account_activation_required]) do
818 send_confirmation_email(user)
819 {:ok, :enqueued}
820 else
821 {:ok, :noop}
822 end
823 end
824
825 def try_send_confirmation_email(_), do: {:ok, :noop}
826
827 @spec send_confirmation_email(Uset.t()) :: User.t()
828 def send_confirmation_email(%User{} = user) do
829 user
830 |> Pleroma.Emails.UserEmail.account_confirmation_email()
831 |> Pleroma.Emails.Mailer.deliver_async()
832
833 user
834 end
835
836 def needs_update?(%User{local: true}), do: false
837
838 def needs_update?(%User{local: false, last_refreshed_at: nil}), do: true
839
840 def needs_update?(%User{local: false} = user) do
841 NaiveDateTime.diff(NaiveDateTime.utc_now(), user.last_refreshed_at) >= 86_400
842 end
843
844 def needs_update?(_), do: true
845
846 @spec maybe_direct_follow(User.t(), User.t()) :: {:ok, User.t()} | {:error, String.t()}
847
848 # "Locked" (self-locked) users demand explicit authorization of follow requests
849 def maybe_direct_follow(%User{} = follower, %User{local: true, locked: true} = followed) do
850 follow(follower, followed, :follow_pending)
851 end
852
853 def maybe_direct_follow(%User{} = follower, %User{local: true} = followed) do
854 follow(follower, followed)
855 end
856
857 def maybe_direct_follow(%User{} = follower, %User{} = followed) do
858 if not ap_enabled?(followed) do
859 follow(follower, followed)
860 else
861 {:ok, follower}
862 end
863 end
864
865 @doc "A mass follow for local users. Respects blocks in both directions but does not create activities."
866 @spec follow_all(User.t(), list(User.t())) :: {atom(), User.t()}
867 def follow_all(follower, followeds) do
868 followeds
869 |> Enum.reject(fn followed -> blocks?(follower, followed) || blocks?(followed, follower) end)
870 |> Enum.each(&follow(follower, &1, :follow_accept))
871
872 set_cache(follower)
873 end
874
875 def follow(%User{} = follower, %User{} = followed, state \\ :follow_accept) do
876 deny_follow_blocked = Config.get([:user, :deny_follow_blocked])
877
878 cond do
879 followed.deactivated ->
880 {:error, "Could not follow user: #{followed.nickname} is deactivated."}
881
882 deny_follow_blocked and blocks?(followed, follower) ->
883 {:error, "Could not follow user: #{followed.nickname} blocked you."}
884
885 true ->
886 FollowingRelationship.follow(follower, followed, state)
887
888 {:ok, _} = update_follower_count(followed)
889
890 follower
891 |> update_following_count()
892 end
893 end
894
895 def unfollow(%User{ap_id: ap_id}, %User{ap_id: ap_id}) do
896 {:error, "Not subscribed!"}
897 end
898
899 @spec unfollow(User.t(), User.t()) :: {:ok, User.t(), Activity.t()} | {:error, String.t()}
900 def unfollow(%User{} = follower, %User{} = followed) do
901 case do_unfollow(follower, followed) do
902 {:ok, follower, followed} ->
903 {:ok, follower, Utils.fetch_latest_follow(follower, followed)}
904
905 error ->
906 error
907 end
908 end
909
910 @spec do_unfollow(User.t(), User.t()) :: {:ok, User.t(), User.t()} | {:error, String.t()}
911 defp do_unfollow(%User{} = follower, %User{} = followed) do
912 case get_follow_state(follower, followed) do
913 state when state in [:follow_pending, :follow_accept] ->
914 FollowingRelationship.unfollow(follower, followed)
915 {:ok, followed} = update_follower_count(followed)
916
917 {:ok, follower} =
918 follower
919 |> update_following_count()
920
921 {:ok, follower, followed}
922
923 nil ->
924 {:error, "Not subscribed!"}
925 end
926 end
927
928 @doc "Returns follow state as Pleroma.FollowingRelationship.State value"
929 def get_follow_state(%User{} = follower, %User{} = following) do
930 following_relationship = FollowingRelationship.get(follower, following)
931 get_follow_state(follower, following, following_relationship)
932 end
933
934 def get_follow_state(
935 %User{} = follower,
936 %User{} = following,
937 following_relationship
938 ) do
939 case {following_relationship, following.local} do
940 {nil, false} ->
941 case Utils.fetch_latest_follow(follower, following) do
942 %Activity{data: %{"state" => state}} when state in ["pending", "accept"] ->
943 FollowingRelationship.state_to_enum(state)
944
945 _ ->
946 nil
947 end
948
949 {%{state: state}, _} ->
950 state
951
952 {nil, _} ->
953 nil
954 end
955 end
956
957 def locked?(%User{} = user) do
958 user.locked || false
959 end
960
961 def get_by_id(id) do
962 Repo.get_by(User, id: id)
963 end
964
965 def get_by_ap_id(ap_id) do
966 Repo.get_by(User, ap_id: ap_id)
967 end
968
969 def get_all_by_ap_id(ap_ids) do
970 from(u in __MODULE__,
971 where: u.ap_id in ^ap_ids
972 )
973 |> Repo.all()
974 end
975
976 def get_all_by_ids(ids) do
977 from(u in __MODULE__, where: u.id in ^ids)
978 |> Repo.all()
979 end
980
981 # This is mostly an SPC migration fix. This guesses the user nickname by taking the last part
982 # of the ap_id and the domain and tries to get that user
983 def get_by_guessed_nickname(ap_id) do
984 domain = URI.parse(ap_id).host
985 name = List.last(String.split(ap_id, "/"))
986 nickname = "#{name}@#{domain}"
987
988 get_cached_by_nickname(nickname)
989 end
990
991 def set_cache({:ok, user}), do: set_cache(user)
992 def set_cache({:error, err}), do: {:error, err}
993
994 def set_cache(%User{} = user) do
995 Cachex.put(:user_cache, "ap_id:#{user.ap_id}", user)
996 Cachex.put(:user_cache, "nickname:#{user.nickname}", user)
997 Cachex.put(:user_cache, "friends_ap_ids:#{user.nickname}", get_user_friends_ap_ids(user))
998 {:ok, user}
999 end
1000
1001 def update_and_set_cache(struct, params) do
1002 struct
1003 |> update_changeset(params)
1004 |> update_and_set_cache()
1005 end
1006
1007 def update_and_set_cache(changeset) do
1008 with {:ok, user} <- Repo.update(changeset, stale_error_field: :id) do
1009 set_cache(user)
1010 end
1011 end
1012
1013 def get_user_friends_ap_ids(user) do
1014 from(u in User.get_friends_query(user), select: u.ap_id)
1015 |> Repo.all()
1016 end
1017
1018 @spec get_cached_user_friends_ap_ids(User.t()) :: [String.t()]
1019 def get_cached_user_friends_ap_ids(user) do
1020 Cachex.fetch!(:user_cache, "friends_ap_ids:#{user.ap_id}", fn _ ->
1021 get_user_friends_ap_ids(user)
1022 end)
1023 end
1024
1025 def invalidate_cache(user) do
1026 Cachex.del(:user_cache, "ap_id:#{user.ap_id}")
1027 Cachex.del(:user_cache, "nickname:#{user.nickname}")
1028 Cachex.del(:user_cache, "friends_ap_ids:#{user.ap_id}")
1029 end
1030
1031 @spec get_cached_by_ap_id(String.t()) :: User.t() | nil
1032 def get_cached_by_ap_id(ap_id) do
1033 key = "ap_id:#{ap_id}"
1034
1035 with {:ok, nil} <- Cachex.get(:user_cache, key),
1036 user when not is_nil(user) <- get_by_ap_id(ap_id),
1037 {:ok, true} <- Cachex.put(:user_cache, key, user) do
1038 user
1039 else
1040 {:ok, user} -> user
1041 nil -> nil
1042 end
1043 end
1044
1045 def get_cached_by_id(id) do
1046 key = "id:#{id}"
1047
1048 ap_id =
1049 Cachex.fetch!(:user_cache, key, fn _ ->
1050 user = get_by_id(id)
1051
1052 if user do
1053 Cachex.put(:user_cache, "ap_id:#{user.ap_id}", user)
1054 {:commit, user.ap_id}
1055 else
1056 {:ignore, ""}
1057 end
1058 end)
1059
1060 get_cached_by_ap_id(ap_id)
1061 end
1062
1063 def get_cached_by_nickname(nickname) do
1064 key = "nickname:#{nickname}"
1065
1066 Cachex.fetch!(:user_cache, key, fn ->
1067 case get_or_fetch_by_nickname(nickname) do
1068 {:ok, user} -> {:commit, user}
1069 {:error, _error} -> {:ignore, nil}
1070 end
1071 end)
1072 end
1073
1074 def get_cached_by_nickname_or_id(nickname_or_id, opts \\ []) do
1075 restrict_to_local = Config.get([:instance, :limit_to_local_content])
1076
1077 cond do
1078 is_integer(nickname_or_id) or FlakeId.flake_id?(nickname_or_id) ->
1079 get_cached_by_id(nickname_or_id) || get_cached_by_nickname(nickname_or_id)
1080
1081 restrict_to_local == false or not String.contains?(nickname_or_id, "@") ->
1082 get_cached_by_nickname(nickname_or_id)
1083
1084 restrict_to_local == :unauthenticated and match?(%User{}, opts[:for]) ->
1085 get_cached_by_nickname(nickname_or_id)
1086
1087 true ->
1088 nil
1089 end
1090 end
1091
1092 @spec get_by_nickname(String.t()) :: User.t() | nil
1093 def get_by_nickname(nickname) do
1094 Repo.get_by(User, nickname: nickname) ||
1095 if Regex.match?(~r(@#{Pleroma.Web.Endpoint.host()})i, nickname) do
1096 Repo.get_by(User, nickname: local_nickname(nickname))
1097 end
1098 end
1099
1100 def get_by_email(email), do: Repo.get_by(User, email: email)
1101
1102 def get_by_nickname_or_email(nickname_or_email) do
1103 get_by_nickname(nickname_or_email) || get_by_email(nickname_or_email)
1104 end
1105
1106 def fetch_by_nickname(nickname), do: ActivityPub.make_user_from_nickname(nickname)
1107
1108 def get_or_fetch_by_nickname(nickname) do
1109 with %User{} = user <- get_by_nickname(nickname) do
1110 {:ok, user}
1111 else
1112 _e ->
1113 with [_nick, _domain] <- String.split(nickname, "@"),
1114 {:ok, user} <- fetch_by_nickname(nickname) do
1115 {:ok, user}
1116 else
1117 _e -> {:error, "not found " <> nickname}
1118 end
1119 end
1120 end
1121
1122 @spec get_followers_query(User.t(), pos_integer() | nil) :: Ecto.Query.t()
1123 def get_followers_query(%User{} = user, nil) do
1124 User.Query.build(%{followers: user, deactivated: false})
1125 end
1126
1127 def get_followers_query(user, page) do
1128 user
1129 |> get_followers_query(nil)
1130 |> User.Query.paginate(page, 20)
1131 end
1132
1133 @spec get_followers_query(User.t()) :: Ecto.Query.t()
1134 def get_followers_query(user), do: get_followers_query(user, nil)
1135
1136 @spec get_followers(User.t(), pos_integer() | nil) :: {:ok, list(User.t())}
1137 def get_followers(user, page \\ nil) do
1138 user
1139 |> get_followers_query(page)
1140 |> Repo.all()
1141 end
1142
1143 @spec get_external_followers(User.t(), pos_integer() | nil) :: {:ok, list(User.t())}
1144 def get_external_followers(user, page \\ nil) do
1145 user
1146 |> get_followers_query(page)
1147 |> User.Query.build(%{external: true})
1148 |> Repo.all()
1149 end
1150
1151 def get_followers_ids(user, page \\ nil) do
1152 user
1153 |> get_followers_query(page)
1154 |> select([u], u.id)
1155 |> Repo.all()
1156 end
1157
1158 @spec get_friends_query(User.t(), pos_integer() | nil) :: Ecto.Query.t()
1159 def get_friends_query(%User{} = user, nil) do
1160 User.Query.build(%{friends: user, deactivated: false})
1161 end
1162
1163 def get_friends_query(user, page) do
1164 user
1165 |> get_friends_query(nil)
1166 |> User.Query.paginate(page, 20)
1167 end
1168
1169 @spec get_friends_query(User.t()) :: Ecto.Query.t()
1170 def get_friends_query(user), do: get_friends_query(user, nil)
1171
1172 def get_friends(user, page \\ nil) do
1173 user
1174 |> get_friends_query(page)
1175 |> Repo.all()
1176 end
1177
1178 def get_friends_ap_ids(user) do
1179 user
1180 |> get_friends_query(nil)
1181 |> select([u], u.ap_id)
1182 |> Repo.all()
1183 end
1184
1185 def get_friends_ids(user, page \\ nil) do
1186 user
1187 |> get_friends_query(page)
1188 |> select([u], u.id)
1189 |> Repo.all()
1190 end
1191
1192 def increase_note_count(%User{} = user) do
1193 User
1194 |> where(id: ^user.id)
1195 |> update([u], inc: [note_count: 1])
1196 |> select([u], u)
1197 |> Repo.update_all([])
1198 |> case do
1199 {1, [user]} -> set_cache(user)
1200 _ -> {:error, user}
1201 end
1202 end
1203
1204 def decrease_note_count(%User{} = user) do
1205 User
1206 |> where(id: ^user.id)
1207 |> update([u],
1208 set: [
1209 note_count: fragment("greatest(0, note_count - 1)")
1210 ]
1211 )
1212 |> select([u], u)
1213 |> Repo.update_all([])
1214 |> case do
1215 {1, [user]} -> set_cache(user)
1216 _ -> {:error, user}
1217 end
1218 end
1219
1220 def update_note_count(%User{} = user, note_count \\ nil) do
1221 note_count =
1222 note_count ||
1223 from(
1224 a in Object,
1225 where: fragment("?->>'actor' = ? and ?->>'type' = 'Note'", a.data, ^user.ap_id, a.data),
1226 select: count(a.id)
1227 )
1228 |> Repo.one()
1229
1230 user
1231 |> cast(%{note_count: note_count}, [:note_count])
1232 |> update_and_set_cache()
1233 end
1234
1235 @spec maybe_fetch_follow_information(User.t()) :: User.t()
1236 def maybe_fetch_follow_information(user) do
1237 with {:ok, user} <- fetch_follow_information(user) do
1238 user
1239 else
1240 e ->
1241 Logger.error("Follower/Following counter update for #{user.ap_id} failed.\n#{inspect(e)}")
1242
1243 user
1244 end
1245 end
1246
1247 def fetch_follow_information(user) do
1248 with {:ok, info} <- ActivityPub.fetch_follow_information_for_user(user) do
1249 user
1250 |> follow_information_changeset(info)
1251 |> update_and_set_cache()
1252 end
1253 end
1254
1255 defp follow_information_changeset(user, params) do
1256 user
1257 |> cast(params, [
1258 :hide_followers,
1259 :hide_follows,
1260 :follower_count,
1261 :following_count,
1262 :hide_followers_count,
1263 :hide_follows_count
1264 ])
1265 end
1266
1267 @spec update_follower_count(User.t()) :: {:ok, User.t()}
1268 def update_follower_count(%User{} = user) do
1269 if user.local or !Config.get([:instance, :external_user_synchronization]) do
1270 follower_count = FollowingRelationship.follower_count(user)
1271
1272 user
1273 |> follow_information_changeset(%{follower_count: follower_count})
1274 |> update_and_set_cache
1275 else
1276 {:ok, maybe_fetch_follow_information(user)}
1277 end
1278 end
1279
1280 @spec update_following_count(User.t()) :: {:ok, User.t()}
1281 def update_following_count(%User{local: false} = user) do
1282 if Config.get([:instance, :external_user_synchronization]) do
1283 {:ok, maybe_fetch_follow_information(user)}
1284 else
1285 {:ok, user}
1286 end
1287 end
1288
1289 def update_following_count(%User{local: true} = user) do
1290 following_count = FollowingRelationship.following_count(user)
1291
1292 user
1293 |> follow_information_changeset(%{following_count: following_count})
1294 |> update_and_set_cache()
1295 end
1296
1297 @spec get_users_from_set([String.t()], keyword()) :: [User.t()]
1298 def get_users_from_set(ap_ids, opts \\ []) do
1299 local_only = Keyword.get(opts, :local_only, true)
1300 criteria = %{ap_id: ap_ids, deactivated: false}
1301 criteria = if local_only, do: Map.put(criteria, :local, true), else: criteria
1302
1303 User.Query.build(criteria)
1304 |> Repo.all()
1305 end
1306
1307 @spec get_recipients_from_activity(Activity.t()) :: [User.t()]
1308 def get_recipients_from_activity(%Activity{recipients: to, actor: actor}) do
1309 to = [actor | to]
1310
1311 query = User.Query.build(%{recipients_from_activity: to, local: true, deactivated: false})
1312
1313 query
1314 |> Repo.all()
1315 end
1316
1317 @spec mute(User.t(), User.t(), boolean()) ::
1318 {:ok, list(UserRelationship.t())} | {:error, String.t()}
1319 def mute(%User{} = muter, %User{} = mutee, notifications? \\ true) do
1320 add_to_mutes(muter, mutee, notifications?)
1321 end
1322
1323 def unmute(%User{} = muter, %User{} = mutee) do
1324 remove_from_mutes(muter, mutee)
1325 end
1326
1327 def subscribe(%User{} = subscriber, %User{} = target) do
1328 deny_follow_blocked = Config.get([:user, :deny_follow_blocked])
1329
1330 if blocks?(target, subscriber) and deny_follow_blocked do
1331 {:error, "Could not subscribe: #{target.nickname} is blocking you"}
1332 else
1333 # Note: the relationship is inverse: subscriber acts as relationship target
1334 UserRelationship.create_inverse_subscription(target, subscriber)
1335 end
1336 end
1337
1338 def subscribe(%User{} = subscriber, %{ap_id: ap_id}) do
1339 with %User{} = subscribee <- get_cached_by_ap_id(ap_id) do
1340 subscribe(subscriber, subscribee)
1341 end
1342 end
1343
1344 def unsubscribe(%User{} = unsubscriber, %User{} = target) do
1345 # Note: the relationship is inverse: subscriber acts as relationship target
1346 UserRelationship.delete_inverse_subscription(target, unsubscriber)
1347 end
1348
1349 def unsubscribe(%User{} = unsubscriber, %{ap_id: ap_id}) do
1350 with %User{} = user <- get_cached_by_ap_id(ap_id) do
1351 unsubscribe(unsubscriber, user)
1352 end
1353 end
1354
1355 def block(%User{} = blocker, %User{} = blocked) do
1356 # sever any follow relationships to prevent leaks per activitypub (Pleroma issue #213)
1357 blocker =
1358 if following?(blocker, blocked) do
1359 {:ok, blocker, _} = unfollow(blocker, blocked)
1360 blocker
1361 else
1362 blocker
1363 end
1364
1365 # clear any requested follows as well
1366 blocked =
1367 case CommonAPI.reject_follow_request(blocked, blocker) do
1368 {:ok, %User{} = updated_blocked} -> updated_blocked
1369 nil -> blocked
1370 end
1371
1372 unsubscribe(blocked, blocker)
1373
1374 unfollowing_blocked = Config.get([:activitypub, :unfollow_blocked], true)
1375 if unfollowing_blocked && following?(blocked, blocker), do: unfollow(blocked, blocker)
1376
1377 {:ok, blocker} = update_follower_count(blocker)
1378 {:ok, blocker, _} = Participation.mark_all_as_read(blocker, blocked)
1379 add_to_block(blocker, blocked)
1380 end
1381
1382 # helper to handle the block given only an actor's AP id
1383 def block(%User{} = blocker, %{ap_id: ap_id}) do
1384 block(blocker, get_cached_by_ap_id(ap_id))
1385 end
1386
1387 def unblock(%User{} = blocker, %User{} = blocked) do
1388 remove_from_block(blocker, blocked)
1389 end
1390
1391 # helper to handle the block given only an actor's AP id
1392 def unblock(%User{} = blocker, %{ap_id: ap_id}) do
1393 unblock(blocker, get_cached_by_ap_id(ap_id))
1394 end
1395
1396 def mutes?(nil, _), do: false
1397 def mutes?(%User{} = user, %User{} = target), do: mutes_user?(user, target)
1398
1399 def mutes_user?(%User{} = user, %User{} = target) do
1400 UserRelationship.mute_exists?(user, target)
1401 end
1402
1403 @spec muted_notifications?(User.t() | nil, User.t() | map()) :: boolean()
1404 def muted_notifications?(nil, _), do: false
1405
1406 def muted_notifications?(%User{} = user, %User{} = target),
1407 do: UserRelationship.notification_mute_exists?(user, target)
1408
1409 def blocks?(nil, _), do: false
1410
1411 def blocks?(%User{} = user, %User{} = target) do
1412 blocks_user?(user, target) ||
1413 (blocks_domain?(user, target) and not User.following?(user, target))
1414 end
1415
1416 def blocks_user?(%User{} = user, %User{} = target) do
1417 UserRelationship.block_exists?(user, target)
1418 end
1419
1420 def blocks_user?(_, _), do: false
1421
1422 def blocks_domain?(%User{} = user, %User{} = target) do
1423 domain_blocks = Pleroma.Web.ActivityPub.MRF.subdomains_regex(user.domain_blocks)
1424 %{host: host} = URI.parse(target.ap_id)
1425 Pleroma.Web.ActivityPub.MRF.subdomain_match?(domain_blocks, host)
1426 end
1427
1428 def blocks_domain?(_, _), do: false
1429
1430 def subscribed_to?(%User{} = user, %User{} = target) do
1431 # Note: the relationship is inverse: subscriber acts as relationship target
1432 UserRelationship.inverse_subscription_exists?(target, user)
1433 end
1434
1435 def subscribed_to?(%User{} = user, %{ap_id: ap_id}) do
1436 with %User{} = target <- get_cached_by_ap_id(ap_id) do
1437 subscribed_to?(user, target)
1438 end
1439 end
1440
1441 @doc """
1442 Returns map of outgoing (blocked, muted etc.) relationships' user AP IDs by relation type.
1443 E.g. `outgoing_relationships_ap_ids(user, [:block])` -> `%{block: ["https://some.site/users/userapid"]}`
1444 """
1445 @spec outgoing_relationships_ap_ids(User.t(), list(atom())) :: %{atom() => list(String.t())}
1446 def outgoing_relationships_ap_ids(_user, []), do: %{}
1447
1448 def outgoing_relationships_ap_ids(nil, _relationship_types), do: %{}
1449
1450 def outgoing_relationships_ap_ids(%User{} = user, relationship_types)
1451 when is_list(relationship_types) do
1452 db_result =
1453 user
1454 |> assoc(:outgoing_relationships)
1455 |> join(:inner, [user_rel], u in assoc(user_rel, :target))
1456 |> where([user_rel, u], user_rel.relationship_type in ^relationship_types)
1457 |> select([user_rel, u], [user_rel.relationship_type, fragment("array_agg(?)", u.ap_id)])
1458 |> group_by([user_rel, u], user_rel.relationship_type)
1459 |> Repo.all()
1460 |> Enum.into(%{}, fn [k, v] -> {k, v} end)
1461
1462 Enum.into(
1463 relationship_types,
1464 %{},
1465 fn rel_type -> {rel_type, db_result[rel_type] || []} end
1466 )
1467 end
1468
1469 def incoming_relationships_ungrouped_ap_ids(user, relationship_types, ap_ids \\ nil)
1470
1471 def incoming_relationships_ungrouped_ap_ids(_user, [], _ap_ids), do: []
1472
1473 def incoming_relationships_ungrouped_ap_ids(nil, _relationship_types, _ap_ids), do: []
1474
1475 def incoming_relationships_ungrouped_ap_ids(%User{} = user, relationship_types, ap_ids)
1476 when is_list(relationship_types) do
1477 user
1478 |> assoc(:incoming_relationships)
1479 |> join(:inner, [user_rel], u in assoc(user_rel, :source))
1480 |> where([user_rel, u], user_rel.relationship_type in ^relationship_types)
1481 |> maybe_filter_on_ap_id(ap_ids)
1482 |> select([user_rel, u], u.ap_id)
1483 |> distinct(true)
1484 |> Repo.all()
1485 end
1486
1487 defp maybe_filter_on_ap_id(query, ap_ids) when is_list(ap_ids) do
1488 where(query, [user_rel, u], u.ap_id in ^ap_ids)
1489 end
1490
1491 defp maybe_filter_on_ap_id(query, _ap_ids), do: query
1492
1493 def deactivate_async(user, status \\ true) do
1494 BackgroundWorker.enqueue("deactivate_user", %{"user_id" => user.id, "status" => status})
1495 end
1496
1497 def deactivate(user, status \\ true)
1498
1499 def deactivate(users, status) when is_list(users) do
1500 Repo.transaction(fn ->
1501 for user <- users, do: deactivate(user, status)
1502 end)
1503 end
1504
1505 def deactivate(%User{} = user, status) do
1506 with {:ok, user} <- set_activation_status(user, status) do
1507 user
1508 |> get_followers()
1509 |> Enum.filter(& &1.local)
1510 |> Enum.each(&set_cache(update_following_count(&1)))
1511
1512 # Only update local user counts, remote will be update during the next pull.
1513 user
1514 |> get_friends()
1515 |> Enum.filter(& &1.local)
1516 |> Enum.each(&do_unfollow(user, &1))
1517
1518 {:ok, user}
1519 end
1520 end
1521
1522 def approve(users) when is_list(users) do
1523 Repo.transaction(fn ->
1524 Enum.map(users, fn user ->
1525 with {:ok, user} <- approve(user), do: user
1526 end)
1527 end)
1528 end
1529
1530 def approve(%User{} = user) do
1531 change(user, approval_pending: false)
1532 |> update_and_set_cache()
1533 end
1534
1535 def update_notification_settings(%User{} = user, settings) do
1536 user
1537 |> cast(%{notification_settings: settings}, [])
1538 |> cast_embed(:notification_settings)
1539 |> validate_required([:notification_settings])
1540 |> update_and_set_cache()
1541 end
1542
1543 @spec purge_user_changeset(User.t()) :: Changeset.t()
1544 def purge_user_changeset(user) do
1545 # "Right to be forgotten"
1546 # https://gdpr.eu/right-to-be-forgotten/
1547 change(user, %{
1548 bio: nil,
1549 raw_bio: nil,
1550 email: nil,
1551 name: nil,
1552 password_hash: nil,
1553 keys: nil,
1554 public_key: nil,
1555 avatar: %{},
1556 tags: [],
1557 last_refreshed_at: nil,
1558 last_digest_emailed_at: nil,
1559 banner: %{},
1560 background: %{},
1561 note_count: 0,
1562 follower_count: 0,
1563 following_count: 0,
1564 locked: false,
1565 confirmation_pending: false,
1566 password_reset_pending: false,
1567 approval_pending: false,
1568 registration_reason: nil,
1569 confirmation_token: nil,
1570 domain_blocks: [],
1571 deactivated: true,
1572 ap_enabled: false,
1573 is_moderator: false,
1574 is_admin: false,
1575 mastofe_settings: nil,
1576 mascot: nil,
1577 emoji: %{},
1578 pleroma_settings_store: %{},
1579 fields: [],
1580 raw_fields: [],
1581 discoverable: false,
1582 also_known_as: []
1583 })
1584 end
1585
1586 def delete(users) when is_list(users) do
1587 for user <- users, do: delete(user)
1588 end
1589
1590 def delete(%User{} = user) do
1591 BackgroundWorker.enqueue("delete_user", %{"user_id" => user.id})
1592 end
1593
1594 defp delete_and_invalidate_cache(%User{} = user) do
1595 invalidate_cache(user)
1596 Repo.delete(user)
1597 end
1598
1599 defp delete_or_deactivate(%User{local: false} = user), do: delete_and_invalidate_cache(user)
1600
1601 defp delete_or_deactivate(%User{local: true} = user) do
1602 status = account_status(user)
1603
1604 case status do
1605 :confirmation_pending ->
1606 delete_and_invalidate_cache(user)
1607
1608 :approval_pending ->
1609 delete_and_invalidate_cache(user)
1610
1611 _ ->
1612 user
1613 |> purge_user_changeset()
1614 |> update_and_set_cache()
1615 end
1616 end
1617
1618 def perform(:force_password_reset, user), do: force_password_reset(user)
1619
1620 @spec perform(atom(), User.t()) :: {:ok, User.t()}
1621 def perform(:delete, %User{} = user) do
1622 # Remove all relationships
1623 user
1624 |> get_followers()
1625 |> Enum.each(fn follower ->
1626 ActivityPub.unfollow(follower, user)
1627 unfollow(follower, user)
1628 end)
1629
1630 user
1631 |> get_friends()
1632 |> Enum.each(fn followed ->
1633 ActivityPub.unfollow(user, followed)
1634 unfollow(user, followed)
1635 end)
1636
1637 delete_user_activities(user)
1638 delete_notifications_from_user_activities(user)
1639
1640 delete_outgoing_pending_follow_requests(user)
1641
1642 delete_or_deactivate(user)
1643 end
1644
1645 def perform(:deactivate_async, user, status), do: deactivate(user, status)
1646
1647 @spec perform(atom(), User.t(), list()) :: list() | {:error, any()}
1648 def perform(:blocks_import, %User{} = blocker, blocked_identifiers)
1649 when is_list(blocked_identifiers) do
1650 Enum.map(
1651 blocked_identifiers,
1652 fn blocked_identifier ->
1653 with {:ok, %User{} = blocked} <- get_or_fetch(blocked_identifier),
1654 {:ok, _block} <- CommonAPI.block(blocker, blocked) do
1655 blocked
1656 else
1657 err ->
1658 Logger.debug("blocks_import failed for #{blocked_identifier} with: #{inspect(err)}")
1659 err
1660 end
1661 end
1662 )
1663 end
1664
1665 def perform(:follow_import, %User{} = follower, followed_identifiers)
1666 when is_list(followed_identifiers) do
1667 Enum.map(
1668 followed_identifiers,
1669 fn followed_identifier ->
1670 with {:ok, %User{} = followed} <- get_or_fetch(followed_identifier),
1671 {:ok, follower} <- maybe_direct_follow(follower, followed),
1672 {:ok, _, _, _} <- CommonAPI.follow(follower, followed) do
1673 followed
1674 else
1675 err ->
1676 Logger.debug("follow_import failed for #{followed_identifier} with: #{inspect(err)}")
1677 err
1678 end
1679 end
1680 )
1681 end
1682
1683 @spec external_users_query() :: Ecto.Query.t()
1684 def external_users_query do
1685 User.Query.build(%{
1686 external: true,
1687 active: true,
1688 order_by: :id
1689 })
1690 end
1691
1692 @spec external_users(keyword()) :: [User.t()]
1693 def external_users(opts \\ []) do
1694 query =
1695 external_users_query()
1696 |> select([u], struct(u, [:id, :ap_id]))
1697
1698 query =
1699 if opts[:max_id],
1700 do: where(query, [u], u.id > ^opts[:max_id]),
1701 else: query
1702
1703 query =
1704 if opts[:limit],
1705 do: limit(query, ^opts[:limit]),
1706 else: query
1707
1708 Repo.all(query)
1709 end
1710
1711 def blocks_import(%User{} = blocker, blocked_identifiers) when is_list(blocked_identifiers) do
1712 BackgroundWorker.enqueue("blocks_import", %{
1713 "blocker_id" => blocker.id,
1714 "blocked_identifiers" => blocked_identifiers
1715 })
1716 end
1717
1718 def follow_import(%User{} = follower, followed_identifiers)
1719 when is_list(followed_identifiers) do
1720 BackgroundWorker.enqueue("follow_import", %{
1721 "follower_id" => follower.id,
1722 "followed_identifiers" => followed_identifiers
1723 })
1724 end
1725
1726 def delete_notifications_from_user_activities(%User{ap_id: ap_id}) do
1727 Notification
1728 |> join(:inner, [n], activity in assoc(n, :activity))
1729 |> where([n, a], fragment("? = ?", a.actor, ^ap_id))
1730 |> Repo.delete_all()
1731 end
1732
1733 def delete_user_activities(%User{ap_id: ap_id} = user) do
1734 ap_id
1735 |> Activity.Queries.by_actor()
1736 |> RepoStreamer.chunk_stream(50)
1737 |> Stream.each(fn activities ->
1738 Enum.each(activities, fn activity -> delete_activity(activity, user) end)
1739 end)
1740 |> Stream.run()
1741 end
1742
1743 defp delete_activity(%{data: %{"type" => "Create", "object" => object}} = activity, user) do
1744 with {_, %Object{}} <- {:find_object, Object.get_by_ap_id(object)},
1745 {:ok, delete_data, _} <- Builder.delete(user, object) do
1746 Pipeline.common_pipeline(delete_data, local: user.local)
1747 else
1748 {:find_object, nil} ->
1749 # We have the create activity, but not the object, it was probably pruned.
1750 # Insert a tombstone and try again
1751 with {:ok, tombstone_data, _} <- Builder.tombstone(user.ap_id, object),
1752 {:ok, _tombstone} <- Object.create(tombstone_data) do
1753 delete_activity(activity, user)
1754 end
1755
1756 e ->
1757 Logger.error("Could not delete #{object} created by #{activity.data["ap_id"]}")
1758 Logger.error("Error: #{inspect(e)}")
1759 end
1760 end
1761
1762 defp delete_activity(%{data: %{"type" => type}} = activity, user)
1763 when type in ["Like", "Announce"] do
1764 {:ok, undo, _} = Builder.undo(user, activity)
1765 Pipeline.common_pipeline(undo, local: user.local)
1766 end
1767
1768 defp delete_activity(_activity, _user), do: "Doing nothing"
1769
1770 defp delete_outgoing_pending_follow_requests(user) do
1771 user
1772 |> FollowingRelationship.outgoing_pending_follow_requests_query()
1773 |> Repo.delete_all()
1774 end
1775
1776 def html_filter_policy(%User{no_rich_text: true}) do
1777 Pleroma.HTML.Scrubber.TwitterText
1778 end
1779
1780 def html_filter_policy(_), do: Config.get([:markup, :scrub_policy])
1781
1782 def fetch_by_ap_id(ap_id), do: ActivityPub.make_user_from_ap_id(ap_id)
1783
1784 def get_or_fetch_by_ap_id(ap_id) do
1785 cached_user = get_cached_by_ap_id(ap_id)
1786
1787 maybe_fetched_user = needs_update?(cached_user) && fetch_by_ap_id(ap_id)
1788
1789 case {cached_user, maybe_fetched_user} do
1790 {_, {:ok, %User{} = user}} ->
1791 {:ok, user}
1792
1793 {%User{} = user, _} ->
1794 {:ok, user}
1795
1796 _ ->
1797 {:error, :not_found}
1798 end
1799 end
1800
1801 @doc """
1802 Creates an internal service actor by URI if missing.
1803 Optionally takes nickname for addressing.
1804 """
1805 @spec get_or_create_service_actor_by_ap_id(String.t(), String.t()) :: User.t() | nil
1806 def get_or_create_service_actor_by_ap_id(uri, nickname) do
1807 {_, user} =
1808 case get_cached_by_ap_id(uri) do
1809 nil ->
1810 with {:error, %{errors: errors}} <- create_service_actor(uri, nickname) do
1811 Logger.error("Cannot create service actor: #{uri}/.\n#{inspect(errors)}")
1812 {:error, nil}
1813 end
1814
1815 %User{invisible: false} = user ->
1816 set_invisible(user)
1817
1818 user ->
1819 {:ok, user}
1820 end
1821
1822 user
1823 end
1824
1825 @spec set_invisible(User.t()) :: {:ok, User.t()}
1826 defp set_invisible(user) do
1827 user
1828 |> change(%{invisible: true})
1829 |> update_and_set_cache()
1830 end
1831
1832 @spec create_service_actor(String.t(), String.t()) ::
1833 {:ok, User.t()} | {:error, Ecto.Changeset.t()}
1834 defp create_service_actor(uri, nickname) do
1835 %User{
1836 invisible: true,
1837 local: true,
1838 ap_id: uri,
1839 nickname: nickname,
1840 follower_address: uri <> "/followers"
1841 }
1842 |> change
1843 |> unique_constraint(:nickname)
1844 |> Repo.insert()
1845 |> set_cache()
1846 end
1847
1848 def public_key(%{public_key: public_key_pem}) when is_binary(public_key_pem) do
1849 key =
1850 public_key_pem
1851 |> :public_key.pem_decode()
1852 |> hd()
1853 |> :public_key.pem_entry_decode()
1854
1855 {:ok, key}
1856 end
1857
1858 def public_key(_), do: {:error, "key not found"}
1859
1860 def get_public_key_for_ap_id(ap_id) do
1861 with {:ok, %User{} = user} <- get_or_fetch_by_ap_id(ap_id),
1862 {:ok, public_key} <- public_key(user) do
1863 {:ok, public_key}
1864 else
1865 _ -> :error
1866 end
1867 end
1868
1869 def ap_enabled?(%User{local: true}), do: true
1870 def ap_enabled?(%User{ap_enabled: ap_enabled}), do: ap_enabled
1871 def ap_enabled?(_), do: false
1872
1873 @doc "Gets or fetch a user by uri or nickname."
1874 @spec get_or_fetch(String.t()) :: {:ok, User.t()} | {:error, String.t()}
1875 def get_or_fetch("http" <> _host = uri), do: get_or_fetch_by_ap_id(uri)
1876 def get_or_fetch(nickname), do: get_or_fetch_by_nickname(nickname)
1877
1878 # wait a period of time and return newest version of the User structs
1879 # this is because we have synchronous follow APIs and need to simulate them
1880 # with an async handshake
1881 def wait_and_refresh(_, %User{local: true} = a, %User{local: true} = b) do
1882 with %User{} = a <- get_cached_by_id(a.id),
1883 %User{} = b <- get_cached_by_id(b.id) do
1884 {:ok, a, b}
1885 else
1886 nil -> :error
1887 end
1888 end
1889
1890 def wait_and_refresh(timeout, %User{} = a, %User{} = b) do
1891 with :ok <- :timer.sleep(timeout),
1892 %User{} = a <- get_cached_by_id(a.id),
1893 %User{} = b <- get_cached_by_id(b.id) do
1894 {:ok, a, b}
1895 else
1896 nil -> :error
1897 end
1898 end
1899
1900 def parse_bio(bio) when is_binary(bio) and bio != "" do
1901 bio
1902 |> CommonUtils.format_input("text/plain", mentions_format: :full)
1903 |> elem(0)
1904 end
1905
1906 def parse_bio(_), do: ""
1907
1908 def parse_bio(bio, user) when is_binary(bio) and bio != "" do
1909 # TODO: get profile URLs other than user.ap_id
1910 profile_urls = [user.ap_id]
1911
1912 bio
1913 |> CommonUtils.format_input("text/plain",
1914 mentions_format: :full,
1915 rel: &RelMe.maybe_put_rel_me(&1, profile_urls)
1916 )
1917 |> elem(0)
1918 end
1919
1920 def parse_bio(_, _), do: ""
1921
1922 def tag(user_identifiers, tags) when is_list(user_identifiers) do
1923 Repo.transaction(fn ->
1924 for user_identifier <- user_identifiers, do: tag(user_identifier, tags)
1925 end)
1926 end
1927
1928 def tag(nickname, tags) when is_binary(nickname),
1929 do: tag(get_by_nickname(nickname), tags)
1930
1931 def tag(%User{} = user, tags),
1932 do: update_tags(user, Enum.uniq((user.tags || []) ++ normalize_tags(tags)))
1933
1934 def untag(user_identifiers, tags) when is_list(user_identifiers) do
1935 Repo.transaction(fn ->
1936 for user_identifier <- user_identifiers, do: untag(user_identifier, tags)
1937 end)
1938 end
1939
1940 def untag(nickname, tags) when is_binary(nickname),
1941 do: untag(get_by_nickname(nickname), tags)
1942
1943 def untag(%User{} = user, tags),
1944 do: update_tags(user, (user.tags || []) -- normalize_tags(tags))
1945
1946 defp update_tags(%User{} = user, new_tags) do
1947 {:ok, updated_user} =
1948 user
1949 |> change(%{tags: new_tags})
1950 |> update_and_set_cache()
1951
1952 updated_user
1953 end
1954
1955 defp normalize_tags(tags) do
1956 [tags]
1957 |> List.flatten()
1958 |> Enum.map(&String.downcase/1)
1959 end
1960
1961 defp local_nickname_regex do
1962 if Config.get([:instance, :extended_nickname_format]) do
1963 @extended_local_nickname_regex
1964 else
1965 @strict_local_nickname_regex
1966 end
1967 end
1968
1969 def local_nickname(nickname_or_mention) do
1970 nickname_or_mention
1971 |> full_nickname()
1972 |> String.split("@")
1973 |> hd()
1974 end
1975
1976 def full_nickname(nickname_or_mention),
1977 do: String.trim_leading(nickname_or_mention, "@")
1978
1979 def error_user(ap_id) do
1980 %User{
1981 name: ap_id,
1982 ap_id: ap_id,
1983 nickname: "erroruser@example.com",
1984 inserted_at: NaiveDateTime.utc_now()
1985 }
1986 end
1987
1988 @spec all_superusers() :: [User.t()]
1989 def all_superusers do
1990 User.Query.build(%{super_users: true, local: true, deactivated: false})
1991 |> Repo.all()
1992 end
1993
1994 def muting_reblogs?(%User{} = user, %User{} = target) do
1995 UserRelationship.reblog_mute_exists?(user, target)
1996 end
1997
1998 def showing_reblogs?(%User{} = user, %User{} = target) do
1999 not muting_reblogs?(user, target)
2000 end
2001
2002 @doc """
2003 The function returns a query to get users with no activity for given interval of days.
2004 Inactive users are those who didn't read any notification, or had any activity where
2005 the user is the activity's actor, during `inactivity_threshold` days.
2006 Deactivated users will not appear in this list.
2007
2008 ## Examples
2009
2010 iex> Pleroma.User.list_inactive_users()
2011 %Ecto.Query{}
2012 """
2013 @spec list_inactive_users_query(integer()) :: Ecto.Query.t()
2014 def list_inactive_users_query(inactivity_threshold \\ 7) do
2015 negative_inactivity_threshold = -inactivity_threshold
2016 now = NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second)
2017 # Subqueries are not supported in `where` clauses, join gets too complicated.
2018 has_read_notifications =
2019 from(n in Pleroma.Notification,
2020 where: n.seen == true,
2021 group_by: n.id,
2022 having: max(n.updated_at) > datetime_add(^now, ^negative_inactivity_threshold, "day"),
2023 select: n.user_id
2024 )
2025 |> Pleroma.Repo.all()
2026
2027 from(u in Pleroma.User,
2028 left_join: a in Pleroma.Activity,
2029 on: u.ap_id == a.actor,
2030 where: not is_nil(u.nickname),
2031 where: u.deactivated != ^true,
2032 where: u.id not in ^has_read_notifications,
2033 group_by: u.id,
2034 having:
2035 max(a.inserted_at) < datetime_add(^now, ^negative_inactivity_threshold, "day") or
2036 is_nil(max(a.inserted_at))
2037 )
2038 end
2039
2040 @doc """
2041 Enable or disable email notifications for user
2042
2043 ## Examples
2044
2045 iex> Pleroma.User.switch_email_notifications(Pleroma.User{email_notifications: %{"digest" => false}}, "digest", true)
2046 Pleroma.User{email_notifications: %{"digest" => true}}
2047
2048 iex> Pleroma.User.switch_email_notifications(Pleroma.User{email_notifications: %{"digest" => true}}, "digest", false)
2049 Pleroma.User{email_notifications: %{"digest" => false}}
2050 """
2051 @spec switch_email_notifications(t(), String.t(), boolean()) ::
2052 {:ok, t()} | {:error, Ecto.Changeset.t()}
2053 def switch_email_notifications(user, type, status) do
2054 User.update_email_notifications(user, %{type => status})
2055 end
2056
2057 @doc """
2058 Set `last_digest_emailed_at` value for the user to current time
2059 """
2060 @spec touch_last_digest_emailed_at(t()) :: t()
2061 def touch_last_digest_emailed_at(user) do
2062 now = NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second)
2063
2064 {:ok, updated_user} =
2065 user
2066 |> change(%{last_digest_emailed_at: now})
2067 |> update_and_set_cache()
2068
2069 updated_user
2070 end
2071
2072 @spec toggle_confirmation(User.t()) :: {:ok, User.t()} | {:error, Changeset.t()}
2073 def toggle_confirmation(%User{} = user) do
2074 user
2075 |> confirmation_changeset(need_confirmation: !user.confirmation_pending)
2076 |> update_and_set_cache()
2077 end
2078
2079 @spec toggle_confirmation([User.t()]) :: [{:ok, User.t()} | {:error, Changeset.t()}]
2080 def toggle_confirmation(users) do
2081 Enum.map(users, &toggle_confirmation/1)
2082 end
2083
2084 def get_mascot(%{mascot: %{} = mascot}) when not is_nil(mascot) do
2085 mascot
2086 end
2087
2088 def get_mascot(%{mascot: mascot}) when is_nil(mascot) do
2089 # use instance-default
2090 config = Config.get([:assets, :mascots])
2091 default_mascot = Config.get([:assets, :default_mascot])
2092 mascot = Keyword.get(config, default_mascot)
2093
2094 %{
2095 "id" => "default-mascot",
2096 "url" => mascot[:url],
2097 "preview_url" => mascot[:url],
2098 "pleroma" => %{
2099 "mime_type" => mascot[:mime_type]
2100 }
2101 }
2102 end
2103
2104 def ensure_keys_present(%{keys: keys} = user) when not is_nil(keys), do: {:ok, user}
2105
2106 def ensure_keys_present(%User{} = user) do
2107 with {:ok, pem} <- Keys.generate_rsa_pem() do
2108 user
2109 |> cast(%{keys: pem}, [:keys])
2110 |> validate_required([:keys])
2111 |> update_and_set_cache()
2112 end
2113 end
2114
2115 def get_ap_ids_by_nicknames(nicknames) do
2116 from(u in User,
2117 where: u.nickname in ^nicknames,
2118 select: u.ap_id
2119 )
2120 |> Repo.all()
2121 end
2122
2123 defp put_password_hash(
2124 %Ecto.Changeset{valid?: true, changes: %{password: password}} = changeset
2125 ) do
2126 change(changeset, password_hash: Pbkdf2.hash_pwd_salt(password))
2127 end
2128
2129 defp put_password_hash(changeset), do: changeset
2130
2131 def is_internal_user?(%User{nickname: nil}), do: true
2132 def is_internal_user?(%User{local: true, nickname: "internal." <> _}), do: true
2133 def is_internal_user?(_), do: false
2134
2135 # A hack because user delete activities have a fake id for whatever reason
2136 # TODO: Get rid of this
2137 def get_delivered_users_by_object_id("pleroma:fake_object_id"), do: []
2138
2139 def get_delivered_users_by_object_id(object_id) do
2140 from(u in User,
2141 inner_join: delivery in assoc(u, :deliveries),
2142 where: delivery.object_id == ^object_id
2143 )
2144 |> Repo.all()
2145 end
2146
2147 def change_email(user, email) do
2148 user
2149 |> cast(%{email: email}, [:email])
2150 |> validate_required([:email])
2151 |> unique_constraint(:email)
2152 |> validate_format(:email, @email_regex)
2153 |> update_and_set_cache()
2154 end
2155
2156 # Internal function; public one is `deactivate/2`
2157 defp set_activation_status(user, deactivated) do
2158 user
2159 |> cast(%{deactivated: deactivated}, [:deactivated])
2160 |> update_and_set_cache()
2161 end
2162
2163 def update_banner(user, banner) do
2164 user
2165 |> cast(%{banner: banner}, [:banner])
2166 |> update_and_set_cache()
2167 end
2168
2169 def update_background(user, background) do
2170 user
2171 |> cast(%{background: background}, [:background])
2172 |> update_and_set_cache()
2173 end
2174
2175 def roles(%{is_moderator: is_moderator, is_admin: is_admin}) do
2176 %{
2177 admin: is_admin,
2178 moderator: is_moderator
2179 }
2180 end
2181
2182 def validate_fields(changeset, remote? \\ false) do
2183 limit_name = if remote?, do: :max_remote_account_fields, else: :max_account_fields
2184 limit = Config.get([:instance, limit_name], 0)
2185
2186 changeset
2187 |> validate_length(:fields, max: limit)
2188 |> validate_change(:fields, fn :fields, fields ->
2189 if Enum.all?(fields, &valid_field?/1) do
2190 []
2191 else
2192 [fields: "invalid"]
2193 end
2194 end)
2195 end
2196
2197 defp valid_field?(%{"name" => name, "value" => value}) do
2198 name_limit = Config.get([:instance, :account_field_name_length], 255)
2199 value_limit = Config.get([:instance, :account_field_value_length], 255)
2200
2201 is_binary(name) && is_binary(value) && String.length(name) <= name_limit &&
2202 String.length(value) <= value_limit
2203 end
2204
2205 defp valid_field?(_), do: false
2206
2207 defp truncate_field(%{"name" => name, "value" => value}) do
2208 {name, _chopped} =
2209 String.split_at(name, Config.get([:instance, :account_field_name_length], 255))
2210
2211 {value, _chopped} =
2212 String.split_at(value, Config.get([:instance, :account_field_value_length], 255))
2213
2214 %{"name" => name, "value" => value}
2215 end
2216
2217 def admin_api_update(user, params) do
2218 user
2219 |> cast(params, [
2220 :is_moderator,
2221 :is_admin,
2222 :show_role
2223 ])
2224 |> update_and_set_cache()
2225 end
2226
2227 @doc "Signs user out of all applications"
2228 def global_sign_out(user) do
2229 OAuth.Authorization.delete_user_authorizations(user)
2230 OAuth.Token.delete_user_tokens(user)
2231 end
2232
2233 def mascot_update(user, url) do
2234 user
2235 |> cast(%{mascot: url}, [:mascot])
2236 |> validate_required([:mascot])
2237 |> update_and_set_cache()
2238 end
2239
2240 def mastodon_settings_update(user, settings) do
2241 user
2242 |> cast(%{mastofe_settings: settings}, [:mastofe_settings])
2243 |> validate_required([:mastofe_settings])
2244 |> update_and_set_cache()
2245 end
2246
2247 @spec confirmation_changeset(User.t(), keyword()) :: Changeset.t()
2248 def confirmation_changeset(user, need_confirmation: need_confirmation?) do
2249 params =
2250 if need_confirmation? do
2251 %{
2252 confirmation_pending: true,
2253 confirmation_token: :crypto.strong_rand_bytes(32) |> Base.url_encode64()
2254 }
2255 else
2256 %{
2257 confirmation_pending: false,
2258 confirmation_token: nil
2259 }
2260 end
2261
2262 cast(user, params, [:confirmation_pending, :confirmation_token])
2263 end
2264
2265 @spec approval_changeset(User.t(), keyword()) :: Changeset.t()
2266 def approval_changeset(user, need_approval: need_approval?) do
2267 params = if need_approval?, do: %{approval_pending: true}, else: %{approval_pending: false}
2268 cast(user, params, [:approval_pending])
2269 end
2270
2271 def add_pinnned_activity(user, %Pleroma.Activity{id: id}) do
2272 if id not in user.pinned_activities do
2273 max_pinned_statuses = Config.get([:instance, :max_pinned_statuses], 0)
2274 params = %{pinned_activities: user.pinned_activities ++ [id]}
2275
2276 user
2277 |> cast(params, [:pinned_activities])
2278 |> validate_length(:pinned_activities,
2279 max: max_pinned_statuses,
2280 message: "You have already pinned the maximum number of statuses"
2281 )
2282 else
2283 change(user)
2284 end
2285 |> update_and_set_cache()
2286 end
2287
2288 def remove_pinnned_activity(user, %Pleroma.Activity{id: id}) do
2289 params = %{pinned_activities: List.delete(user.pinned_activities, id)}
2290
2291 user
2292 |> cast(params, [:pinned_activities])
2293 |> update_and_set_cache()
2294 end
2295
2296 def update_email_notifications(user, settings) do
2297 email_notifications =
2298 user.email_notifications
2299 |> Map.merge(settings)
2300 |> Map.take(["digest"])
2301
2302 params = %{email_notifications: email_notifications}
2303 fields = [:email_notifications]
2304
2305 user
2306 |> cast(params, fields)
2307 |> validate_required(fields)
2308 |> update_and_set_cache()
2309 end
2310
2311 defp set_domain_blocks(user, domain_blocks) do
2312 params = %{domain_blocks: domain_blocks}
2313
2314 user
2315 |> cast(params, [:domain_blocks])
2316 |> validate_required([:domain_blocks])
2317 |> update_and_set_cache()
2318 end
2319
2320 def block_domain(user, domain_blocked) do
2321 set_domain_blocks(user, Enum.uniq([domain_blocked | user.domain_blocks]))
2322 end
2323
2324 def unblock_domain(user, domain_blocked) do
2325 set_domain_blocks(user, List.delete(user.domain_blocks, domain_blocked))
2326 end
2327
2328 @spec add_to_block(User.t(), User.t()) ::
2329 {:ok, UserRelationship.t()} | {:error, Ecto.Changeset.t()}
2330 defp add_to_block(%User{} = user, %User{} = blocked) do
2331 UserRelationship.create_block(user, blocked)
2332 end
2333
2334 @spec add_to_block(User.t(), User.t()) ::
2335 {:ok, UserRelationship.t()} | {:ok, nil} | {:error, Ecto.Changeset.t()}
2336 defp remove_from_block(%User{} = user, %User{} = blocked) do
2337 UserRelationship.delete_block(user, blocked)
2338 end
2339
2340 defp add_to_mutes(%User{} = user, %User{} = muted_user, notifications?) do
2341 with {:ok, user_mute} <- UserRelationship.create_mute(user, muted_user),
2342 {:ok, user_notification_mute} <-
2343 (notifications? && UserRelationship.create_notification_mute(user, muted_user)) ||
2344 {:ok, nil} do
2345 {:ok, Enum.filter([user_mute, user_notification_mute], & &1)}
2346 end
2347 end
2348
2349 defp remove_from_mutes(user, %User{} = muted_user) do
2350 with {:ok, user_mute} <- UserRelationship.delete_mute(user, muted_user),
2351 {:ok, user_notification_mute} <-
2352 UserRelationship.delete_notification_mute(user, muted_user) do
2353 {:ok, [user_mute, user_notification_mute]}
2354 end
2355 end
2356
2357 def set_invisible(user, invisible) do
2358 params = %{invisible: invisible}
2359
2360 user
2361 |> cast(params, [:invisible])
2362 |> validate_required([:invisible])
2363 |> update_and_set_cache()
2364 end
2365
2366 def sanitize_html(%User{} = user) do
2367 sanitize_html(user, nil)
2368 end
2369
2370 # User data that mastodon isn't filtering (treated as plaintext):
2371 # - field name
2372 # - display name
2373 def sanitize_html(%User{} = user, filter) do
2374 fields =
2375 Enum.map(user.fields, fn %{"name" => name, "value" => value} ->
2376 %{
2377 "name" => name,
2378 "value" => HTML.filter_tags(value, Pleroma.HTML.Scrubber.LinksOnly)
2379 }
2380 end)
2381
2382 user
2383 |> Map.put(:bio, HTML.filter_tags(user.bio, filter))
2384 |> Map.put(:fields, fields)
2385 end
2386 end