2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-20 20:28:31 +00:00
|
|
|
defmodule Pleroma.User do
|
|
|
|
use Ecto.Schema
|
2017-05-05 09:46:59 +00:00
|
|
|
|
2019-02-09 15:16:26 +00:00
|
|
|
import Ecto.Changeset
|
|
|
|
import Ecto.Query
|
|
|
|
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Comeonin.Pbkdf2
|
2019-06-24 19:01:56 +00:00
|
|
|
alias Ecto.Multi
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Activity
|
2019-10-01 21:37:08 +00:00
|
|
|
alias Pleroma.Conversation.Participation
|
2019-09-12 18:37:36 +00:00
|
|
|
alias Pleroma.Delivery
|
2019-10-10 19:35:32 +00:00
|
|
|
alias Pleroma.FollowingRelationship
|
2019-05-22 03:58:15 +00:00
|
|
|
alias Pleroma.Keys
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Notification
|
|
|
|
alias Pleroma.Object
|
2019-03-18 14:23:38 +00:00
|
|
|
alias Pleroma.Registration
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Repo
|
2019-06-24 18:59:12 +00:00
|
|
|
alias Pleroma.RepoStreamer
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-08-18 19:29:31 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2018-12-02 19:03:53 +00:00
|
|
|
alias Pleroma.Web.CommonAPI.Utils, as: CommonUtils
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.OAuth
|
2019-02-11 21:27:02 +00:00
|
|
|
alias Pleroma.Web.RelMe
|
2019-08-13 17:20:26 +00:00
|
|
|
alias Pleroma.Workers.BackgroundWorker
|
2017-03-20 20:28:31 +00:00
|
|
|
|
2018-12-29 09:02:37 +00:00
|
|
|
require Logger
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
@type t :: %__MODULE__{}
|
|
|
|
|
2019-09-18 14:54:31 +00:00
|
|
|
@primary_key {:id, FlakeId.Ecto.CompatType, autogenerate: true}
|
2019-01-09 15:08:24 +00:00
|
|
|
|
2019-03-05 04:37:33 +00:00
|
|
|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
|
2018-12-12 17:17:15 +00:00
|
|
|
@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])?)*$/
|
|
|
|
|
|
|
|
@strict_local_nickname_regex ~r/^[a-zA-Z\d]+$/
|
2018-12-12 20:44:08 +00:00
|
|
|
@extended_local_nickname_regex ~r/^[a-zA-Z\d_-]+$/
|
2018-12-12 17:17:15 +00:00
|
|
|
|
2017-03-20 20:28:31 +00:00
|
|
|
schema "users" do
|
2018-03-30 13:01:53 +00:00
|
|
|
field(:bio, :string)
|
|
|
|
field(:email, :string)
|
|
|
|
field(:name, :string)
|
|
|
|
field(:nickname, :string)
|
|
|
|
field(:password_hash, :string)
|
|
|
|
field(:password, :string, virtual: true)
|
|
|
|
field(:password_confirmation, :string, virtual: true)
|
2019-10-06 13:22:35 +00:00
|
|
|
field(:keys, :string)
|
2018-03-30 13:01:53 +00:00
|
|
|
field(:ap_id, :string)
|
|
|
|
field(:avatar, :map)
|
|
|
|
field(:local, :boolean, default: true)
|
|
|
|
field(:follower_address, :string)
|
2019-07-10 13:01:32 +00:00
|
|
|
field(:following_address, :string)
|
2019-01-14 17:04:45 +00:00
|
|
|
field(:search_rank, :float, virtual: true)
|
2019-03-22 05:39:49 +00:00
|
|
|
field(:search_type, :integer, virtual: true)
|
2018-12-06 17:06:50 +00:00
|
|
|
field(:tags, {:array, :string}, default: [])
|
2019-03-20 12:59:27 +00:00
|
|
|
field(:last_refreshed_at, :naive_datetime_usec)
|
2019-04-17 09:59:05 +00:00
|
|
|
field(:last_digest_emailed_at, :naive_datetime)
|
2019-10-16 18:59:21 +00:00
|
|
|
|
|
|
|
field(:banner, :map, default: %{})
|
|
|
|
field(:background, :map, default: %{})
|
|
|
|
field(:source_data, :map, default: %{})
|
|
|
|
field(:note_count, :integer, default: 0)
|
|
|
|
field(:follower_count, :integer, default: 0)
|
2019-11-21 09:31:13 +00:00
|
|
|
field(:following_count, :integer, default: 0)
|
2019-10-16 18:59:21 +00:00
|
|
|
field(:locked, :boolean, default: false)
|
|
|
|
field(:confirmation_pending, :boolean, default: false)
|
|
|
|
field(:password_reset_pending, :boolean, default: false)
|
|
|
|
field(:confirmation_token, :string, default: nil)
|
|
|
|
field(:default_scope, :string, default: "public")
|
|
|
|
field(:blocks, {:array, :string}, default: [])
|
|
|
|
field(:domain_blocks, {:array, :string}, default: [])
|
|
|
|
field(:mutes, {:array, :string}, default: [])
|
|
|
|
field(:muted_reblogs, {:array, :string}, default: [])
|
|
|
|
field(:muted_notifications, {:array, :string}, default: [])
|
|
|
|
field(:subscribers, {:array, :string}, default: [])
|
|
|
|
field(:deactivated, :boolean, default: false)
|
|
|
|
field(:no_rich_text, :boolean, default: false)
|
|
|
|
field(:ap_enabled, :boolean, default: false)
|
|
|
|
field(:is_moderator, :boolean, default: false)
|
|
|
|
field(:is_admin, :boolean, default: false)
|
|
|
|
field(:show_role, :boolean, default: true)
|
|
|
|
field(:settings, :map, default: nil)
|
|
|
|
field(:magic_key, :string, default: nil)
|
|
|
|
field(:uri, :string, default: nil)
|
|
|
|
field(:hide_followers_count, :boolean, default: false)
|
|
|
|
field(:hide_follows_count, :boolean, default: false)
|
|
|
|
field(:hide_followers, :boolean, default: false)
|
|
|
|
field(:hide_follows, :boolean, default: false)
|
|
|
|
field(:hide_favorites, :boolean, default: true)
|
|
|
|
field(:unread_conversation_count, :integer, default: 0)
|
|
|
|
field(:pinned_activities, {:array, :string}, default: [])
|
|
|
|
field(:email_notifications, :map, default: %{"digest" => false})
|
|
|
|
field(:mascot, :map, default: nil)
|
|
|
|
field(:emoji, {:array, :map}, default: [])
|
|
|
|
field(:pleroma_settings_store, :map, default: %{})
|
2019-10-23 14:15:48 +00:00
|
|
|
field(:fields, {:array, :map}, default: [])
|
2019-10-16 18:59:21 +00:00
|
|
|
field(:raw_fields, {:array, :map}, default: [])
|
|
|
|
field(:discoverable, :boolean, default: false)
|
2019-10-21 08:58:22 +00:00
|
|
|
field(:invisible, :boolean, default: false)
|
2019-10-16 18:59:21 +00:00
|
|
|
field(:skip_thread_containment, :boolean, default: false)
|
|
|
|
|
|
|
|
field(:notification_settings, :map,
|
|
|
|
default: %{
|
|
|
|
"followers" => true,
|
|
|
|
"follows" => true,
|
|
|
|
"non_follows" => true,
|
|
|
|
"non_followers" => true
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
has_many(:notifications, Notification)
|
2019-03-18 14:23:38 +00:00
|
|
|
has_many(:registrations, Registration)
|
2019-09-12 18:37:36 +00:00
|
|
|
has_many(:deliveries, Delivery)
|
2019-10-20 10:42:42 +00:00
|
|
|
|
|
|
|
field(:info, :map, default: %{})
|
2017-03-20 20:28:31 +00:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2019-11-11 11:37:13 +00:00
|
|
|
@doc "Returns if the user should be allowed to authenticate"
|
|
|
|
def auth_active?(%User{deactivated: true}), do: false
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def auth_active?(%User{confirmation_pending: true}),
|
2019-01-09 06:21:21 +00:00
|
|
|
do: !Pleroma.Config.get([:instance, :account_activation_required])
|
2018-12-19 15:56:52 +00:00
|
|
|
|
2019-03-26 12:09:06 +00:00
|
|
|
def auth_active?(%User{}), do: true
|
2018-12-27 12:46:18 +00:00
|
|
|
|
2019-01-09 06:21:21 +00:00
|
|
|
def visible_for?(user, for_user \\ nil)
|
|
|
|
|
2019-11-04 17:44:24 +00:00
|
|
|
def visible_for?(%User{invisible: true}, _), do: false
|
|
|
|
|
2019-01-09 06:21:21 +00:00
|
|
|
def visible_for?(%User{id: user_id}, %User{id: for_id}) when user_id == for_id, do: true
|
|
|
|
|
|
|
|
def visible_for?(%User{} = user, for_user) do
|
2019-01-09 06:36:50 +00:00
|
|
|
auth_active?(user) || superuser?(for_user)
|
2018-12-28 11:35:25 +00:00
|
|
|
end
|
|
|
|
|
2019-01-09 06:21:21 +00:00
|
|
|
def visible_for?(_, _), do: false
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def superuser?(%User{local: true, is_admin: true}), do: true
|
|
|
|
def superuser?(%User{local: true, is_moderator: true}), do: true
|
2019-01-09 06:21:21 +00:00
|
|
|
def superuser?(_), do: false
|
2018-12-17 14:28:58 +00:00
|
|
|
|
2019-10-21 08:58:22 +00:00
|
|
|
def invisible?(%User{invisible: true}), do: true
|
2019-10-05 20:11:43 +00:00
|
|
|
def invisible?(_), do: false
|
|
|
|
|
2019-03-26 15:40:09 +00:00
|
|
|
def avatar_url(user, options \\ []) do
|
2017-04-17 12:12:36 +00:00
|
|
|
case user.avatar do
|
|
|
|
%{"url" => [%{"href" => href} | _]} -> href
|
2019-03-26 15:40:09 +00:00
|
|
|
_ -> !options[:no_default] && "#{Web.base_url()}/images/avi.png"
|
2017-04-17 12:12:36 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-26 15:40:09 +00:00
|
|
|
def banner_url(user, options \\ []) do
|
2019-10-16 18:59:21 +00:00
|
|
|
case user.banner do
|
2017-09-16 11:44:08 +00:00
|
|
|
%{"url" => [%{"href" => href} | _]} -> href
|
2019-03-26 15:40:09 +00:00
|
|
|
_ -> !options[:no_default] && "#{Web.base_url()}/images/banner.png"
|
2017-09-16 11:44:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def profile_url(%User{source_data: %{"url" => url}}), do: url
|
2018-10-25 04:01:59 +00:00
|
|
|
def profile_url(%User{ap_id: ap_id}), do: ap_id
|
|
|
|
def profile_url(_), do: nil
|
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
def ap_id(%User{nickname: nickname}), do: "#{Web.base_url()}/users/#{nickname}"
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2019-03-19 18:23:06 +00:00
|
|
|
def ap_followers(%User{follower_address: fa}) when is_binary(fa), do: fa
|
|
|
|
def ap_followers(%User{} = user), do: "#{ap_id(user)}/followers"
|
2017-03-22 17:36:08 +00:00
|
|
|
|
2019-07-10 14:39:07 +00:00
|
|
|
@spec ap_following(User.t()) :: Sring.t()
|
|
|
|
def ap_following(%User{following_address: fa}) when is_binary(fa), do: fa
|
|
|
|
def ap_following(%User{} = user), do: "#{ap_id(user)}/following"
|
|
|
|
|
2019-07-09 17:36:35 +00:00
|
|
|
def user_info(%User{} = user, args \\ %{}) do
|
2019-11-21 09:31:13 +00:00
|
|
|
following_count = Map.get(args, :following_count, user.following_count)
|
2019-10-16 18:59:21 +00:00
|
|
|
follower_count = Map.get(args, :follower_count, user.follower_count)
|
2019-07-09 17:36:35 +00:00
|
|
|
|
2017-04-20 22:51:09 +00:00
|
|
|
%{
|
2019-10-16 18:59:21 +00:00
|
|
|
note_count: user.note_count,
|
|
|
|
locked: user.locked,
|
|
|
|
confirmation_pending: user.confirmation_pending,
|
2019-11-21 09:31:13 +00:00
|
|
|
default_scope: user.default_scope,
|
|
|
|
follower_count: follower_count,
|
|
|
|
following_count: following_count
|
2017-04-20 22:51:09 +00:00
|
|
|
}
|
2019-07-09 17:36:35 +00:00
|
|
|
end
|
|
|
|
|
2019-08-14 21:47:30 +00:00
|
|
|
def follow_state(%User{} = user, %User{} = target) do
|
2019-09-24 07:14:34 +00:00
|
|
|
case Utils.fetch_latest_follow(user, target) do
|
|
|
|
%{data: %{"state" => state}} -> state
|
2019-08-14 21:47:30 +00:00
|
|
|
# Ideally this would be nil, but then Cachex does not commit the value
|
2019-09-24 07:14:34 +00:00
|
|
|
_ -> false
|
|
|
|
end
|
2019-08-14 21:47:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_cached_follow_state(user, target) do
|
|
|
|
key = "follow_state:#{user.ap_id}|#{target.ap_id}"
|
|
|
|
Cachex.fetch!(:user_cache, key, fn _ -> {:commit, follow_state(user, target)} end)
|
|
|
|
end
|
|
|
|
|
2019-09-04 12:25:12 +00:00
|
|
|
@spec set_follow_state_cache(String.t(), String.t(), String.t()) :: {:ok | :error, boolean()}
|
2019-08-14 21:47:30 +00:00
|
|
|
def set_follow_state_cache(user_ap_id, target_ap_id, state) do
|
2019-09-24 07:14:34 +00:00
|
|
|
Cachex.put(:user_cache, "follow_state:#{user_ap_id}|#{target_ap_id}", state)
|
2019-08-14 21:47:30 +00:00
|
|
|
end
|
|
|
|
|
2019-07-09 17:36:35 +00:00
|
|
|
def set_info_cache(user, args) do
|
|
|
|
Cachex.put(:user_cache, "user_info:#{user.id}", user_info(user, args))
|
2017-04-20 22:51:09 +00:00
|
|
|
end
|
|
|
|
|
2019-07-10 14:39:07 +00:00
|
|
|
@spec restrict_deactivated(Ecto.Query.t()) :: Ecto.Query.t()
|
2019-05-14 11:29:10 +00:00
|
|
|
def restrict_deactivated(query) do
|
2019-10-16 18:59:21 +00:00
|
|
|
from(u in query, where: u.deactivated != ^true)
|
2019-03-04 12:55:11 +00:00
|
|
|
end
|
|
|
|
|
2019-10-10 19:35:32 +00:00
|
|
|
defdelegate following_count(user), to: FollowingRelationship
|
2019-03-04 12:55:11 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
defp truncate_fields_param(params) do
|
|
|
|
if Map.has_key?(params, :fields) do
|
|
|
|
Map.put(params, :fields, Enum.map(params[:fields], &truncate_field/1))
|
|
|
|
else
|
|
|
|
params
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-04 14:45:40 +00:00
|
|
|
defp truncate_if_exists(params, key, max_length) do
|
2019-09-04 14:57:42 +00:00
|
|
|
if Map.has_key?(params, key) and is_binary(params[key]) do
|
2019-09-04 14:45:40 +00:00
|
|
|
{value, _chopped} = String.split_at(params[key], max_length)
|
|
|
|
Map.put(params, key, value)
|
|
|
|
else
|
|
|
|
params
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-09 16:11:51 +00:00
|
|
|
def remote_user_creation(params) do
|
2019-08-01 08:53:37 +00:00
|
|
|
bio_limit = Pleroma.Config.get([:instance, :user_bio_length], 5000)
|
|
|
|
name_limit = Pleroma.Config.get([:instance, :user_name_length], 100)
|
2018-11-18 20:40:52 +00:00
|
|
|
|
2019-09-04 14:45:40 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put(:info, params[:info] || %{})
|
|
|
|
|> truncate_if_exists(:name, name_limit)
|
|
|
|
|> truncate_if_exists(:bio, bio_limit)
|
2019-10-16 18:59:21 +00:00
|
|
|
|> truncate_fields_param()
|
2019-09-04 14:45:40 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
changeset =
|
|
|
|
%User{local: false}
|
2019-10-20 10:42:42 +00:00
|
|
|
|> cast(
|
|
|
|
params,
|
|
|
|
[
|
|
|
|
:bio,
|
|
|
|
:name,
|
|
|
|
:ap_id,
|
|
|
|
:nickname,
|
|
|
|
:avatar,
|
|
|
|
:ap_enabled,
|
|
|
|
:source_data,
|
|
|
|
:banner,
|
|
|
|
:locked,
|
|
|
|
:magic_key,
|
|
|
|
:uri,
|
|
|
|
:hide_followers,
|
|
|
|
:hide_follows,
|
|
|
|
:hide_followers_count,
|
|
|
|
:hide_follows_count,
|
|
|
|
:follower_count,
|
|
|
|
:fields,
|
|
|
|
:following_count,
|
2019-10-21 08:58:22 +00:00
|
|
|
:discoverable,
|
|
|
|
:invisible
|
2019-10-20 10:42:42 +00:00
|
|
|
]
|
|
|
|
)
|
2018-08-06 06:50:18 +00:00
|
|
|
|> validate_required([:name, :ap_id])
|
2018-03-30 13:01:53 +00:00
|
|
|
|> unique_constraint(:nickname)
|
|
|
|
|> validate_format(:nickname, @email_regex)
|
2019-08-01 08:53:37 +00:00
|
|
|
|> validate_length(:bio, max: bio_limit)
|
|
|
|
|> validate_length(:name, max: name_limit)
|
2019-10-16 18:59:21 +00:00
|
|
|
|> validate_fields(true)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
case params[:source_data] do
|
2019-09-24 07:14:34 +00:00
|
|
|
%{"followers" => followers, "following" => following} ->
|
|
|
|
changeset
|
|
|
|
|> put_change(:follower_address, followers)
|
|
|
|
|> put_change(:following_address, following)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
_ ->
|
|
|
|
followers = ap_followers(%User{nickname: get_field(changeset, :nickname)})
|
|
|
|
put_change(changeset, :follower_address, followers)
|
2017-07-19 16:49:25 +00:00
|
|
|
end
|
2017-05-09 16:11:51 +00:00
|
|
|
end
|
|
|
|
|
2017-08-29 13:14:00 +00:00
|
|
|
def update_changeset(struct, params \\ %{}) do
|
2019-08-01 08:53:37 +00:00
|
|
|
bio_limit = Pleroma.Config.get([:instance, :user_bio_length], 5000)
|
|
|
|
name_limit = Pleroma.Config.get([:instance, :user_name_length], 100)
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
struct
|
2019-10-20 10:42:42 +00:00
|
|
|
|> cast(
|
|
|
|
params,
|
|
|
|
[
|
|
|
|
:bio,
|
|
|
|
:name,
|
|
|
|
:avatar,
|
|
|
|
:locked,
|
|
|
|
:no_rich_text,
|
|
|
|
:default_scope,
|
|
|
|
:banner,
|
|
|
|
:hide_follows,
|
|
|
|
:hide_followers,
|
|
|
|
:hide_followers_count,
|
|
|
|
:hide_follows_count,
|
|
|
|
:hide_favorites,
|
|
|
|
:background,
|
|
|
|
:show_role,
|
|
|
|
:skip_thread_containment,
|
|
|
|
:fields,
|
|
|
|
:raw_fields,
|
|
|
|
:pleroma_settings_store,
|
|
|
|
:discoverable
|
|
|
|
]
|
|
|
|
)
|
2017-08-29 13:14:00 +00:00
|
|
|
|> unique_constraint(:nickname)
|
2018-12-12 17:17:15 +00:00
|
|
|
|> validate_format(:nickname, local_nickname_regex())
|
2019-08-01 08:53:37 +00:00
|
|
|
|> validate_length(:bio, max: bio_limit)
|
|
|
|
|> validate_length(:name, min: 1, max: name_limit)
|
2019-10-16 18:59:21 +00:00
|
|
|
|> validate_fields(false)
|
2017-08-29 13:14:00 +00:00
|
|
|
end
|
|
|
|
|
2019-08-07 11:14:22 +00:00
|
|
|
def upgrade_changeset(struct, params \\ %{}, remote? \\ false) do
|
2019-08-01 08:53:37 +00:00
|
|
|
bio_limit = Pleroma.Config.get([:instance, :user_bio_length], 5000)
|
|
|
|
name_limit = Pleroma.Config.get([:instance, :user_name_length], 100)
|
2018-09-19 06:13:18 +00:00
|
|
|
|
2019-08-01 08:53:37 +00:00
|
|
|
params = Map.put(params, :last_refreshed_at, NaiveDateTime.utc_now())
|
2018-11-18 21:15:03 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
params = if remote?, do: truncate_fields_param(params), else: params
|
|
|
|
|
2018-02-21 21:21:40 +00:00
|
|
|
struct
|
2019-10-16 18:59:21 +00:00
|
|
|
|> cast(
|
|
|
|
params,
|
|
|
|
[
|
|
|
|
:bio,
|
|
|
|
:name,
|
|
|
|
:follower_address,
|
|
|
|
:following_address,
|
|
|
|
:avatar,
|
2019-10-20 10:42:42 +00:00
|
|
|
:last_refreshed_at,
|
|
|
|
:ap_enabled,
|
|
|
|
:source_data,
|
|
|
|
:banner,
|
|
|
|
:locked,
|
|
|
|
:magic_key,
|
|
|
|
:follower_count,
|
|
|
|
:following_count,
|
|
|
|
:hide_follows,
|
|
|
|
:fields,
|
|
|
|
:hide_followers,
|
|
|
|
:discoverable,
|
|
|
|
:hide_followers_count,
|
|
|
|
:hide_follows_count
|
|
|
|
]
|
2019-10-16 18:59:21 +00:00
|
|
|
)
|
2018-02-21 21:21:40 +00:00
|
|
|
|> unique_constraint(:nickname)
|
2018-12-12 17:17:15 +00:00
|
|
|
|> validate_format(:nickname, local_nickname_regex())
|
2019-08-01 08:53:37 +00:00
|
|
|
|> validate_length(:bio, max: bio_limit)
|
|
|
|
|> validate_length(:name, max: name_limit)
|
2019-10-16 18:59:21 +00:00
|
|
|
|> validate_fields(remote?)
|
2018-02-21 21:21:40 +00:00
|
|
|
end
|
|
|
|
|
2017-10-19 15:37:24 +00:00
|
|
|
def password_update_changeset(struct, params) do
|
2019-06-24 19:01:56 +00:00
|
|
|
struct
|
|
|
|
|> cast(params, [:password, :password_confirmation])
|
|
|
|
|> validate_required([:password, :password_confirmation])
|
|
|
|
|> validate_confirmation(:password)
|
2019-10-16 18:59:21 +00:00
|
|
|
|> put_password_hash()
|
|
|
|
|> put_change(:password_reset_pending, false)
|
2019-06-24 19:01:56 +00:00
|
|
|
end
|
|
|
|
|
2019-07-31 15:14:36 +00:00
|
|
|
@spec reset_password(User.t(), map) :: {:ok, User.t()} | {:error, Ecto.Changeset.t()}
|
2019-06-24 19:01:56 +00:00
|
|
|
def reset_password(%User{id: user_id} = user, data) do
|
|
|
|
multi =
|
|
|
|
Multi.new()
|
|
|
|
|> Multi.update(:user, password_update_changeset(user, data))
|
|
|
|
|> Multi.delete_all(:tokens, OAuth.Token.Query.get_by_user(user_id))
|
|
|
|
|> Multi.delete_all(:auth, OAuth.Authorization.delete_by_user_query(user))
|
|
|
|
|
|
|
|
case Repo.transaction(multi) do
|
|
|
|
{:ok, %{user: user} = _} -> set_cache(user)
|
|
|
|
{:error, _, changeset, _} -> {:error, changeset}
|
2017-10-19 15:37:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def update_password_reset_pending(user, value) do
|
|
|
|
user
|
|
|
|
|> change()
|
|
|
|
|> put_change(:password_reset_pending, value)
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
2019-09-22 13:08:07 +00:00
|
|
|
def force_password_reset_async(user) do
|
|
|
|
BackgroundWorker.enqueue("force_password_reset", %{"user_id" => user.id})
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec force_password_reset(User.t()) :: {:ok, User.t()} | {:error, Ecto.Changeset.t()}
|
2019-10-16 18:59:21 +00:00
|
|
|
def force_password_reset(user), do: update_password_reset_pending(user, true)
|
2019-09-22 13:08:07 +00:00
|
|
|
|
2018-12-18 10:13:57 +00:00
|
|
|
def register_changeset(struct, params \\ %{}, opts \\ []) do
|
2019-08-01 08:53:37 +00:00
|
|
|
bio_limit = Pleroma.Config.get([:instance, :user_bio_length], 5000)
|
|
|
|
name_limit = Pleroma.Config.get([:instance, :user_name_length], 100)
|
|
|
|
|
2019-05-13 18:35:45 +00:00
|
|
|
need_confirmation? =
|
|
|
|
if is_nil(opts[:need_confirmation]) do
|
|
|
|
Pleroma.Config.get([:instance, :account_activation_required])
|
2018-12-18 10:13:57 +00:00
|
|
|
else
|
2019-05-13 18:35:45 +00:00
|
|
|
opts[:need_confirmation]
|
2018-12-18 10:13:57 +00:00
|
|
|
end
|
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
struct
|
2019-10-16 18:59:21 +00:00
|
|
|
|> confirmation_changeset(need_confirmation: need_confirmation?)
|
2019-09-24 07:14:34 +00:00
|
|
|
|> cast(params, [:bio, :email, :name, :nickname, :password, :password_confirmation])
|
|
|
|
|> validate_required([:name, :nickname, :password, :password_confirmation])
|
|
|
|
|> validate_confirmation(:password)
|
|
|
|
|> unique_constraint(:email)
|
|
|
|
|> unique_constraint(:nickname)
|
|
|
|
|> validate_exclusion(:nickname, Pleroma.Config.get([User, :restricted_nicknames]))
|
|
|
|
|> validate_format(:nickname, local_nickname_regex())
|
|
|
|
|> validate_format(:email, @email_regex)
|
|
|
|
|> validate_length(:bio, max: bio_limit)
|
|
|
|
|> validate_length(:name, min: 1, max: name_limit)
|
|
|
|
|> maybe_validate_required_email(opts[:external])
|
|
|
|
|> put_password_hash
|
|
|
|
|> put_ap_id()
|
|
|
|
|> unique_constraint(:ap_id)
|
|
|
|
|> put_following_and_follower_address()
|
|
|
|
end
|
2018-12-20 09:55:12 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
def maybe_validate_required_email(changeset, true), do: changeset
|
|
|
|
def maybe_validate_required_email(changeset, _), do: validate_required(changeset, [:email])
|
2017-04-15 14:40:09 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
defp put_ap_id(changeset) do
|
|
|
|
ap_id = ap_id(%User{nickname: get_field(changeset, :nickname)})
|
|
|
|
put_change(changeset, :ap_id, ap_id)
|
|
|
|
end
|
2019-03-18 15:09:53 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
defp put_following_and_follower_address(changeset) do
|
|
|
|
followers = ap_followers(%User{nickname: get_field(changeset, :nickname)})
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
changeset
|
|
|
|
|> put_change(:follower_address, followers)
|
2017-04-15 14:40:09 +00:00
|
|
|
end
|
|
|
|
|
2019-01-08 08:55:33 +00:00
|
|
|
defp autofollow_users(user) do
|
|
|
|
candidates = Pleroma.Config.get([:instance, :autofollowed_nicknames])
|
|
|
|
|
|
|
|
autofollowed_users =
|
2019-05-14 11:15:56 +00:00
|
|
|
User.Query.build(%{nickname: candidates, local: true, deactivated: false})
|
2019-01-08 08:55:33 +00:00
|
|
|
|> Repo.all()
|
|
|
|
|
2019-01-09 10:38:45 +00:00
|
|
|
follow_all(user, autofollowed_users)
|
2019-01-08 08:55:33 +00:00
|
|
|
end
|
|
|
|
|
2018-12-18 10:13:57 +00:00
|
|
|
@doc "Inserts provided changeset, performs post-registration actions (confirmation email sending etc.)"
|
|
|
|
def register(%Ecto.Changeset{} = changeset) do
|
2019-09-24 07:14:34 +00:00
|
|
|
with {:ok, user} <- Repo.insert(changeset) do
|
|
|
|
post_register_action(user)
|
2019-06-01 05:32:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_register_action(%User{} = user) do
|
|
|
|
with {:ok, user} <- autofollow_users(user),
|
2019-04-22 07:20:43 +00:00
|
|
|
{:ok, user} <- set_cache(user),
|
2019-05-17 07:25:20 +00:00
|
|
|
{:ok, _} <- User.WelcomeMessage.post_welcome_message_to_user(user),
|
2019-04-14 15:01:48 +00:00
|
|
|
{:ok, _} <- try_send_confirmation_email(user) do
|
2018-12-18 10:13:57 +00:00
|
|
|
{:ok, user}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-18 14:13:52 +00:00
|
|
|
def try_send_confirmation_email(%User{} = user) do
|
2019-10-16 18:59:21 +00:00
|
|
|
if user.confirmation_pending &&
|
2018-12-20 11:48:48 +00:00
|
|
|
Pleroma.Config.get([:instance, :account_activation_required]) do
|
2019-04-14 15:12:54 +00:00
|
|
|
user
|
|
|
|
|> Pleroma.Emails.UserEmail.account_confirmation_email()
|
|
|
|
|> Pleroma.Emails.Mailer.deliver_async()
|
2019-04-14 15:01:48 +00:00
|
|
|
|
|
|
|
{:ok, :enqueued}
|
2018-12-18 14:13:52 +00:00
|
|
|
else
|
|
|
|
{:ok, :noop}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-19 11:14:02 +00:00
|
|
|
def try_send_confirmation_email(users) do
|
2019-11-22 00:11:36 +00:00
|
|
|
Enum.each(users, &try_send_confirmation_email/1)
|
2019-11-19 11:14:02 +00:00
|
|
|
end
|
|
|
|
|
2018-09-19 06:13:18 +00:00
|
|
|
def needs_update?(%User{local: true}), do: false
|
|
|
|
|
|
|
|
def needs_update?(%User{local: false, last_refreshed_at: nil}), do: true
|
|
|
|
|
|
|
|
def needs_update?(%User{local: false} = user) do
|
2019-03-05 04:03:13 +00:00
|
|
|
NaiveDateTime.diff(NaiveDateTime.utc_now(), user.last_refreshed_at) >= 86_400
|
2018-09-19 06:13:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def needs_update?(_), do: true
|
|
|
|
|
2019-07-31 15:14:36 +00:00
|
|
|
@spec maybe_direct_follow(User.t(), User.t()) :: {:ok, User.t()} | {:error, String.t()}
|
2019-10-24 07:42:14 +00:00
|
|
|
def maybe_direct_follow(%User{} = follower, %User{local: true, locked: true} = followed) do
|
2019-10-10 19:35:32 +00:00
|
|
|
follow(follower, followed, "pending")
|
2018-10-11 10:49:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def maybe_direct_follow(%User{} = follower, %User{local: true} = followed) do
|
|
|
|
follow(follower, followed)
|
|
|
|
end
|
|
|
|
|
|
|
|
def maybe_direct_follow(%User{} = follower, %User{} = followed) do
|
2019-09-24 07:14:34 +00:00
|
|
|
if not ap_enabled?(followed) do
|
2018-05-25 09:31:42 +00:00
|
|
|
follow(follower, followed)
|
2018-05-28 16:42:18 +00:00
|
|
|
else
|
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-13 12:52:27 +00:00
|
|
|
@doc "A mass follow for local users. Respects blocks in both directions but does not create activities."
|
2019-01-09 10:35:23 +00:00
|
|
|
@spec follow_all(User.t(), list(User.t())) :: {atom(), User.t()}
|
|
|
|
def follow_all(follower, followeds) do
|
2019-11-21 09:31:13 +00:00
|
|
|
followeds
|
|
|
|
|> Enum.reject(fn followed -> blocks?(follower, followed) || blocks?(followed, follower) end)
|
|
|
|
|> Enum.each(&follow(follower, &1, "accept"))
|
2019-01-09 10:35:23 +00:00
|
|
|
|
2019-01-30 18:33:25 +00:00
|
|
|
set_cache(follower)
|
2019-01-09 10:35:23 +00:00
|
|
|
end
|
|
|
|
|
2019-10-10 19:35:32 +00:00
|
|
|
defdelegate following(user), to: FollowingRelationship
|
|
|
|
|
2019-10-24 07:42:14 +00:00
|
|
|
def follow(%User{} = follower, %User{} = followed, state \\ "accept") do
|
2019-05-30 08:33:58 +00:00
|
|
|
deny_follow_blocked = Pleroma.Config.get([:user, :deny_follow_blocked])
|
2018-02-17 15:08:55 +00:00
|
|
|
|
2018-05-25 03:16:02 +00:00
|
|
|
cond do
|
2019-10-16 18:59:21 +00:00
|
|
|
followed.deactivated ->
|
|
|
|
{:error, "Could not follow user: #{followed.nickname} is deactivated."}
|
2017-05-06 12:09:39 +00:00
|
|
|
|
2018-06-23 21:27:07 +00:00
|
|
|
deny_follow_blocked and blocks?(followed, follower) ->
|
2018-05-25 03:16:02 +00:00
|
|
|
{:error, "Could not follow user: #{followed.nickname} blocked you."}
|
2017-03-22 17:36:08 +00:00
|
|
|
|
2018-05-25 03:16:02 +00:00
|
|
|
true ->
|
2019-10-10 19:35:32 +00:00
|
|
|
FollowingRelationship.follow(follower, followed, state)
|
2017-07-22 15:42:15 +00:00
|
|
|
|
2018-05-25 03:16:02 +00:00
|
|
|
{:ok, _} = update_follower_count(followed)
|
|
|
|
|
2019-11-21 09:31:13 +00:00
|
|
|
follower
|
|
|
|
|> update_following_count()
|
|
|
|
|> set_cache()
|
2017-04-12 14:34:36 +00:00
|
|
|
end
|
2017-03-22 17:36:08 +00:00
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
|
|
|
|
def unfollow(%User{} = follower, %User{} = followed) do
|
2017-11-19 23:21:53 +00:00
|
|
|
if following?(follower, followed) and follower.ap_id != followed.ap_id do
|
2019-10-10 19:35:32 +00:00
|
|
|
FollowingRelationship.unfollow(follower, followed)
|
2017-07-22 15:42:15 +00:00
|
|
|
|
|
|
|
{:ok, followed} = update_follower_count(followed)
|
|
|
|
|
2019-11-21 09:31:13 +00:00
|
|
|
{:ok, follower} =
|
|
|
|
follower
|
|
|
|
|> update_following_count()
|
|
|
|
|> set_cache()
|
2019-01-30 18:21:04 +00:00
|
|
|
|
2017-07-22 15:42:15 +00:00
|
|
|
{:ok, follower, Utils.fetch_latest_follow(follower, followed)}
|
2017-04-12 14:34:36 +00:00
|
|
|
else
|
2017-04-27 13:18:50 +00:00
|
|
|
{:error, "Not subscribed!"}
|
2017-04-12 14:34:36 +00:00
|
|
|
end
|
2017-03-23 12:13:09 +00:00
|
|
|
end
|
2017-03-23 14:51:34 +00:00
|
|
|
|
2019-10-10 19:35:32 +00:00
|
|
|
defdelegate following?(follower, followed), to: FollowingRelationship
|
2017-04-14 15:13:51 +00:00
|
|
|
|
2018-05-26 14:55:16 +00:00
|
|
|
def locked?(%User{} = user) do
|
2019-10-16 18:59:21 +00:00
|
|
|
user.locked || false
|
2018-05-26 14:55:16 +00:00
|
|
|
end
|
|
|
|
|
2018-12-14 18:55:40 +00:00
|
|
|
def get_by_id(id) do
|
|
|
|
Repo.get_by(User, id: id)
|
|
|
|
end
|
|
|
|
|
2017-05-11 15:59:11 +00:00
|
|
|
def get_by_ap_id(ap_id) do
|
|
|
|
Repo.get_by(User, ap_id: ap_id)
|
|
|
|
end
|
|
|
|
|
2019-08-02 09:55:41 +00:00
|
|
|
def get_all_by_ap_id(ap_ids) do
|
|
|
|
from(u in __MODULE__,
|
|
|
|
where: u.ap_id in ^ap_ids
|
|
|
|
)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
|
|
|
|
2019-09-06 18:50:00 +00:00
|
|
|
def get_all_by_ids(ids) do
|
|
|
|
from(u in __MODULE__, where: u.id in ^ids)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
|
|
|
|
2019-03-05 04:37:33 +00:00
|
|
|
# This is mostly an SPC migration fix. This guesses the user nickname by taking the last part
|
|
|
|
# of the ap_id and the domain and tries to get that user
|
2019-01-07 11:41:31 +00:00
|
|
|
def get_by_guessed_nickname(ap_id) do
|
|
|
|
domain = URI.parse(ap_id).host
|
|
|
|
name = List.last(String.split(ap_id, "/"))
|
|
|
|
nickname = "#{name}@#{domain}"
|
|
|
|
|
2019-04-22 07:20:43 +00:00
|
|
|
get_cached_by_nickname(nickname)
|
2019-01-07 11:41:31 +00:00
|
|
|
end
|
|
|
|
|
2019-04-22 07:20:43 +00:00
|
|
|
def set_cache({:ok, user}), do: set_cache(user)
|
|
|
|
def set_cache({:error, err}), do: {:error, err}
|
|
|
|
|
|
|
|
def set_cache(%User{} = user) do
|
2019-01-30 18:21:04 +00:00
|
|
|
Cachex.put(:user_cache, "ap_id:#{user.ap_id}", user)
|
|
|
|
Cachex.put(:user_cache, "nickname:#{user.nickname}", user)
|
|
|
|
Cachex.put(:user_cache, "user_info:#{user.id}", user_info(user))
|
|
|
|
{:ok, user}
|
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def update_and_set_cache(struct, params) do
|
|
|
|
struct
|
|
|
|
|> update_changeset(params)
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
2017-12-08 16:50:11 +00:00
|
|
|
def update_and_set_cache(changeset) do
|
2019-07-28 20:29:26 +00:00
|
|
|
with {:ok, user} <- Repo.update(changeset, stale_error_field: :id) do
|
2019-01-30 18:21:04 +00:00
|
|
|
set_cache(user)
|
2017-12-08 16:50:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-25 15:14:25 +00:00
|
|
|
def invalidate_cache(user) do
|
|
|
|
Cachex.del(:user_cache, "ap_id:#{user.ap_id}")
|
|
|
|
Cachex.del(:user_cache, "nickname:#{user.nickname}")
|
2018-11-01 07:52:58 +00:00
|
|
|
Cachex.del(:user_cache, "user_info:#{user.id}")
|
2018-02-25 15:14:25 +00:00
|
|
|
end
|
|
|
|
|
2017-04-14 15:13:51 +00:00
|
|
|
def get_cached_by_ap_id(ap_id) do
|
2017-04-17 09:36:17 +00:00
|
|
|
key = "ap_id:#{ap_id}"
|
2018-05-20 16:05:34 +00:00
|
|
|
Cachex.fetch!(:user_cache, key, fn _ -> get_by_ap_id(ap_id) end)
|
2017-04-14 15:13:51 +00:00
|
|
|
end
|
|
|
|
|
2018-12-14 18:55:40 +00:00
|
|
|
def get_cached_by_id(id) do
|
|
|
|
key = "id:#{id}"
|
2019-01-16 14:44:08 +00:00
|
|
|
|
|
|
|
ap_id =
|
|
|
|
Cachex.fetch!(:user_cache, key, fn _ ->
|
|
|
|
user = get_by_id(id)
|
2019-01-17 16:00:08 +00:00
|
|
|
|
|
|
|
if user do
|
|
|
|
Cachex.put(:user_cache, "ap_id:#{user.ap_id}", user)
|
|
|
|
{:commit, user.ap_id}
|
|
|
|
else
|
|
|
|
{:ignore, ""}
|
|
|
|
end
|
2019-01-16 14:44:08 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
get_cached_by_ap_id(ap_id)
|
2018-12-14 18:55:40 +00:00
|
|
|
end
|
|
|
|
|
2017-04-14 15:13:51 +00:00
|
|
|
def get_cached_by_nickname(nickname) do
|
2017-04-17 09:36:17 +00:00
|
|
|
key = "nickname:#{nickname}"
|
2019-03-18 14:53:30 +00:00
|
|
|
|
2019-03-18 13:56:59 +00:00
|
|
|
Cachex.fetch!(:user_cache, key, fn ->
|
2019-09-24 07:14:34 +00:00
|
|
|
case get_or_fetch_by_nickname(nickname) do
|
2019-03-18 13:56:59 +00:00
|
|
|
{:ok, user} -> {:commit, user}
|
2019-05-01 09:09:53 +00:00
|
|
|
{:error, _error} -> {:ignore, nil}
|
2019-03-18 13:56:59 +00:00
|
|
|
end
|
|
|
|
end)
|
2017-04-14 15:13:51 +00:00
|
|
|
end
|
2017-04-30 08:04:54 +00:00
|
|
|
|
2019-09-03 14:54:21 +00:00
|
|
|
def get_cached_by_nickname_or_id(nickname_or_id, opts \\ []) do
|
2019-09-05 12:33:49 +00:00
|
|
|
restrict_to_local = Pleroma.Config.get([:instance, :limit_to_local_content])
|
|
|
|
|
|
|
|
cond do
|
2019-09-18 14:54:31 +00:00
|
|
|
is_integer(nickname_or_id) or FlakeId.flake_id?(nickname_or_id) ->
|
2019-09-05 12:33:49 +00:00
|
|
|
get_cached_by_id(nickname_or_id) || get_cached_by_nickname(nickname_or_id)
|
|
|
|
|
2019-10-03 22:05:50 +00:00
|
|
|
restrict_to_local == false or not String.contains?(nickname_or_id, "@") ->
|
2019-09-05 12:33:49 +00:00
|
|
|
get_cached_by_nickname(nickname_or_id)
|
|
|
|
|
|
|
|
restrict_to_local == :unauthenticated and match?(%User{}, opts[:for]) ->
|
|
|
|
get_cached_by_nickname(nickname_or_id)
|
|
|
|
|
|
|
|
true ->
|
|
|
|
nil
|
2019-09-03 14:54:21 +00:00
|
|
|
end
|
2018-12-14 18:55:40 +00:00
|
|
|
end
|
|
|
|
|
2017-04-30 13:06:22 +00:00
|
|
|
def get_by_nickname(nickname) do
|
2018-12-29 09:15:46 +00:00
|
|
|
Repo.get_by(User, nickname: nickname) ||
|
2018-12-29 09:26:23 +00:00
|
|
|
if Regex.match?(~r(@#{Pleroma.Web.Endpoint.host()})i, nickname) do
|
2019-01-18 06:30:16 +00:00
|
|
|
Repo.get_by(User, nickname: local_nickname(nickname))
|
2018-12-29 09:15:46 +00:00
|
|
|
end
|
2017-04-30 13:05:16 +00:00
|
|
|
end
|
|
|
|
|
2019-03-15 14:08:03 +00:00
|
|
|
def get_by_email(email), do: Repo.get_by(User, email: email)
|
|
|
|
|
2018-04-18 10:13:57 +00:00
|
|
|
def get_by_nickname_or_email(nickname_or_email) do
|
2019-03-15 14:08:03 +00:00
|
|
|
get_by_nickname(nickname_or_email) || get_by_email(nickname_or_email)
|
2018-04-18 10:13:57 +00:00
|
|
|
end
|
|
|
|
|
2017-04-30 08:04:54 +00:00
|
|
|
def get_cached_user_info(user) do
|
|
|
|
key = "user_info:#{user.id}"
|
2019-09-24 07:14:34 +00:00
|
|
|
Cachex.fetch!(:user_cache, key, fn -> user_info(user) end)
|
2017-04-30 08:04:54 +00:00
|
|
|
end
|
2017-04-30 16:48:48 +00:00
|
|
|
|
2019-10-17 23:37:21 +00:00
|
|
|
def fetch_by_nickname(nickname), do: ActivityPub.make_user_from_nickname(nickname)
|
2018-02-18 11:27:05 +00:00
|
|
|
|
2017-04-30 16:48:48 +00:00
|
|
|
def get_or_fetch_by_nickname(nickname) do
|
2018-03-30 13:01:53 +00:00
|
|
|
with %User{} = user <- get_by_nickname(nickname) do
|
2019-03-18 13:56:59 +00:00
|
|
|
{:ok, user}
|
2018-03-30 13:01:53 +00:00
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
with [_nick, _domain] <- String.split(nickname, "@"),
|
|
|
|
{:ok, user} <- fetch_by_nickname(nickname) do
|
2019-03-06 21:13:26 +00:00
|
|
|
if Pleroma.Config.get([:fetch_initial_posts, :enabled]) do
|
2019-05-13 01:58:30 +00:00
|
|
|
fetch_initial_posts(user)
|
2019-03-06 21:13:26 +00:00
|
|
|
end
|
|
|
|
|
2019-03-18 13:56:59 +00:00
|
|
|
{:ok, user}
|
2018-03-30 13:01:53 +00:00
|
|
|
else
|
2019-05-01 09:09:53 +00:00
|
|
|
_e -> {:error, "not found " <> nickname}
|
2018-03-30 13:01:53 +00:00
|
|
|
end
|
2017-04-30 16:48:48 +00:00
|
|
|
end
|
2017-04-14 15:13:51 +00:00
|
|
|
end
|
2017-07-20 17:37:41 +00:00
|
|
|
|
2019-03-06 21:13:26 +00:00
|
|
|
@doc "Fetch some posts when the user has just been federated with"
|
2019-08-13 17:20:26 +00:00
|
|
|
def fetch_initial_posts(user) do
|
2019-08-31 18:58:42 +00:00
|
|
|
BackgroundWorker.enqueue("fetch_initial_posts", %{"user_id" => user.id})
|
2019-08-13 17:20:26 +00:00
|
|
|
end
|
2019-03-06 21:13:26 +00:00
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec get_followers_query(User.t(), pos_integer() | nil) :: Ecto.Query.t()
|
|
|
|
def get_followers_query(%User{} = user, nil) do
|
2019-05-14 11:15:56 +00:00
|
|
|
User.Query.build(%{followers: user, deactivated: false})
|
2018-03-31 18:02:09 +00:00
|
|
|
end
|
|
|
|
|
2019-01-09 17:14:32 +00:00
|
|
|
def get_followers_query(user, page) do
|
2019-09-24 07:14:34 +00:00
|
|
|
user
|
|
|
|
|> get_followers_query(nil)
|
2019-05-08 14:34:36 +00:00
|
|
|
|> User.Query.paginate(page, 20)
|
2019-01-09 17:14:32 +00:00
|
|
|
end
|
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec get_followers_query(User.t()) :: Ecto.Query.t()
|
2019-01-09 17:14:32 +00:00
|
|
|
def get_followers_query(user), do: get_followers_query(user, nil)
|
|
|
|
|
2019-07-23 19:15:48 +00:00
|
|
|
@spec get_followers(User.t(), pos_integer()) :: {:ok, list(User.t())}
|
2019-01-09 17:14:32 +00:00
|
|
|
def get_followers(user, page \\ nil) do
|
2019-09-24 07:16:52 +00:00
|
|
|
user
|
|
|
|
|> get_followers_query(page)
|
|
|
|
|> Repo.all()
|
2017-07-20 17:37:41 +00:00
|
|
|
end
|
|
|
|
|
2019-07-23 19:15:48 +00:00
|
|
|
@spec get_external_followers(User.t(), pos_integer()) :: {:ok, list(User.t())}
|
|
|
|
def get_external_followers(user, page \\ nil) do
|
2019-09-24 07:14:34 +00:00
|
|
|
user
|
|
|
|
|> get_followers_query(page)
|
|
|
|
|> User.Query.build(%{external: true})
|
|
|
|
|> Repo.all()
|
2019-07-23 19:15:48 +00:00
|
|
|
end
|
|
|
|
|
2019-01-14 17:04:45 +00:00
|
|
|
def get_followers_ids(user, page \\ nil) do
|
2019-09-24 07:14:34 +00:00
|
|
|
user
|
|
|
|
|> get_followers_query(page)
|
|
|
|
|> select([u], u.id)
|
|
|
|
|> Repo.all()
|
2019-01-14 17:04:45 +00:00
|
|
|
end
|
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec get_friends_query(User.t(), pos_integer() | nil) :: Ecto.Query.t()
|
|
|
|
def get_friends_query(%User{} = user, nil) do
|
2019-05-14 11:15:56 +00:00
|
|
|
User.Query.build(%{friends: user, deactivated: false})
|
2018-03-31 18:02:09 +00:00
|
|
|
end
|
|
|
|
|
2019-01-09 17:14:32 +00:00
|
|
|
def get_friends_query(user, page) do
|
2019-09-24 07:14:34 +00:00
|
|
|
user
|
|
|
|
|> get_friends_query(nil)
|
2019-05-08 14:34:36 +00:00
|
|
|
|> User.Query.paginate(page, 20)
|
2019-01-09 17:14:32 +00:00
|
|
|
end
|
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec get_friends_query(User.t()) :: Ecto.Query.t()
|
2019-01-09 17:14:32 +00:00
|
|
|
def get_friends_query(user), do: get_friends_query(user, nil)
|
|
|
|
|
|
|
|
def get_friends(user, page \\ nil) do
|
2019-09-24 07:16:52 +00:00
|
|
|
user
|
|
|
|
|> get_friends_query(page)
|
|
|
|
|> Repo.all()
|
2017-07-20 17:37:41 +00:00
|
|
|
end
|
2017-07-22 15:42:15 +00:00
|
|
|
|
2019-01-14 17:04:45 +00:00
|
|
|
def get_friends_ids(user, page \\ nil) do
|
2019-09-24 07:14:34 +00:00
|
|
|
user
|
|
|
|
|> get_friends_query(page)
|
|
|
|
|> select([u], u.id)
|
|
|
|
|> Repo.all()
|
2019-01-14 17:04:45 +00:00
|
|
|
end
|
|
|
|
|
2019-10-10 19:35:32 +00:00
|
|
|
defdelegate get_follow_requests(user), to: FollowingRelationship
|
2018-05-26 16:03:32 +00:00
|
|
|
|
2017-10-31 15:37:11 +00:00
|
|
|
def increase_note_count(%User{} = user) do
|
2019-03-03 14:27:09 +00:00
|
|
|
User
|
|
|
|
|> where(id: ^user.id)
|
2019-10-16 18:59:21 +00:00
|
|
|
|> update([u], inc: [note_count: 1])
|
2019-03-20 12:59:27 +00:00
|
|
|
|> select([u], u)
|
|
|
|
|> Repo.update_all([])
|
2019-03-03 14:27:09 +00:00
|
|
|
|> case do
|
|
|
|
{1, [user]} -> set_cache(user)
|
|
|
|
_ -> {:error, user}
|
|
|
|
end
|
2017-10-31 15:37:11 +00:00
|
|
|
end
|
|
|
|
|
2018-04-24 09:34:18 +00:00
|
|
|
def decrease_note_count(%User{} = user) do
|
2019-03-03 14:27:09 +00:00
|
|
|
User
|
|
|
|
|> where(id: ^user.id)
|
|
|
|
|> update([u],
|
|
|
|
set: [
|
2019-10-16 18:59:21 +00:00
|
|
|
note_count: fragment("greatest(0, note_count - 1)")
|
2019-03-03 14:27:09 +00:00
|
|
|
]
|
|
|
|
)
|
2019-03-20 12:59:27 +00:00
|
|
|
|> select([u], u)
|
|
|
|
|> Repo.update_all([])
|
2019-03-03 14:27:09 +00:00
|
|
|
|> case do
|
|
|
|
{1, [user]} -> set_cache(user)
|
|
|
|
_ -> {:error, user}
|
|
|
|
end
|
2018-04-24 09:34:18 +00:00
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def update_note_count(%User{} = user, note_count \\ nil) do
|
2019-09-24 12:50:07 +00:00
|
|
|
note_count =
|
2019-10-16 18:59:21 +00:00
|
|
|
note_count ||
|
|
|
|
from(
|
|
|
|
a in Object,
|
|
|
|
where: fragment("?->>'actor' = ? and ?->>'type' = 'Note'", a.data, ^user.ap_id, a.data),
|
|
|
|
select: count(a.id)
|
|
|
|
)
|
|
|
|
|> Repo.one()
|
2019-09-06 18:50:00 +00:00
|
|
|
|
2019-10-20 10:42:42 +00:00
|
|
|
user
|
|
|
|
|> cast(%{note_count: note_count}, [:note_count])
|
|
|
|
|> update_and_set_cache()
|
2019-09-06 18:50:00 +00:00
|
|
|
end
|
|
|
|
|
2019-08-16 12:58:42 +00:00
|
|
|
@spec maybe_fetch_follow_information(User.t()) :: User.t()
|
2019-07-13 22:58:39 +00:00
|
|
|
def maybe_fetch_follow_information(user) do
|
|
|
|
with {:ok, user} <- fetch_follow_information(user) do
|
|
|
|
user
|
|
|
|
else
|
|
|
|
e ->
|
2019-07-20 19:04:47 +00:00
|
|
|
Logger.error("Follower/Following counter update for #{user.ap_id} failed.\n#{inspect(e)}")
|
2019-07-13 22:58:39 +00:00
|
|
|
|
|
|
|
user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_follow_information(user) do
|
|
|
|
with {:ok, info} <- ActivityPub.fetch_follow_information_for_user(user) do
|
2019-10-16 18:59:21 +00:00
|
|
|
user
|
|
|
|
|> follow_information_changeset(info)
|
|
|
|
|> update_and_set_cache()
|
2019-07-13 22:58:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
defp follow_information_changeset(user, params) do
|
|
|
|
user
|
|
|
|
|> cast(params, [
|
|
|
|
:hide_followers,
|
|
|
|
:hide_follows,
|
|
|
|
:follower_count,
|
|
|
|
:following_count,
|
|
|
|
:hide_followers_count,
|
|
|
|
:hide_follows_count
|
|
|
|
])
|
|
|
|
end
|
|
|
|
|
2017-07-22 15:42:15 +00:00
|
|
|
def update_follower_count(%User{} = user) do
|
2019-07-31 16:37:55 +00:00
|
|
|
if user.local or !Pleroma.Config.get([:instance, :external_user_synchronization]) do
|
2019-07-13 22:58:39 +00:00
|
|
|
follower_count_query =
|
|
|
|
User.Query.build(%{followers: user, deactivated: false})
|
|
|
|
|> select([u], %{count: count(u.id)})
|
|
|
|
|
|
|
|
User
|
|
|
|
|> where(id: ^user.id)
|
|
|
|
|> join(:inner, [u], s in subquery(follower_count_query))
|
|
|
|
|> update([u, s],
|
2019-10-16 18:59:21 +00:00
|
|
|
set: [follower_count: s.count]
|
2019-07-13 22:58:39 +00:00
|
|
|
)
|
|
|
|
|> select([u], u)
|
|
|
|
|> Repo.update_all([])
|
|
|
|
|> case do
|
|
|
|
{1, [user]} -> set_cache(user)
|
|
|
|
_ -> {:error, user}
|
|
|
|
end
|
|
|
|
else
|
|
|
|
{:ok, maybe_fetch_follow_information(user)}
|
|
|
|
end
|
|
|
|
end
|
2017-07-22 15:42:15 +00:00
|
|
|
|
2019-11-21 09:31:13 +00:00
|
|
|
@spec update_following_count(User.t()) :: User.t()
|
|
|
|
def update_following_count(%User{local: false} = user) do
|
2019-07-13 22:58:39 +00:00
|
|
|
if Pleroma.Config.get([:instance, :external_user_synchronization]) do
|
2019-08-16 12:58:42 +00:00
|
|
|
maybe_fetch_follow_information(user)
|
2019-07-13 22:58:39 +00:00
|
|
|
else
|
|
|
|
user
|
2019-03-03 14:27:09 +00:00
|
|
|
end
|
2017-07-22 15:42:15 +00:00
|
|
|
end
|
2017-09-11 14:15:28 +00:00
|
|
|
|
2019-11-21 09:31:13 +00:00
|
|
|
def update_following_count(%User{local: true} = user) do
|
|
|
|
following_count = FollowingRelationship.following_count(user)
|
|
|
|
|
|
|
|
user
|
|
|
|
|> follow_information_changeset(%{following_count: following_count})
|
|
|
|
|> Repo.update!()
|
|
|
|
end
|
2019-07-13 22:58:39 +00:00
|
|
|
|
2019-10-01 21:37:08 +00:00
|
|
|
def set_unread_conversation_count(%User{local: true} = user) do
|
|
|
|
unread_query = Participation.unread_conversation_count_for_user(user)
|
|
|
|
|
|
|
|
User
|
|
|
|
|> join(:inner, [u], p in subquery(unread_query))
|
|
|
|
|> update([u, p],
|
2019-10-16 18:59:21 +00:00
|
|
|
set: [unread_conversation_count: p.count]
|
2019-10-01 21:37:08 +00:00
|
|
|
)
|
|
|
|
|> where([u], u.id == ^user.id)
|
|
|
|
|> select([u], u)
|
|
|
|
|> Repo.update_all([])
|
|
|
|
|> case do
|
|
|
|
{1, [user]} -> set_cache(user)
|
|
|
|
_ -> {:error, user}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-25 18:29:23 +00:00
|
|
|
def set_unread_conversation_count(user), do: {:ok, user}
|
2019-10-01 21:37:08 +00:00
|
|
|
|
|
|
|
def increment_unread_conversation_count(conversation, %User{local: true} = user) do
|
|
|
|
unread_query =
|
|
|
|
Participation.unread_conversation_count_for_user(user)
|
|
|
|
|> where([p], p.conversation_id == ^conversation.id)
|
|
|
|
|
|
|
|
User
|
|
|
|
|> join(:inner, [u], p in subquery(unread_query))
|
|
|
|
|> update([u, p],
|
2019-10-16 18:59:21 +00:00
|
|
|
inc: [unread_conversation_count: 1]
|
2019-10-01 21:37:08 +00:00
|
|
|
)
|
|
|
|
|> where([u], u.id == ^user.id)
|
|
|
|
|> where([u, p], p.count == 0)
|
|
|
|
|> select([u], u)
|
|
|
|
|> Repo.update_all([])
|
|
|
|
|> case do
|
|
|
|
{1, [user]} -> set_cache(user)
|
|
|
|
_ -> {:error, user}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-25 18:29:23 +00:00
|
|
|
def increment_unread_conversation_count(_, user), do: {:ok, user}
|
2019-10-01 21:37:08 +00:00
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec get_users_from_set([String.t()], boolean()) :: [User.t()]
|
2018-11-09 08:23:45 +00:00
|
|
|
def get_users_from_set(ap_ids, local_only \\ true) do
|
2019-05-14 11:15:56 +00:00
|
|
|
criteria = %{ap_id: ap_ids, deactivated: false}
|
2019-05-08 14:34:36 +00:00
|
|
|
criteria = if local_only, do: Map.put(criteria, :local, true), else: criteria
|
|
|
|
|
|
|
|
User.Query.build(criteria)
|
2018-11-09 08:23:45 +00:00
|
|
|
|> Repo.all()
|
|
|
|
end
|
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec get_recipients_from_activity(Activity.t()) :: [User.t()]
|
2018-02-19 09:05:26 +00:00
|
|
|
def get_recipients_from_activity(%Activity{recipients: to}) do
|
2019-05-14 11:15:56 +00:00
|
|
|
User.Query.build(%{recipients_from_activity: to, local: true, deactivated: false})
|
2019-05-08 14:34:36 +00:00
|
|
|
|> Repo.all()
|
2017-11-16 15:49:51 +00:00
|
|
|
end
|
|
|
|
|
2019-07-14 13:29:31 +00:00
|
|
|
@spec mute(User.t(), User.t(), boolean()) :: {:ok, User.t()} | {:error, String.t()}
|
|
|
|
def mute(muter, %User{ap_id: ap_id}, notifications? \\ true) do
|
2019-10-20 10:42:42 +00:00
|
|
|
add_to_mutes(muter, ap_id, notifications?)
|
2018-09-05 20:49:15 +00:00
|
|
|
end
|
|
|
|
|
2019-02-19 20:09:16 +00:00
|
|
|
def unmute(muter, %{ap_id: ap_id}) do
|
2019-10-20 10:42:42 +00:00
|
|
|
remove_from_mutes(muter, ap_id)
|
2018-09-05 20:49:15 +00:00
|
|
|
end
|
|
|
|
|
2019-04-05 12:49:33 +00:00
|
|
|
def subscribe(subscriber, %{ap_id: ap_id}) do
|
2019-04-08 14:56:14 +00:00
|
|
|
with %User{} = subscribed <- get_cached_by_ap_id(ap_id) do
|
2019-09-24 07:14:34 +00:00
|
|
|
deny_follow_blocked = Pleroma.Config.get([:user, :deny_follow_blocked])
|
2019-04-08 11:46:12 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
if blocks?(subscribed, subscriber) and deny_follow_blocked do
|
2019-04-08 11:46:12 +00:00
|
|
|
{:error, "Could not subscribe: #{subscribed.nickname} is blocking you"}
|
|
|
|
else
|
2019-10-16 18:59:21 +00:00
|
|
|
User.add_to_subscribers(subscribed, subscriber.ap_id)
|
2019-04-08 11:46:12 +00:00
|
|
|
end
|
2019-04-05 15:51:45 +00:00
|
|
|
end
|
2019-04-05 12:49:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribe(unsubscriber, %{ap_id: ap_id}) do
|
2019-04-08 14:56:14 +00:00
|
|
|
with %User{} = user <- get_cached_by_ap_id(ap_id) do
|
2019-10-16 18:59:21 +00:00
|
|
|
User.remove_from_subscribers(user, unsubscriber.ap_id)
|
2019-04-05 15:51:45 +00:00
|
|
|
end
|
2019-04-05 12:49:33 +00:00
|
|
|
end
|
|
|
|
|
2018-06-19 00:36:40 +00:00
|
|
|
def block(blocker, %User{ap_id: ap_id} = blocked) do
|
|
|
|
# sever any follow relationships to prevent leaks per activitypub (Pleroma issue #213)
|
|
|
|
blocker =
|
|
|
|
if following?(blocker, blocked) do
|
|
|
|
{:ok, blocker, _} = unfollow(blocker, blocked)
|
|
|
|
blocker
|
|
|
|
else
|
|
|
|
blocker
|
|
|
|
end
|
|
|
|
|
2019-08-18 19:29:31 +00:00
|
|
|
# clear any requested follows as well
|
|
|
|
blocked =
|
|
|
|
case CommonAPI.reject_follow_request(blocked, blocker) do
|
|
|
|
{:ok, %User{} = updated_blocked} -> updated_blocked
|
|
|
|
nil -> blocked
|
|
|
|
end
|
|
|
|
|
2019-04-08 11:46:12 +00:00
|
|
|
blocker =
|
|
|
|
if subscribed_to?(blocked, blocker) do
|
|
|
|
{:ok, blocker} = unsubscribe(blocked, blocker)
|
|
|
|
blocker
|
|
|
|
else
|
|
|
|
blocker
|
|
|
|
end
|
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
if following?(blocked, blocker), do: unfollow(blocked, blocker)
|
2018-06-19 00:36:40 +00:00
|
|
|
|
2019-04-08 09:31:18 +00:00
|
|
|
{:ok, blocker} = update_follower_count(blocker)
|
2019-10-25 18:29:23 +00:00
|
|
|
{:ok, blocker, _} = Participation.mark_all_as_read(blocker, blocked)
|
2019-10-20 10:42:42 +00:00
|
|
|
add_to_block(blocker, ap_id)
|
2017-11-02 20:57:37 +00:00
|
|
|
end
|
|
|
|
|
2018-06-19 08:31:06 +00:00
|
|
|
# helper to handle the block given only an actor's AP id
|
|
|
|
def block(blocker, %{ap_id: ap_id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
block(blocker, get_cached_by_ap_id(ap_id))
|
2018-06-19 08:31:06 +00:00
|
|
|
end
|
|
|
|
|
2018-11-18 17:40:31 +00:00
|
|
|
def unblock(blocker, %{ap_id: ap_id}) do
|
2019-10-20 10:42:42 +00:00
|
|
|
remove_from_block(blocker, ap_id)
|
2017-11-02 20:57:37 +00:00
|
|
|
end
|
|
|
|
|
2019-02-27 15:46:47 +00:00
|
|
|
def mutes?(nil, _), do: false
|
2019-10-20 10:42:42 +00:00
|
|
|
def mutes?(user, %{ap_id: ap_id}), do: Enum.member?(user.mutes, ap_id)
|
2018-09-05 20:49:15 +00:00
|
|
|
|
2019-07-14 13:29:31 +00:00
|
|
|
@spec muted_notifications?(User.t() | nil, User.t() | map()) :: boolean()
|
|
|
|
def muted_notifications?(nil, _), do: false
|
|
|
|
|
|
|
|
def muted_notifications?(user, %{ap_id: ap_id}),
|
2019-10-20 10:42:42 +00:00
|
|
|
do: Enum.member?(user.muted_notifications, ap_id)
|
2018-09-05 20:49:15 +00:00
|
|
|
|
2019-07-24 15:12:27 +00:00
|
|
|
def blocks?(%User{} = user, %User{} = target) do
|
|
|
|
blocks_ap_id?(user, target) || blocks_domain?(user, target)
|
|
|
|
end
|
2019-07-22 14:33:58 +00:00
|
|
|
|
2019-07-24 15:12:27 +00:00
|
|
|
def blocks?(nil, _), do: false
|
2019-07-22 14:33:58 +00:00
|
|
|
|
2019-07-24 15:12:27 +00:00
|
|
|
def blocks_ap_id?(%User{} = user, %User{} = target) do
|
2019-10-20 10:42:42 +00:00
|
|
|
Enum.member?(user.blocks, target.ap_id)
|
2019-07-24 15:12:27 +00:00
|
|
|
end
|
2018-06-03 19:21:23 +00:00
|
|
|
|
2019-07-24 15:12:27 +00:00
|
|
|
def blocks_ap_id?(_, _), do: false
|
|
|
|
|
|
|
|
def blocks_domain?(%User{} = user, %User{} = target) do
|
2019-10-20 10:42:42 +00:00
|
|
|
domain_blocks = Pleroma.Web.ActivityPub.MRF.subdomains_regex(user.domain_blocks)
|
2019-07-24 15:12:27 +00:00
|
|
|
%{host: host} = URI.parse(target.ap_id)
|
|
|
|
Pleroma.Web.ActivityPub.MRF.subdomain_match?(domain_blocks, host)
|
2018-06-03 19:01:37 +00:00
|
|
|
end
|
|
|
|
|
2019-07-24 15:12:27 +00:00
|
|
|
def blocks_domain?(_, _), do: false
|
2019-07-23 18:44:47 +00:00
|
|
|
|
2019-04-05 14:21:33 +00:00
|
|
|
def subscribed_to?(user, %{ap_id: ap_id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = target <- get_cached_by_ap_id(ap_id) do
|
2019-10-16 18:59:21 +00:00
|
|
|
Enum.member?(target.subscribers, user.ap_id)
|
2019-04-05 15:51:45 +00:00
|
|
|
end
|
2019-04-05 14:21:33 +00:00
|
|
|
end
|
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec muted_users(User.t()) :: [User.t()]
|
|
|
|
def muted_users(user) do
|
2019-10-20 10:42:42 +00:00
|
|
|
User.Query.build(%{ap_id: user.mutes, deactivated: false})
|
2019-05-08 14:34:36 +00:00
|
|
|
|> Repo.all()
|
|
|
|
end
|
2019-02-19 20:09:16 +00:00
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec blocked_users(User.t()) :: [User.t()]
|
|
|
|
def blocked_users(user) do
|
2019-10-20 10:42:42 +00:00
|
|
|
User.Query.build(%{ap_id: user.blocks, deactivated: false})
|
2019-05-08 14:34:36 +00:00
|
|
|
|> Repo.all()
|
|
|
|
end
|
2018-12-28 18:08:07 +00:00
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec subscribers(User.t()) :: [User.t()]
|
|
|
|
def subscribers(user) do
|
2019-10-16 18:59:21 +00:00
|
|
|
User.Query.build(%{ap_id: user.subscribers, deactivated: false})
|
2019-05-08 14:34:36 +00:00
|
|
|
|> Repo.all()
|
|
|
|
end
|
2019-04-05 13:20:13 +00:00
|
|
|
|
2019-04-11 10:22:42 +00:00
|
|
|
def deactivate_async(user, status \\ true) do
|
2019-08-31 18:58:42 +00:00
|
|
|
BackgroundWorker.enqueue("deactivate_user", %{"user_id" => user.id, "status" => status})
|
2019-04-11 10:22:42 +00:00
|
|
|
end
|
|
|
|
|
2019-10-09 14:03:54 +00:00
|
|
|
def deactivate(user, status \\ true)
|
|
|
|
|
|
|
|
def deactivate(users, status) when is_list(users) do
|
|
|
|
Repo.transaction(fn ->
|
|
|
|
for user <- users, do: deactivate(user, status)
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def deactivate(%User{} = user, status) do
|
2019-10-16 18:59:21 +00:00
|
|
|
with {:ok, user} <- set_activation_status(user, status) do
|
2019-11-21 09:31:13 +00:00
|
|
|
user
|
|
|
|
|> get_followers()
|
|
|
|
|> Enum.filter(& &1.local)
|
|
|
|
|> Enum.each(fn follower ->
|
|
|
|
follower |> update_following_count() |> set_cache()
|
|
|
|
end)
|
2019-11-04 13:36:54 +00:00
|
|
|
|
|
|
|
# Only update local user counts, remote will be update during the next pull.
|
|
|
|
user
|
|
|
|
|> get_friends()
|
|
|
|
|> Enum.filter(& &1.local)
|
|
|
|
|> Enum.each(&update_follower_count/1)
|
2018-11-18 17:06:02 +00:00
|
|
|
|
2019-04-11 10:22:42 +00:00
|
|
|
{:ok, user}
|
|
|
|
end
|
2017-12-07 16:47:23 +00:00
|
|
|
end
|
2017-12-07 17:13:05 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def update_notification_settings(%User{} = user, settings) do
|
|
|
|
settings =
|
|
|
|
settings
|
|
|
|
|> Enum.map(fn {k, v} -> {k, v in [true, "true", "True", "1"]} end)
|
|
|
|
|> Map.new()
|
|
|
|
|
|
|
|
notification_settings =
|
|
|
|
user.notification_settings
|
|
|
|
|> Map.merge(settings)
|
|
|
|
|> Map.take(["followers", "follows", "non_follows", "non_followers"])
|
|
|
|
|
|
|
|
params = %{notification_settings: notification_settings}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:notification_settings])
|
|
|
|
|> validate_required([:notification_settings])
|
|
|
|
|> update_and_set_cache()
|
2019-03-28 11:52:09 +00:00
|
|
|
end
|
|
|
|
|
2019-10-15 15:33:29 +00:00
|
|
|
def delete(users) when is_list(users) do
|
|
|
|
for user <- users, do: delete(user)
|
|
|
|
end
|
|
|
|
|
2019-08-13 17:20:26 +00:00
|
|
|
def delete(%User{} = user) do
|
2019-08-31 18:58:42 +00:00
|
|
|
BackgroundWorker.enqueue("delete_user", %{"user_id" => user.id})
|
2019-08-13 17:20:26 +00:00
|
|
|
end
|
2019-05-06 16:45:22 +00:00
|
|
|
|
2019-09-22 13:08:07 +00:00
|
|
|
def perform(:force_password_reset, user), do: force_password_reset(user)
|
|
|
|
|
2019-05-06 16:45:22 +00:00
|
|
|
@spec perform(atom(), User.t()) :: {:ok, User.t()}
|
|
|
|
def perform(:delete, %User{} = user) do
|
2019-07-10 05:16:08 +00:00
|
|
|
{:ok, _user} = ActivityPub.delete(user)
|
|
|
|
|
2017-12-07 17:13:05 +00:00
|
|
|
# Remove all relationships
|
2019-09-24 07:16:52 +00:00
|
|
|
user
|
|
|
|
|> get_followers()
|
|
|
|
|> Enum.each(fn follower ->
|
2019-06-24 18:59:12 +00:00
|
|
|
ActivityPub.unfollow(follower, user)
|
2019-09-24 07:16:52 +00:00
|
|
|
unfollow(follower, user)
|
2019-06-24 18:59:12 +00:00
|
|
|
end)
|
2017-12-07 17:13:05 +00:00
|
|
|
|
2019-09-24 07:16:52 +00:00
|
|
|
user
|
|
|
|
|> get_friends()
|
|
|
|
|> Enum.each(fn followed ->
|
2019-06-24 18:59:12 +00:00
|
|
|
ActivityPub.unfollow(user, followed)
|
2019-09-24 07:16:52 +00:00
|
|
|
unfollow(user, followed)
|
2019-06-24 18:59:12 +00:00
|
|
|
end)
|
2017-12-07 17:13:05 +00:00
|
|
|
|
2019-04-02 09:30:11 +00:00
|
|
|
delete_user_activities(user)
|
2019-07-10 05:16:08 +00:00
|
|
|
invalidate_cache(user)
|
|
|
|
Repo.delete(user)
|
2019-04-02 09:30:11 +00:00
|
|
|
end
|
2017-12-08 16:50:11 +00:00
|
|
|
|
2019-05-13 01:58:30 +00:00
|
|
|
@spec perform(atom(), User.t()) :: {:ok, User.t()}
|
|
|
|
def perform(:fetch_initial_posts, %User{} = user) do
|
|
|
|
pages = Pleroma.Config.get!([:fetch_initial_posts, :pages])
|
|
|
|
|
2019-09-24 07:16:52 +00:00
|
|
|
# Insert all the posts in reverse order, so they're in the right order on the timeline
|
2019-10-16 18:59:21 +00:00
|
|
|
user.source_data["outbox"]
|
2019-09-24 07:16:52 +00:00
|
|
|
|> Utils.fetch_ordered_collection(pages)
|
|
|
|
|> Enum.reverse()
|
|
|
|
|> Enum.each(&Pleroma.Web.Federator.incoming_ap_doc/1)
|
2019-05-13 01:58:30 +00:00
|
|
|
end
|
|
|
|
|
2019-05-14 17:33:03 +00:00
|
|
|
def perform(:deactivate_async, user, status), do: deactivate(user, status)
|
|
|
|
|
2019-05-13 02:09:28 +00:00
|
|
|
@spec perform(atom(), User.t(), list()) :: list() | {:error, any()}
|
|
|
|
def perform(:blocks_import, %User{} = blocker, blocked_identifiers)
|
|
|
|
when is_list(blocked_identifiers) do
|
|
|
|
Enum.map(
|
|
|
|
blocked_identifiers,
|
|
|
|
fn blocked_identifier ->
|
|
|
|
with {:ok, %User{} = blocked} <- get_or_fetch(blocked_identifier),
|
|
|
|
{:ok, blocker} <- block(blocker, blocked),
|
|
|
|
{:ok, _} <- ActivityPub.block(blocker, blocked) do
|
|
|
|
blocked
|
|
|
|
else
|
|
|
|
err ->
|
|
|
|
Logger.debug("blocks_import failed for #{blocked_identifier} with: #{inspect(err)}")
|
|
|
|
err
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec perform(atom(), User.t(), list()) :: list() | {:error, any()}
|
|
|
|
def perform(:follow_import, %User{} = follower, followed_identifiers)
|
|
|
|
when is_list(followed_identifiers) do
|
|
|
|
Enum.map(
|
|
|
|
followed_identifiers,
|
|
|
|
fn followed_identifier ->
|
|
|
|
with {:ok, %User{} = followed} <- get_or_fetch(followed_identifier),
|
|
|
|
{:ok, follower} <- maybe_direct_follow(follower, followed),
|
|
|
|
{:ok, _} <- ActivityPub.follow(follower, followed) do
|
|
|
|
followed
|
|
|
|
else
|
|
|
|
err ->
|
|
|
|
Logger.debug("follow_import failed for #{followed_identifier} with: #{inspect(err)}")
|
|
|
|
err
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-07-10 13:01:32 +00:00
|
|
|
@spec external_users_query() :: Ecto.Query.t()
|
|
|
|
def external_users_query do
|
|
|
|
User.Query.build(%{
|
|
|
|
external: true,
|
|
|
|
active: true,
|
|
|
|
order_by: :id
|
|
|
|
})
|
2019-07-09 17:36:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@spec external_users(keyword()) :: [User.t()]
|
|
|
|
def external_users(opts \\ []) do
|
|
|
|
query =
|
2019-07-10 13:01:32 +00:00
|
|
|
external_users_query()
|
|
|
|
|> select([u], struct(u, [:id, :ap_id, :info]))
|
2019-07-09 17:36:35 +00:00
|
|
|
|
|
|
|
query =
|
|
|
|
if opts[:max_id],
|
|
|
|
do: where(query, [u], u.id > ^opts[:max_id]),
|
|
|
|
else: query
|
|
|
|
|
|
|
|
query =
|
|
|
|
if opts[:limit],
|
|
|
|
do: limit(query, ^opts[:limit]),
|
|
|
|
else: query
|
|
|
|
|
|
|
|
Repo.all(query)
|
|
|
|
end
|
|
|
|
|
2019-08-13 17:20:26 +00:00
|
|
|
def blocks_import(%User{} = blocker, blocked_identifiers) when is_list(blocked_identifiers) do
|
2019-08-31 18:58:42 +00:00
|
|
|
BackgroundWorker.enqueue("blocks_import", %{
|
2019-08-13 17:20:26 +00:00
|
|
|
"blocker_id" => blocker.id,
|
|
|
|
"blocked_identifiers" => blocked_identifiers
|
2019-08-31 18:58:42 +00:00
|
|
|
})
|
2019-08-13 17:20:26 +00:00
|
|
|
end
|
2019-05-14 15:07:38 +00:00
|
|
|
|
2019-08-13 17:20:26 +00:00
|
|
|
def follow_import(%User{} = follower, followed_identifiers)
|
|
|
|
when is_list(followed_identifiers) do
|
2019-08-31 18:58:42 +00:00
|
|
|
BackgroundWorker.enqueue("follow_import", %{
|
2019-08-13 17:20:26 +00:00
|
|
|
"follower_id" => follower.id,
|
|
|
|
"followed_identifiers" => followed_identifiers
|
2019-08-31 18:58:42 +00:00
|
|
|
})
|
2019-08-13 17:20:26 +00:00
|
|
|
end
|
2019-05-14 15:07:38 +00:00
|
|
|
|
2019-09-24 07:16:52 +00:00
|
|
|
def delete_user_activities(%User{ap_id: ap_id}) do
|
2019-06-24 18:59:12 +00:00
|
|
|
ap_id
|
2019-09-03 14:58:30 +00:00
|
|
|
|> Activity.Queries.by_actor()
|
2019-06-24 18:59:12 +00:00
|
|
|
|> RepoStreamer.chunk_stream(50)
|
2019-09-24 07:16:52 +00:00
|
|
|
|> Stream.each(fn activities -> Enum.each(activities, &delete_activity/1) end)
|
2019-06-24 18:59:12 +00:00
|
|
|
|> Stream.run()
|
2017-12-07 17:13:05 +00:00
|
|
|
end
|
2017-12-12 09:17:21 +00:00
|
|
|
|
2019-05-06 16:45:22 +00:00
|
|
|
defp delete_activity(%{data: %{"type" => "Create"}} = activity) do
|
2019-06-24 18:59:12 +00:00
|
|
|
activity
|
|
|
|
|> Object.normalize()
|
|
|
|
|> ActivityPub.delete()
|
|
|
|
end
|
|
|
|
|
|
|
|
defp delete_activity(%{data: %{"type" => "Like"}} = activity) do
|
|
|
|
object = Object.normalize(activity)
|
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
activity.actor
|
|
|
|
|> get_cached_by_ap_id()
|
|
|
|
|> ActivityPub.unlike(object)
|
2019-06-24 18:59:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp delete_activity(%{data: %{"type" => "Announce"}} = activity) do
|
|
|
|
object = Object.normalize(activity)
|
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
activity.actor
|
|
|
|
|> get_cached_by_ap_id()
|
|
|
|
|> ActivityPub.unannounce(object)
|
2019-05-06 16:45:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp delete_activity(_activity), do: "Doing nothing"
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def html_filter_policy(%User{no_rich_text: true}) do
|
2018-09-22 01:37:05 +00:00
|
|
|
Pleroma.HTML.Scrubber.TwitterText
|
|
|
|
end
|
|
|
|
|
2019-06-14 15:45:05 +00:00
|
|
|
def html_filter_policy(_), do: Pleroma.Config.get([:markup, :scrub_policy])
|
2018-09-22 01:37:05 +00:00
|
|
|
|
2019-10-17 23:37:21 +00:00
|
|
|
def fetch_by_ap_id(ap_id), do: ActivityPub.make_user_from_ap_id(ap_id)
|
2019-03-06 21:13:26 +00:00
|
|
|
|
2018-02-11 19:43:33 +00:00
|
|
|
def get_or_fetch_by_ap_id(ap_id) do
|
2019-04-22 07:20:43 +00:00
|
|
|
user = get_cached_by_ap_id(ap_id)
|
2018-09-19 06:13:18 +00:00
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
if !is_nil(user) and !needs_update?(user) do
|
2019-03-18 13:56:59 +00:00
|
|
|
{:ok, user}
|
2018-02-11 19:43:33 +00:00
|
|
|
else
|
2019-03-18 17:14:49 +00:00
|
|
|
# Whether to fetch initial posts for the user (if it's a new user & the fetching is enabled)
|
|
|
|
should_fetch_initial = is_nil(user) and Pleroma.Config.get([:fetch_initial_posts, :enabled])
|
|
|
|
|
2019-05-01 09:09:53 +00:00
|
|
|
resp = fetch_by_ap_id(ap_id)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-03-18 17:14:49 +00:00
|
|
|
if should_fetch_initial do
|
2019-05-13 01:58:30 +00:00
|
|
|
with {:ok, %User{} = user} <- resp do
|
|
|
|
fetch_initial_posts(user)
|
2019-03-06 21:13:26 +00:00
|
|
|
end
|
2018-02-11 19:43:33 +00:00
|
|
|
end
|
2019-03-06 21:13:26 +00:00
|
|
|
|
2019-05-01 09:09:53 +00:00
|
|
|
resp
|
2018-02-11 19:43:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-04 17:44:24 +00:00
|
|
|
@doc """
|
|
|
|
Creates an internal service actor by URI if missing.
|
|
|
|
Optionally takes nickname for addressing.
|
|
|
|
"""
|
2019-07-17 15:48:51 +00:00
|
|
|
def get_or_create_service_actor_by_ap_id(uri, nickname \\ nil) do
|
2019-11-04 17:44:24 +00:00
|
|
|
with user when is_nil(user) <- get_cached_by_ap_id(uri) do
|
|
|
|
{:ok, user} =
|
|
|
|
%User{
|
|
|
|
invisible: true,
|
|
|
|
local: true,
|
|
|
|
ap_id: uri,
|
|
|
|
nickname: nickname,
|
|
|
|
follower_address: uri <> "/followers"
|
|
|
|
}
|
|
|
|
|> Repo.insert()
|
2019-09-24 07:14:34 +00:00
|
|
|
|
2019-11-04 17:44:24 +00:00
|
|
|
user
|
2018-08-06 05:46:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-11 19:43:33 +00:00
|
|
|
# AP style
|
2019-10-16 18:59:21 +00:00
|
|
|
def public_key(%{source_data: %{"publicKey" => %{"publicKeyPem" => public_key_pem}}}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
key =
|
2018-12-11 12:31:52 +00:00
|
|
|
public_key_pem
|
|
|
|
|> :public_key.pem_decode()
|
2018-03-30 13:01:53 +00:00
|
|
|
|> hd()
|
|
|
|
|> :public_key.pem_entry_decode()
|
2018-02-11 19:43:33 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, key}
|
2018-02-11 19:43:33 +00:00
|
|
|
end
|
|
|
|
|
2019-10-20 19:29:56 +00:00
|
|
|
def public_key(_), do: {:error, "not found key"}
|
2019-07-15 13:01:22 +00:00
|
|
|
|
2017-12-12 09:17:21 +00:00
|
|
|
def get_public_key_for_ap_id(ap_id) do
|
2019-03-18 13:56:59 +00:00
|
|
|
with {:ok, %User{} = user} <- get_or_fetch_by_ap_id(ap_id),
|
2019-10-16 18:59:21 +00:00
|
|
|
{:ok, public_key} <- public_key(user) do
|
2017-12-12 09:17:21 +00:00
|
|
|
{:ok, public_key}
|
|
|
|
else
|
|
|
|
_ -> :error
|
|
|
|
end
|
|
|
|
end
|
2018-02-11 16:20:02 +00:00
|
|
|
|
2018-02-17 17:15:48 +00:00
|
|
|
defp blank?(""), do: nil
|
|
|
|
defp blank?(n), do: n
|
|
|
|
|
2018-02-11 16:20:02 +00:00
|
|
|
def insert_or_update_user(data) do
|
2019-04-22 07:20:43 +00:00
|
|
|
data
|
|
|
|
|> Map.put(:name, blank?(data[:name]) || data[:nickname])
|
|
|
|
|> remote_user_creation()
|
2019-07-20 10:03:34 +00:00
|
|
|
|> Repo.insert(on_conflict: :replace_all_except_primary_key, conflict_target: :nickname)
|
2019-04-22 07:20:43 +00:00
|
|
|
|> set_cache()
|
2018-02-11 16:20:02 +00:00
|
|
|
end
|
2018-02-17 15:08:55 +00:00
|
|
|
|
2018-10-11 10:35:11 +00:00
|
|
|
def ap_enabled?(%User{local: true}), do: true
|
2019-10-16 18:59:21 +00:00
|
|
|
def ap_enabled?(%User{ap_enabled: ap_enabled}), do: ap_enabled
|
2018-02-25 15:40:37 +00:00
|
|
|
def ap_enabled?(_), do: false
|
2018-03-24 14:09:09 +00:00
|
|
|
|
2018-12-11 12:31:52 +00:00
|
|
|
@doc "Gets or fetch a user by uri or nickname."
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec get_or_fetch(String.t()) :: {:ok, User.t()} | {:error, String.t()}
|
2018-12-11 12:31:52 +00:00
|
|
|
def get_or_fetch("http" <> _host = uri), do: get_or_fetch_by_ap_id(uri)
|
|
|
|
def get_or_fetch(nickname), do: get_or_fetch_by_nickname(nickname)
|
2018-10-05 23:40:49 +00:00
|
|
|
|
|
|
|
# wait a period of time and return newest version of the User structs
|
|
|
|
# this is because we have synchronous follow APIs and need to simulate them
|
|
|
|
# with an async handshake
|
|
|
|
def wait_and_refresh(_, %User{local: true} = a, %User{local: true} = b) do
|
2019-09-24 07:14:34 +00:00
|
|
|
with %User{} = a <- get_cached_by_id(a.id),
|
|
|
|
%User{} = b <- get_cached_by_id(b.id) do
|
2018-10-05 23:40:49 +00:00
|
|
|
{:ok, a, b}
|
|
|
|
else
|
2019-09-24 07:14:34 +00:00
|
|
|
nil -> :error
|
2018-10-05 23:40:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def wait_and_refresh(timeout, %User{} = a, %User{} = b) do
|
|
|
|
with :ok <- :timer.sleep(timeout),
|
2019-09-24 07:14:34 +00:00
|
|
|
%User{} = a <- get_cached_by_id(a.id),
|
|
|
|
%User{} = b <- get_cached_by_id(b.id) do
|
2018-10-05 23:40:49 +00:00
|
|
|
{:ok, a, b}
|
|
|
|
else
|
2019-09-24 07:14:34 +00:00
|
|
|
nil -> :error
|
2018-10-05 23:40:49 +00:00
|
|
|
end
|
|
|
|
end
|
2018-12-02 19:03:53 +00:00
|
|
|
|
2019-02-11 22:47:32 +00:00
|
|
|
def parse_bio(bio) when is_binary(bio) and bio != "" do
|
|
|
|
bio
|
|
|
|
|> CommonUtils.format_input("text/plain", mentions_format: :full)
|
|
|
|
|> elem(0)
|
|
|
|
end
|
2018-12-09 21:01:43 +00:00
|
|
|
|
2019-02-11 22:47:32 +00:00
|
|
|
def parse_bio(_), do: ""
|
2018-12-02 19:03:53 +00:00
|
|
|
|
2019-02-11 22:47:32 +00:00
|
|
|
def parse_bio(bio, user) when is_binary(bio) and bio != "" do
|
2019-02-11 21:27:02 +00:00
|
|
|
# TODO: get profile URLs other than user.ap_id
|
2019-03-02 05:57:28 +00:00
|
|
|
profile_urls = [user.ap_id]
|
2019-02-11 21:27:02 +00:00
|
|
|
|
2018-12-11 12:31:52 +00:00
|
|
|
bio
|
2019-03-02 06:04:49 +00:00
|
|
|
|> CommonUtils.format_input("text/plain",
|
2019-02-11 21:27:02 +00:00
|
|
|
mentions_format: :full,
|
|
|
|
rel: &RelMe.maybe_put_rel_me(&1, profile_urls)
|
2019-03-02 06:04:49 +00:00
|
|
|
)
|
2019-02-26 23:32:26 +00:00
|
|
|
|> elem(0)
|
2018-12-02 19:03:53 +00:00
|
|
|
end
|
2018-12-06 17:06:50 +00:00
|
|
|
|
2019-02-11 22:47:32 +00:00
|
|
|
def parse_bio(_, _), do: ""
|
|
|
|
|
2018-12-07 09:27:32 +00:00
|
|
|
def tag(user_identifiers, tags) when is_list(user_identifiers) do
|
|
|
|
Repo.transaction(fn ->
|
|
|
|
for user_identifier <- user_identifiers, do: tag(user_identifier, tags)
|
|
|
|
end)
|
|
|
|
end
|
2018-12-06 17:06:50 +00:00
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def tag(nickname, tags) when is_binary(nickname),
|
2019-04-22 07:20:43 +00:00
|
|
|
do: tag(get_by_nickname(nickname), tags)
|
2018-12-09 09:12:48 +00:00
|
|
|
|
|
|
|
def tag(%User{} = user, tags),
|
2018-12-17 19:12:01 +00:00
|
|
|
do: update_tags(user, Enum.uniq((user.tags || []) ++ normalize_tags(tags)))
|
2018-12-09 09:12:48 +00:00
|
|
|
|
2018-12-07 09:27:32 +00:00
|
|
|
def untag(user_identifiers, tags) when is_list(user_identifiers) do
|
|
|
|
Repo.transaction(fn ->
|
|
|
|
for user_identifier <- user_identifiers, do: untag(user_identifier, tags)
|
|
|
|
end)
|
|
|
|
end
|
2018-12-06 17:06:50 +00:00
|
|
|
|
2018-12-07 09:27:32 +00:00
|
|
|
def untag(nickname, tags) when is_binary(nickname),
|
2019-04-22 07:20:43 +00:00
|
|
|
do: untag(get_by_nickname(nickname), tags)
|
2018-12-06 17:06:50 +00:00
|
|
|
|
2018-12-17 19:12:01 +00:00
|
|
|
def untag(%User{} = user, tags),
|
|
|
|
do: update_tags(user, (user.tags || []) -- normalize_tags(tags))
|
2018-12-06 17:06:50 +00:00
|
|
|
|
2018-12-07 09:27:32 +00:00
|
|
|
defp update_tags(%User{} = user, new_tags) do
|
|
|
|
{:ok, updated_user} =
|
|
|
|
user
|
|
|
|
|> change(%{tags: new_tags})
|
2019-02-19 07:43:37 +00:00
|
|
|
|> update_and_set_cache()
|
2018-12-06 17:06:50 +00:00
|
|
|
|
2018-12-07 09:27:32 +00:00
|
|
|
updated_user
|
2018-12-06 17:06:50 +00:00
|
|
|
end
|
2018-12-06 17:23:16 +00:00
|
|
|
|
2018-12-07 09:27:32 +00:00
|
|
|
defp normalize_tags(tags) do
|
|
|
|
[tags]
|
|
|
|
|> List.flatten()
|
2019-09-24 07:14:34 +00:00
|
|
|
|> Enum.map(&String.downcase/1)
|
2018-12-07 09:27:32 +00:00
|
|
|
end
|
2018-12-12 17:17:15 +00:00
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
defp local_nickname_regex do
|
2018-12-12 17:17:15 +00:00
|
|
|
if Pleroma.Config.get([:instance, :extended_nickname_format]) do
|
|
|
|
@extended_local_nickname_regex
|
|
|
|
else
|
|
|
|
@strict_local_nickname_regex
|
|
|
|
end
|
|
|
|
end
|
2019-01-16 14:13:09 +00:00
|
|
|
|
2019-01-18 06:30:16 +00:00
|
|
|
def local_nickname(nickname_or_mention) do
|
|
|
|
nickname_or_mention
|
|
|
|
|> full_nickname()
|
|
|
|
|> String.split("@")
|
|
|
|
|> hd()
|
|
|
|
end
|
|
|
|
|
|
|
|
def full_nickname(nickname_or_mention),
|
|
|
|
do: String.trim_leading(nickname_or_mention, "@")
|
|
|
|
|
2019-01-16 14:13:09 +00:00
|
|
|
def error_user(ap_id) do
|
|
|
|
%User{
|
|
|
|
name: ap_id,
|
|
|
|
ap_id: ap_id,
|
|
|
|
nickname: "erroruser@example.com",
|
|
|
|
inserted_at: NaiveDateTime.utc_now()
|
|
|
|
}
|
|
|
|
end
|
2019-02-20 16:51:25 +00:00
|
|
|
|
2019-05-08 14:34:36 +00:00
|
|
|
@spec all_superusers() :: [User.t()]
|
2019-02-20 16:51:25 +00:00
|
|
|
def all_superusers do
|
2019-05-14 11:15:56 +00:00
|
|
|
User.Query.build(%{super_users: true, local: true, deactivated: false})
|
2019-02-20 16:51:25 +00:00
|
|
|
|> Repo.all()
|
|
|
|
end
|
2019-03-02 14:21:18 +00:00
|
|
|
|
2019-03-09 13:08:41 +00:00
|
|
|
def showing_reblogs?(%User{} = user, %User{} = target) do
|
2019-10-20 10:42:42 +00:00
|
|
|
target.ap_id not in user.muted_reblogs
|
2019-03-09 13:08:41 +00:00
|
|
|
end
|
2019-04-19 15:17:54 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
The function returns a query to get users with no activity for given interval of days.
|
|
|
|
Inactive users are those who didn't read any notification, or had any activity where
|
|
|
|
the user is the activity's actor, during `inactivity_threshold` days.
|
|
|
|
Deactivated users will not appear in this list.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
iex> Pleroma.User.list_inactive_users()
|
|
|
|
%Ecto.Query{}
|
|
|
|
"""
|
|
|
|
@spec list_inactive_users_query(integer()) :: Ecto.Query.t()
|
|
|
|
def list_inactive_users_query(inactivity_threshold \\ 7) do
|
|
|
|
negative_inactivity_threshold = -inactivity_threshold
|
|
|
|
now = NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second)
|
|
|
|
# Subqueries are not supported in `where` clauses, join gets too complicated.
|
|
|
|
has_read_notifications =
|
|
|
|
from(n in Pleroma.Notification,
|
|
|
|
where: n.seen == true,
|
|
|
|
group_by: n.id,
|
|
|
|
having: max(n.updated_at) > datetime_add(^now, ^negative_inactivity_threshold, "day"),
|
|
|
|
select: n.user_id
|
|
|
|
)
|
|
|
|
|> Pleroma.Repo.all()
|
|
|
|
|
|
|
|
from(u in Pleroma.User,
|
|
|
|
left_join: a in Pleroma.Activity,
|
|
|
|
on: u.ap_id == a.actor,
|
|
|
|
where: not is_nil(u.nickname),
|
2019-10-16 18:59:21 +00:00
|
|
|
where: u.deactivated != ^true,
|
2019-04-19 15:17:54 +00:00
|
|
|
where: u.id not in ^has_read_notifications,
|
|
|
|
group_by: u.id,
|
|
|
|
having:
|
|
|
|
max(a.inserted_at) < datetime_add(^now, ^negative_inactivity_threshold, "day") or
|
|
|
|
is_nil(max(a.inserted_at))
|
|
|
|
)
|
|
|
|
end
|
2019-04-20 12:42:19 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
Enable or disable email notifications for user
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
iex> Pleroma.User.switch_email_notifications(Pleroma.User{email_notifications: %{"digest" => false}}, "digest", true)
|
|
|
|
Pleroma.User{email_notifications: %{"digest" => true}}
|
2019-04-20 12:42:19 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
iex> Pleroma.User.switch_email_notifications(Pleroma.User{email_notifications: %{"digest" => true}}, "digest", false)
|
|
|
|
Pleroma.User{email_notifications: %{"digest" => false}}
|
2019-04-20 12:42:19 +00:00
|
|
|
"""
|
|
|
|
@spec switch_email_notifications(t(), String.t(), boolean()) ::
|
|
|
|
{:ok, t()} | {:error, Ecto.Changeset.t()}
|
|
|
|
def switch_email_notifications(user, type, status) do
|
2019-10-16 18:59:21 +00:00
|
|
|
User.update_email_notifications(user, %{type => status})
|
2019-04-20 12:42:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
Set `last_digest_emailed_at` value for the user to current time
|
|
|
|
"""
|
|
|
|
@spec touch_last_digest_emailed_at(t()) :: t()
|
|
|
|
def touch_last_digest_emailed_at(user) do
|
|
|
|
now = NaiveDateTime.truncate(NaiveDateTime.utc_now(), :second)
|
|
|
|
|
|
|
|
{:ok, updated_user} =
|
|
|
|
user
|
|
|
|
|> change(%{last_digest_emailed_at: now})
|
|
|
|
|> update_and_set_cache()
|
|
|
|
|
|
|
|
updated_user
|
|
|
|
end
|
2019-05-29 15:18:22 +00:00
|
|
|
|
2019-05-16 13:23:41 +00:00
|
|
|
@spec toggle_confirmation(User.t()) :: {:ok, User.t()} | {:error, Changeset.t()}
|
|
|
|
def toggle_confirmation(%User{} = user) do
|
|
|
|
user
|
2019-10-16 18:59:21 +00:00
|
|
|
|> confirmation_changeset(need_confirmation: !user.confirmation_pending)
|
|
|
|
|> update_and_set_cache()
|
2019-05-16 13:23:41 +00:00
|
|
|
end
|
2019-05-20 15:12:55 +00:00
|
|
|
|
2019-11-19 11:14:02 +00:00
|
|
|
@spec toggle_confirmation([User.t()]) :: [{:ok, User.t()} | {:error, Changeset.t()}]
|
|
|
|
def toggle_confirmation(users) do
|
|
|
|
Enum.map(users, &toggle_confirmation/1)
|
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def get_mascot(%{mascot: %{} = mascot}) when not is_nil(mascot) do
|
2019-05-20 15:12:55 +00:00
|
|
|
mascot
|
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
def get_mascot(%{mascot: mascot}) when is_nil(mascot) do
|
2019-05-20 15:12:55 +00:00
|
|
|
# use instance-default
|
|
|
|
config = Pleroma.Config.get([:assets, :mascots])
|
|
|
|
default_mascot = Pleroma.Config.get([:assets, :default_mascot])
|
|
|
|
mascot = Keyword.get(config, default_mascot)
|
|
|
|
|
|
|
|
%{
|
|
|
|
"id" => "default-mascot",
|
|
|
|
"url" => mascot[:url],
|
|
|
|
"preview_url" => mascot[:url],
|
|
|
|
"pleroma" => %{
|
|
|
|
"mime_type" => mascot[:mime_type]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2019-05-22 03:58:15 +00:00
|
|
|
|
2019-10-06 13:22:35 +00:00
|
|
|
def ensure_keys_present(%{keys: keys} = user) when not is_nil(keys), do: {:ok, user}
|
2019-05-22 03:58:15 +00:00
|
|
|
|
2019-09-24 12:50:07 +00:00
|
|
|
def ensure_keys_present(%User{} = user) do
|
|
|
|
with {:ok, pem} <- Keys.generate_rsa_pem() do
|
2019-10-06 13:22:35 +00:00
|
|
|
user
|
|
|
|
|> cast(%{keys: pem}, [:keys])
|
|
|
|
|> validate_required([:keys])
|
|
|
|
|> update_and_set_cache()
|
2019-05-22 03:58:15 +00:00
|
|
|
end
|
|
|
|
end
|
2019-06-03 16:16:11 +00:00
|
|
|
|
|
|
|
def get_ap_ids_by_nicknames(nicknames) do
|
|
|
|
from(u in User,
|
|
|
|
where: u.nickname in ^nicknames,
|
|
|
|
select: u.ap_id
|
|
|
|
)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
2019-06-05 09:34:14 +00:00
|
|
|
|
|
|
|
defdelegate search(query, opts \\ []), to: User.Search
|
2019-06-24 19:01:56 +00:00
|
|
|
|
|
|
|
defp put_password_hash(
|
|
|
|
%Ecto.Changeset{valid?: true, changes: %{password: password}} = changeset
|
|
|
|
) do
|
|
|
|
change(changeset, password_hash: Pbkdf2.hashpwsalt(password))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp put_password_hash(changeset), do: changeset
|
2019-07-17 17:12:42 +00:00
|
|
|
|
|
|
|
def is_internal_user?(%User{nickname: nil}), do: true
|
|
|
|
def is_internal_user?(%User{local: true, nickname: "internal." <> _}), do: true
|
|
|
|
def is_internal_user?(_), do: false
|
2019-09-13 06:09:35 +00:00
|
|
|
|
2019-09-13 08:36:49 +00:00
|
|
|
# A hack because user delete activities have a fake id for whatever reason
|
|
|
|
# TODO: Get rid of this
|
|
|
|
def get_delivered_users_by_object_id("pleroma:fake_object_id"), do: []
|
|
|
|
|
2019-09-12 18:37:36 +00:00
|
|
|
def get_delivered_users_by_object_id(object_id) do
|
|
|
|
from(u in User,
|
|
|
|
inner_join: delivery in assoc(u, :deliveries),
|
|
|
|
where: delivery.object_id == ^object_id
|
|
|
|
)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
2019-09-13 16:42:53 +00:00
|
|
|
|
2019-09-13 06:09:35 +00:00
|
|
|
def change_email(user, email) do
|
|
|
|
user
|
|
|
|
|> cast(%{email: email}, [:email])
|
|
|
|
|> validate_required([:email])
|
|
|
|
|> unique_constraint(:email)
|
|
|
|
|> validate_format(:email, @email_regex)
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
2019-09-24 12:50:07 +00:00
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
# Internal function; public one is `deactivate/2`
|
|
|
|
defp set_activation_status(user, deactivated) do
|
|
|
|
user
|
|
|
|
|> cast(%{deactivated: deactivated}, [:deactivated])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_banner(user, banner) do
|
|
|
|
user
|
|
|
|
|> cast(%{banner: banner}, [:banner])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_background(user, background) do
|
|
|
|
user
|
|
|
|
|> cast(%{background: background}, [:background])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_source_data(user, source_data) do
|
|
|
|
user
|
|
|
|
|> cast(%{source_data: source_data}, [:source_data])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def roles(%{is_moderator: is_moderator, is_admin: is_admin}) do
|
|
|
|
%{
|
|
|
|
admin: is_admin,
|
|
|
|
moderator: is_moderator
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
# ``fields`` is an array of mastodon profile field, containing ``{"name": "…", "value": "…"}``.
|
|
|
|
# For example: [{"name": "Pronoun", "value": "she/her"}, …]
|
|
|
|
def fields(%{fields: nil, source_data: %{"attachment" => attachment}}) do
|
|
|
|
limit = Pleroma.Config.get([:instance, :max_remote_account_fields], 0)
|
|
|
|
|
|
|
|
attachment
|
|
|
|
|> Enum.filter(fn %{"type" => t} -> t == "PropertyValue" end)
|
|
|
|
|> Enum.map(fn fields -> Map.take(fields, ["name", "value"]) end)
|
|
|
|
|> Enum.take(limit)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields(%{fields: nil}), do: []
|
|
|
|
|
|
|
|
def fields(%{fields: fields}), do: fields
|
|
|
|
|
|
|
|
def validate_fields(changeset, remote? \\ false) do
|
|
|
|
limit_name = if remote?, do: :max_remote_account_fields, else: :max_account_fields
|
|
|
|
limit = Pleroma.Config.get([:instance, limit_name], 0)
|
|
|
|
|
|
|
|
changeset
|
|
|
|
|> validate_length(:fields, max: limit)
|
|
|
|
|> validate_change(:fields, fn :fields, fields ->
|
|
|
|
if Enum.all?(fields, &valid_field?/1) do
|
|
|
|
[]
|
|
|
|
else
|
|
|
|
[fields: "invalid"]
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp valid_field?(%{"name" => name, "value" => value}) do
|
|
|
|
name_limit = Pleroma.Config.get([:instance, :account_field_name_length], 255)
|
|
|
|
value_limit = Pleroma.Config.get([:instance, :account_field_value_length], 255)
|
|
|
|
|
|
|
|
is_binary(name) && is_binary(value) && String.length(name) <= name_limit &&
|
|
|
|
String.length(value) <= value_limit
|
|
|
|
end
|
|
|
|
|
|
|
|
defp valid_field?(_), do: false
|
|
|
|
|
|
|
|
defp truncate_field(%{"name" => name, "value" => value}) do
|
|
|
|
{name, _chopped} =
|
|
|
|
String.split_at(name, Pleroma.Config.get([:instance, :account_field_name_length], 255))
|
|
|
|
|
|
|
|
{value, _chopped} =
|
|
|
|
String.split_at(value, Pleroma.Config.get([:instance, :account_field_value_length], 255))
|
|
|
|
|
|
|
|
%{"name" => name, "value" => value}
|
|
|
|
end
|
|
|
|
|
|
|
|
def admin_api_update(user, params) do
|
|
|
|
user
|
|
|
|
|> cast(params, [
|
|
|
|
:is_moderator,
|
|
|
|
:is_admin,
|
|
|
|
:show_role
|
|
|
|
])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def mascot_update(user, url) do
|
|
|
|
user
|
|
|
|
|> cast(%{mascot: url}, [:mascot])
|
|
|
|
|> validate_required([:mascot])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def mastodon_settings_update(user, settings) do
|
|
|
|
user
|
|
|
|
|> cast(%{settings: settings}, [:settings])
|
|
|
|
|> validate_required([:settings])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec confirmation_changeset(User.t(), keyword()) :: Changeset.t()
|
|
|
|
def confirmation_changeset(user, need_confirmation: need_confirmation?) do
|
|
|
|
params =
|
|
|
|
if need_confirmation? do
|
|
|
|
%{
|
|
|
|
confirmation_pending: true,
|
|
|
|
confirmation_token: :crypto.strong_rand_bytes(32) |> Base.url_encode64()
|
|
|
|
}
|
|
|
|
else
|
|
|
|
%{
|
|
|
|
confirmation_pending: false,
|
|
|
|
confirmation_token: nil
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
cast(user, params, [:confirmation_pending, :confirmation_token])
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_pinnned_activity(user, %Pleroma.Activity{id: id}) do
|
|
|
|
if id not in user.pinned_activities do
|
|
|
|
max_pinned_statuses = Pleroma.Config.get([:instance, :max_pinned_statuses], 0)
|
|
|
|
params = %{pinned_activities: user.pinned_activities ++ [id]}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:pinned_activities])
|
|
|
|
|> validate_length(:pinned_activities,
|
|
|
|
max: max_pinned_statuses,
|
|
|
|
message: "You have already pinned the maximum number of statuses"
|
|
|
|
)
|
|
|
|
else
|
|
|
|
change(user)
|
|
|
|
end
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_pinnned_activity(user, %Pleroma.Activity{id: id}) do
|
|
|
|
params = %{pinned_activities: List.delete(user.pinned_activities, id)}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:pinned_activities])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_email_notifications(user, settings) do
|
|
|
|
email_notifications =
|
|
|
|
user.email_notifications
|
|
|
|
|> Map.merge(settings)
|
|
|
|
|> Map.take(["digest"])
|
|
|
|
|
|
|
|
params = %{email_notifications: email_notifications}
|
|
|
|
fields = [:email_notifications]
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, fields)
|
|
|
|
|> validate_required(fields)
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
defp set_subscribers(user, subscribers) do
|
|
|
|
params = %{subscribers: subscribers}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:subscribers])
|
|
|
|
|> validate_required([:subscribers])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_subscribers(user, subscribed) do
|
|
|
|
set_subscribers(user, Enum.uniq([subscribed | user.subscribers]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_subscribers(user, subscribed) do
|
|
|
|
set_subscribers(user, List.delete(user.subscribers, subscribed))
|
|
|
|
end
|
2019-10-20 10:42:42 +00:00
|
|
|
|
|
|
|
defp set_domain_blocks(user, domain_blocks) do
|
|
|
|
params = %{domain_blocks: domain_blocks}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:domain_blocks])
|
|
|
|
|> validate_required([:domain_blocks])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def block_domain(user, domain_blocked) do
|
|
|
|
set_domain_blocks(user, Enum.uniq([domain_blocked | user.domain_blocks]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def unblock_domain(user, domain_blocked) do
|
|
|
|
set_domain_blocks(user, List.delete(user.domain_blocks, domain_blocked))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp set_blocks(user, blocks) do
|
|
|
|
params = %{blocks: blocks}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:blocks])
|
|
|
|
|> validate_required([:blocks])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_block(user, blocked) do
|
|
|
|
set_blocks(user, Enum.uniq([blocked | user.blocks]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_block(user, blocked) do
|
|
|
|
set_blocks(user, List.delete(user.blocks, blocked))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp set_mutes(user, mutes) do
|
|
|
|
params = %{mutes: mutes}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:mutes])
|
|
|
|
|> validate_required([:mutes])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_mutes(user, muted, notifications?) do
|
|
|
|
with {:ok, user} <- set_mutes(user, Enum.uniq([muted | user.mutes])) do
|
|
|
|
set_notification_mutes(
|
|
|
|
user,
|
|
|
|
Enum.uniq([muted | user.muted_notifications]),
|
|
|
|
notifications?
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_mutes(user, muted) do
|
|
|
|
with {:ok, user} <- set_mutes(user, List.delete(user.mutes, muted)) do
|
|
|
|
set_notification_mutes(
|
|
|
|
user,
|
|
|
|
List.delete(user.muted_notifications, muted),
|
|
|
|
true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-20 10:58:27 +00:00
|
|
|
defp set_notification_mutes(user, _muted_notifications, false = _notifications?) do
|
2019-10-20 10:42:42 +00:00
|
|
|
{:ok, user}
|
|
|
|
end
|
|
|
|
|
2019-10-20 10:58:27 +00:00
|
|
|
defp set_notification_mutes(user, muted_notifications, true = _notifications?) do
|
2019-10-20 10:42:42 +00:00
|
|
|
params = %{muted_notifications: muted_notifications}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:muted_notifications])
|
|
|
|
|> validate_required([:muted_notifications])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_reblog_mute(user, ap_id) do
|
|
|
|
params = %{muted_reblogs: user.muted_reblogs ++ [ap_id]}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:muted_reblogs])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_reblog_mute(user, ap_id) do
|
|
|
|
params = %{muted_reblogs: List.delete(user.muted_reblogs, ap_id)}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:muted_reblogs])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
2019-10-21 08:58:22 +00:00
|
|
|
|
|
|
|
def set_invisible(user, invisible) do
|
|
|
|
params = %{invisible: invisible}
|
|
|
|
|
|
|
|
user
|
|
|
|
|> cast(params, [:invisible])
|
|
|
|
|> validate_required([:invisible])
|
|
|
|
|> update_and_set_cache()
|
|
|
|
end
|
2017-03-20 20:28:31 +00:00
|
|
|
end
|