2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-11-18 18:04:42 +01:00
|
|
|
defmodule Pleroma.User.Info do
|
|
|
|
use Ecto.Schema
|
|
|
|
import Ecto.Changeset
|
|
|
|
|
2019-03-12 20:15:28 +01:00
|
|
|
alias Pleroma.User.Info
|
|
|
|
|
2019-05-13 20:35:45 +02:00
|
|
|
@type t :: %__MODULE__{}
|
|
|
|
|
2018-11-18 18:04:42 +01:00
|
|
|
embedded_schema do
|
2018-11-18 18:27:04 +01:00
|
|
|
field(:banner, :map, default: %{})
|
2018-12-02 11:20:38 +01:00
|
|
|
field(:background, :map, default: %{})
|
2018-11-18 18:27:04 +01:00
|
|
|
field(:source_data, :map, default: %{})
|
|
|
|
field(:note_count, :integer, default: 0)
|
|
|
|
field(:follower_count, :integer, default: 0)
|
2019-07-13 22:56:10 +02:00
|
|
|
# Should be filled in only for remote users
|
2019-07-13 18:17:57 +02:00
|
|
|
field(:following_count, :integer, default: nil)
|
2018-11-18 18:27:04 +01:00
|
|
|
field(:locked, :boolean, default: false)
|
2018-12-14 14:38:56 +01:00
|
|
|
field(:confirmation_pending, :boolean, default: false)
|
|
|
|
field(:confirmation_token, :string, default: nil)
|
2018-11-18 18:27:04 +01:00
|
|
|
field(:default_scope, :string, default: "public")
|
|
|
|
field(:blocks, {:array, :string}, default: [])
|
|
|
|
field(:domain_blocks, {:array, :string}, default: [])
|
2019-02-19 21:09:16 +01:00
|
|
|
field(:mutes, {:array, :string}, default: [])
|
2019-03-09 14:08:41 +01:00
|
|
|
field(:muted_reblogs, {:array, :string}, default: [])
|
2019-07-14 15:29:31 +02:00
|
|
|
field(:muted_notifications, {:array, :string}, default: [])
|
2019-04-05 17:51:45 +02:00
|
|
|
field(:subscribers, {:array, :string}, default: [])
|
2018-11-18 18:27:04 +01:00
|
|
|
field(:deactivated, :boolean, default: false)
|
|
|
|
field(:no_rich_text, :boolean, default: false)
|
|
|
|
field(:ap_enabled, :boolean, default: false)
|
|
|
|
field(:is_moderator, :boolean, default: false)
|
2018-12-01 09:03:16 +01:00
|
|
|
field(:is_admin, :boolean, default: false)
|
2019-02-04 13:28:35 +01:00
|
|
|
field(:show_role, :boolean, default: true)
|
2018-11-18 19:33:43 +01:00
|
|
|
field(:keys, :string, default: nil)
|
2018-11-20 20:12:39 +01:00
|
|
|
field(:settings, :map, default: nil)
|
2018-11-27 18:12:03 +01:00
|
|
|
field(:magic_key, :string, default: nil)
|
2018-11-27 18:37:46 +01:00
|
|
|
field(:uri, :string, default: nil)
|
2018-11-30 17:08:02 +01:00
|
|
|
field(:topic, :string, default: nil)
|
|
|
|
field(:hub, :string, default: nil)
|
2018-12-01 12:46:08 +01:00
|
|
|
field(:salmon, :string, default: nil)
|
2019-02-03 19:24:09 +01:00
|
|
|
field(:hide_followers, :boolean, default: false)
|
2019-02-06 23:34:44 +01:00
|
|
|
field(:hide_follows, :boolean, default: false)
|
2019-04-23 04:47:43 +02:00
|
|
|
field(:hide_favorites, :boolean, default: true)
|
2019-01-16 16:15:46 +01:00
|
|
|
field(:pinned_activities, {:array, :string}, default: [])
|
2019-05-20 17:12:55 +02:00
|
|
|
field(:mascot, :map, default: nil)
|
2019-02-12 14:59:34 +01:00
|
|
|
field(:emoji, {:array, :map}, default: [])
|
2019-05-31 14:27:15 +02:00
|
|
|
field(:pleroma_settings_store, :map, default: %{})
|
2018-12-01 12:00:53 +01:00
|
|
|
|
2019-03-27 20:09:39 +01:00
|
|
|
field(:notification_settings, :map,
|
2019-05-25 07:19:47 +02:00
|
|
|
default: %{
|
|
|
|
"followers" => true,
|
|
|
|
"follows" => true,
|
|
|
|
"non_follows" => true,
|
|
|
|
"non_followers" => true
|
|
|
|
}
|
2019-03-27 20:09:39 +01:00
|
|
|
)
|
|
|
|
|
2019-06-03 15:04:39 +02:00
|
|
|
field(:skip_thread_containment, :boolean, default: false)
|
|
|
|
|
2018-12-01 12:00:53 +01:00
|
|
|
# Found in the wild
|
|
|
|
# ap_id -> Where is this used?
|
|
|
|
# bio -> Where is this used?
|
|
|
|
# avatar -> Where is this used?
|
|
|
|
# fqn -> Where is this used?
|
|
|
|
# host -> Where is this used?
|
|
|
|
# subject _> Where is this used?
|
2018-11-18 18:04:42 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_activation_status(info, deactivated) do
|
|
|
|
params = %{deactivated: deactivated}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:deactivated])
|
|
|
|
|> validate_required([:deactivated])
|
|
|
|
end
|
2018-11-18 18:17:56 +01:00
|
|
|
|
2019-03-28 12:52:09 +01:00
|
|
|
def update_notification_settings(info, settings) do
|
2019-05-25 07:54:02 +02:00
|
|
|
settings =
|
|
|
|
settings
|
|
|
|
|> Enum.map(fn {k, v} -> {k, v in [true, "true", "True", "1"]} end)
|
|
|
|
|> Map.new()
|
|
|
|
|
2019-03-28 12:52:09 +01:00
|
|
|
notification_settings =
|
|
|
|
info.notification_settings
|
|
|
|
|> Map.merge(settings)
|
2019-05-26 02:05:47 +02:00
|
|
|
|> Map.take(["followers", "follows", "non_follows", "non_followers"])
|
2019-03-28 12:52:09 +01:00
|
|
|
|
|
|
|
params = %{notification_settings: notification_settings}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:notification_settings])
|
|
|
|
|> validate_required([:notification_settings])
|
|
|
|
end
|
|
|
|
|
2018-11-18 18:17:56 +01:00
|
|
|
def add_to_note_count(info, number) do
|
2018-11-18 18:52:21 +01:00
|
|
|
set_note_count(info, info.note_count + number)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_note_count(info, number) do
|
2018-11-18 18:27:04 +01:00
|
|
|
params = %{note_count: Enum.max([0, number])}
|
2018-11-18 18:17:56 +01:00
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:note_count])
|
|
|
|
|> validate_required([:note_count])
|
|
|
|
end
|
2018-11-18 18:24:16 +01:00
|
|
|
|
|
|
|
def set_follower_count(info, number) do
|
|
|
|
params = %{follower_count: Enum.max([0, number])}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:follower_count])
|
|
|
|
|> validate_required([:follower_count])
|
|
|
|
end
|
2018-11-18 18:40:31 +01:00
|
|
|
|
2019-02-19 21:09:16 +01:00
|
|
|
def set_mutes(info, mutes) do
|
|
|
|
params = %{mutes: mutes}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:mutes])
|
|
|
|
|> validate_required([:mutes])
|
|
|
|
end
|
|
|
|
|
2019-07-14 15:29:31 +02:00
|
|
|
@spec set_notification_mutes(Changeset.t(), [String.t()], boolean()) :: Changeset.t()
|
|
|
|
def set_notification_mutes(changeset, muted_notifications, notifications?) do
|
|
|
|
if notifications? do
|
|
|
|
put_change(changeset, :muted_notifications, muted_notifications)
|
|
|
|
|> validate_required([:muted_notifications])
|
|
|
|
else
|
|
|
|
changeset
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-18 18:40:31 +01:00
|
|
|
def set_blocks(info, blocks) do
|
|
|
|
params = %{blocks: blocks}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:blocks])
|
|
|
|
|> validate_required([:blocks])
|
|
|
|
end
|
|
|
|
|
2019-04-05 17:51:45 +02:00
|
|
|
def set_subscribers(info, subscribers) do
|
|
|
|
params = %{subscribers: subscribers}
|
2019-04-05 14:49:33 +02:00
|
|
|
|
|
|
|
info
|
2019-04-05 17:51:45 +02:00
|
|
|
|> cast(params, [:subscribers])
|
|
|
|
|> validate_required([:subscribers])
|
2019-04-05 14:49:33 +02:00
|
|
|
end
|
|
|
|
|
2019-07-14 15:29:31 +02:00
|
|
|
@spec add_to_mutes(Info.t(), String.t()) :: Changeset.t()
|
2019-02-19 21:09:16 +01:00
|
|
|
def add_to_mutes(info, muted) do
|
|
|
|
set_mutes(info, Enum.uniq([muted | info.mutes]))
|
|
|
|
end
|
|
|
|
|
2019-07-14 15:29:31 +02:00
|
|
|
@spec add_to_muted_notifications(Changeset.t(), Info.t(), String.t(), boolean()) ::
|
|
|
|
Changeset.t()
|
|
|
|
def add_to_muted_notifications(changeset, info, muted, notifications?) do
|
|
|
|
set_notification_mutes(
|
|
|
|
changeset,
|
|
|
|
Enum.uniq([muted | info.muted_notifications]),
|
|
|
|
notifications?
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec remove_from_mutes(Info.t(), String.t()) :: Changeset.t()
|
2019-02-19 21:09:16 +01:00
|
|
|
def remove_from_mutes(info, muted) do
|
|
|
|
set_mutes(info, List.delete(info.mutes, muted))
|
|
|
|
end
|
|
|
|
|
2019-07-14 15:29:31 +02:00
|
|
|
@spec remove_from_muted_notifications(Changeset.t(), Info.t(), String.t()) :: Changeset.t()
|
|
|
|
def remove_from_muted_notifications(changeset, info, muted) do
|
|
|
|
set_notification_mutes(changeset, List.delete(info.muted_notifications, muted), true)
|
|
|
|
end
|
|
|
|
|
2018-11-18 18:40:31 +01:00
|
|
|
def add_to_block(info, blocked) do
|
|
|
|
set_blocks(info, Enum.uniq([blocked | info.blocks]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_block(info, blocked) do
|
|
|
|
set_blocks(info, List.delete(info.blocks, blocked))
|
|
|
|
end
|
2018-11-18 19:33:43 +01:00
|
|
|
|
2019-04-05 17:51:45 +02:00
|
|
|
def add_to_subscribers(info, subscribed) do
|
|
|
|
set_subscribers(info, Enum.uniq([subscribed | info.subscribers]))
|
2019-04-05 14:49:33 +02:00
|
|
|
end
|
|
|
|
|
2019-04-05 17:51:45 +02:00
|
|
|
def remove_from_subscribers(info, subscribed) do
|
|
|
|
set_subscribers(info, List.delete(info.subscribers, subscribed))
|
2019-04-05 14:49:33 +02:00
|
|
|
end
|
|
|
|
|
2018-11-18 21:40:52 +01:00
|
|
|
def set_domain_blocks(info, domain_blocks) do
|
|
|
|
params = %{domain_blocks: domain_blocks}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:domain_blocks])
|
|
|
|
|> validate_required([:domain_blocks])
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_domain_block(info, domain_blocked) do
|
|
|
|
set_domain_blocks(info, Enum.uniq([domain_blocked | info.domain_blocks]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_domain_block(info, domain_blocked) do
|
|
|
|
set_domain_blocks(info, List.delete(info.domain_blocks, domain_blocked))
|
|
|
|
end
|
|
|
|
|
2018-11-18 19:33:43 +01:00
|
|
|
def set_keys(info, keys) do
|
|
|
|
params = %{keys: keys}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:keys])
|
|
|
|
|> validate_required([:keys])
|
|
|
|
end
|
2018-11-18 21:40:52 +01:00
|
|
|
|
|
|
|
def remote_user_creation(info, params) do
|
|
|
|
info
|
2018-11-20 19:07:01 +01:00
|
|
|
|> cast(params, [
|
|
|
|
:ap_enabled,
|
|
|
|
:source_data,
|
|
|
|
:banner,
|
2018-11-27 18:12:03 +01:00
|
|
|
:locked,
|
2018-11-27 18:37:46 +01:00
|
|
|
:magic_key,
|
2018-11-30 17:08:02 +01:00
|
|
|
:uri,
|
|
|
|
:hub,
|
2018-12-01 12:46:08 +01:00
|
|
|
:topic,
|
2019-07-13 18:17:57 +02:00
|
|
|
:salmon,
|
|
|
|
:hide_followers,
|
|
|
|
:hide_follows,
|
|
|
|
:follower_count,
|
|
|
|
:following_count
|
2018-11-20 19:07:01 +01:00
|
|
|
])
|
2018-11-18 21:40:52 +01:00
|
|
|
end
|
2018-11-18 22:15:03 +01:00
|
|
|
|
2018-11-27 17:42:45 +01:00
|
|
|
def user_upgrade(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:ap_enabled,
|
|
|
|
:source_data,
|
|
|
|
:banner,
|
2018-11-27 18:12:03 +01:00
|
|
|
:locked,
|
2019-07-13 18:17:57 +02:00
|
|
|
:magic_key,
|
|
|
|
:follower_count,
|
|
|
|
:following_count,
|
|
|
|
:hide_follows,
|
|
|
|
:hide_followers
|
2018-11-27 17:42:45 +01:00
|
|
|
])
|
|
|
|
end
|
|
|
|
|
2018-11-30 17:07:37 +01:00
|
|
|
def profile_update(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:locked,
|
|
|
|
:no_rich_text,
|
2018-12-01 12:00:53 +01:00
|
|
|
:default_scope,
|
2018-12-05 19:22:40 +01:00
|
|
|
:banner,
|
2019-02-06 23:34:44 +01:00
|
|
|
:hide_follows,
|
2019-02-03 19:24:09 +01:00
|
|
|
:hide_followers,
|
2019-04-23 04:47:43 +02:00
|
|
|
:hide_favorites,
|
2019-02-04 13:28:35 +01:00
|
|
|
:background,
|
2019-06-03 15:04:39 +02:00
|
|
|
:show_role,
|
2019-06-04 08:49:08 +02:00
|
|
|
:skip_thread_containment,
|
2019-05-31 14:50:18 +02:00
|
|
|
:pleroma_settings_store
|
2018-11-30 17:07:37 +01:00
|
|
|
])
|
|
|
|
end
|
|
|
|
|
2019-05-16 15:23:41 +02:00
|
|
|
@spec confirmation_changeset(Info.t(), keyword()) :: Changeset.t()
|
2019-05-13 20:35:45 +02:00
|
|
|
def confirmation_changeset(info, opts) do
|
|
|
|
need_confirmation? = Keyword.get(opts, :need_confirmation)
|
|
|
|
|
|
|
|
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
|
2018-12-17 15:28:58 +01:00
|
|
|
|
2018-12-14 14:38:56 +01:00
|
|
|
cast(info, params, [:confirmation_pending, :confirmation_token])
|
|
|
|
end
|
|
|
|
|
2018-12-16 12:15:34 +01:00
|
|
|
def mastodon_settings_update(info, settings) do
|
|
|
|
params = %{settings: settings}
|
|
|
|
|
2018-12-06 15:42:07 +01:00
|
|
|
info
|
|
|
|
|> cast(params, [:settings])
|
2018-12-16 12:15:34 +01:00
|
|
|
|> validate_required([:settings])
|
2018-12-06 15:42:07 +01:00
|
|
|
end
|
|
|
|
|
2019-05-20 13:39:23 +02:00
|
|
|
def mascot_update(info, url) do
|
|
|
|
params = %{mascot: url}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:mascot])
|
|
|
|
|> validate_required([:mascot])
|
|
|
|
end
|
|
|
|
|
2018-11-20 20:12:39 +01:00
|
|
|
def set_source_data(info, source_data) do
|
|
|
|
params = %{source_data: source_data}
|
|
|
|
|
2018-11-18 22:15:03 +01:00
|
|
|
info
|
2018-11-20 20:12:39 +01:00
|
|
|
|> cast(params, [:source_data])
|
|
|
|
|> validate_required([:source_data])
|
2018-11-18 22:15:03 +01:00
|
|
|
end
|
2018-12-01 09:03:16 +01:00
|
|
|
|
|
|
|
def admin_api_update(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:is_moderator,
|
2019-02-04 13:28:35 +01:00
|
|
|
:is_admin,
|
|
|
|
:show_role
|
2018-12-01 09:03:16 +01:00
|
|
|
])
|
|
|
|
end
|
2019-01-07 14:45:33 +01:00
|
|
|
|
|
|
|
def add_pinnned_activity(info, %Pleroma.Activity{id: id}) do
|
|
|
|
if id not in info.pinned_activities do
|
2019-01-08 09:25:50 +01:00
|
|
|
max_pinned_statuses = Pleroma.Config.get([:instance, :max_pinned_statuses], 0)
|
2019-01-07 14:45:33 +01:00
|
|
|
params = %{pinned_activities: info.pinned_activities ++ [id]}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:pinned_activities])
|
|
|
|
|> validate_length(:pinned_activities,
|
2019-01-08 09:25:50 +01:00
|
|
|
max: max_pinned_statuses,
|
|
|
|
message: "You have already pinned the maximum number of statuses"
|
2019-01-07 14:45:33 +01:00
|
|
|
)
|
|
|
|
else
|
|
|
|
change(info)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_pinnned_activity(info, %Pleroma.Activity{id: id}) do
|
|
|
|
params = %{pinned_activities: List.delete(info.pinned_activities, id)}
|
|
|
|
|
|
|
|
cast(info, params, [:pinned_activities])
|
|
|
|
end
|
2019-03-12 20:15:28 +01:00
|
|
|
|
|
|
|
def roles(%Info{is_moderator: is_moderator, is_admin: is_admin}) do
|
|
|
|
%{
|
|
|
|
admin: is_admin,
|
|
|
|
moderator: is_moderator
|
|
|
|
}
|
|
|
|
end
|
2019-03-15 14:28:14 +01:00
|
|
|
|
2019-03-15 14:06:58 +01:00
|
|
|
def add_reblog_mute(info, ap_id) do
|
|
|
|
params = %{muted_reblogs: info.muted_reblogs ++ [ap_id]}
|
2019-03-09 14:08:41 +01:00
|
|
|
|
|
|
|
cast(info, params, [:muted_reblogs])
|
|
|
|
end
|
|
|
|
|
2019-03-15 14:06:58 +01:00
|
|
|
def remove_reblog_mute(info, ap_id) do
|
|
|
|
params = %{muted_reblogs: List.delete(info.muted_reblogs, ap_id)}
|
2019-03-09 14:08:41 +01:00
|
|
|
|
|
|
|
cast(info, params, [:muted_reblogs])
|
|
|
|
end
|
2019-07-14 00:58:39 +02:00
|
|
|
|
|
|
|
def follow_information_update(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:hide_followers,
|
|
|
|
:hide_follows,
|
|
|
|
:follower_count,
|
|
|
|
:following_count
|
|
|
|
])
|
|
|
|
end
|
2018-11-18 18:04:42 +01:00
|
|
|
end
|