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
|
|
|
|
|
2018-11-18 17:04:42 +00:00
|
|
|
defmodule Pleroma.User.Info do
|
|
|
|
use Ecto.Schema
|
|
|
|
import Ecto.Changeset
|
|
|
|
|
2019-03-12 19:15:28 +00:00
|
|
|
alias Pleroma.User.Info
|
|
|
|
|
2019-04-13 10:40:42 +00:00
|
|
|
@type t :: %__MODULE__{}
|
|
|
|
|
2018-11-18 17:04:42 +00:00
|
|
|
embedded_schema do
|
2018-11-18 17:27:04 +00:00
|
|
|
field(:banner, :map, default: %{})
|
2018-12-02 10:20:38 +00:00
|
|
|
field(:background, :map, default: %{})
|
2018-11-18 17:27:04 +00:00
|
|
|
field(:source_data, :map, default: %{})
|
|
|
|
field(:note_count, :integer, default: 0)
|
|
|
|
field(:follower_count, :integer, default: 0)
|
|
|
|
field(:locked, :boolean, default: false)
|
2018-12-14 13:38:56 +00:00
|
|
|
field(:confirmation_pending, :boolean, default: false)
|
|
|
|
field(:confirmation_token, :string, default: nil)
|
2018-11-18 17:27:04 +00:00
|
|
|
field(:default_scope, :string, default: "public")
|
|
|
|
field(:blocks, {:array, :string}, default: [])
|
|
|
|
field(:domain_blocks, {:array, :string}, default: [])
|
2019-02-19 20:09:16 +00:00
|
|
|
field(:mutes, {:array, :string}, default: [])
|
2019-03-09 13:08:41 +00:00
|
|
|
field(:muted_reblogs, {:array, :string}, default: [])
|
2019-04-05 15:51:45 +00:00
|
|
|
field(:subscribers, {:array, :string}, default: [])
|
2018-11-18 17:27:04 +00: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 08:03:16 +00:00
|
|
|
field(:is_admin, :boolean, default: false)
|
2019-02-04 12:28:35 +00:00
|
|
|
field(:show_role, :boolean, default: true)
|
2018-11-18 18:33:43 +00:00
|
|
|
field(:keys, :string, default: nil)
|
2018-11-20 19:12:39 +00:00
|
|
|
field(:settings, :map, default: nil)
|
2018-11-27 17:12:03 +00:00
|
|
|
field(:magic_key, :string, default: nil)
|
2018-11-27 17:37:46 +00:00
|
|
|
field(:uri, :string, default: nil)
|
2018-11-30 16:08:02 +00:00
|
|
|
field(:topic, :string, default: nil)
|
|
|
|
field(:hub, :string, default: nil)
|
2018-12-01 11:46:08 +00:00
|
|
|
field(:salmon, :string, default: nil)
|
2019-02-03 18:24:09 +00:00
|
|
|
field(:hide_followers, :boolean, default: false)
|
2019-02-06 22:34:44 +00:00
|
|
|
field(:hide_follows, :boolean, default: false)
|
2019-01-16 15:15:46 +00:00
|
|
|
field(:pinned_activities, {:array, :string}, default: [])
|
2019-02-03 11:31:12 +00:00
|
|
|
field(:flavour, :string, default: nil)
|
2019-04-13 10:40:42 +00:00
|
|
|
field(:email_notifications, :map, default: %{"digest" => true})
|
2018-12-01 11:00:53 +00:00
|
|
|
|
2019-03-27 19:09:39 +00:00
|
|
|
field(:notification_settings, :map,
|
|
|
|
default: %{"remote" => true, "local" => true, "followers" => true, "follows" => true}
|
|
|
|
)
|
|
|
|
|
2018-12-01 11:00:53 +00: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 17:04:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_activation_status(info, deactivated) do
|
|
|
|
params = %{deactivated: deactivated}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:deactivated])
|
|
|
|
|> validate_required([:deactivated])
|
|
|
|
end
|
2018-11-18 17:17:56 +00:00
|
|
|
|
2019-03-28 11:52:09 +00:00
|
|
|
def update_notification_settings(info, settings) do
|
|
|
|
notification_settings =
|
|
|
|
info.notification_settings
|
|
|
|
|> Map.merge(settings)
|
|
|
|
|> Map.take(["remote", "local", "followers", "follows"])
|
|
|
|
|
|
|
|
params = %{notification_settings: notification_settings}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:notification_settings])
|
|
|
|
|> validate_required([:notification_settings])
|
|
|
|
end
|
|
|
|
|
2019-04-13 10:40:42 +00:00
|
|
|
@doc """
|
|
|
|
Update email notifications in the given User.Info struct.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
iex> update_email_notifications(%Pleroma.User.Info{email_notifications: %{"digest" => false}}, %{"digest" => true})
|
|
|
|
%Pleroma.User.Info{email_notifications: %{"digest" => true}}
|
|
|
|
|
|
|
|
"""
|
|
|
|
@spec update_email_notifications(t(), map()) :: Ecto.Changeset.t()
|
|
|
|
def update_email_notifications(info, settings) do
|
|
|
|
email_notifications =
|
|
|
|
info.email_notifications
|
|
|
|
|> Map.merge(settings)
|
|
|
|
|> Map.take(["digest"])
|
|
|
|
|
|
|
|
params = %{email_notifications: email_notifications}
|
|
|
|
fields = [:email_notifications]
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, fields)
|
|
|
|
|> validate_required(fields)
|
|
|
|
end
|
|
|
|
|
2018-11-18 17:17:56 +00:00
|
|
|
def add_to_note_count(info, number) do
|
2018-11-18 17:52:21 +00:00
|
|
|
set_note_count(info, info.note_count + number)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_note_count(info, number) do
|
2018-11-18 17:27:04 +00:00
|
|
|
params = %{note_count: Enum.max([0, number])}
|
2018-11-18 17:17:56 +00:00
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:note_count])
|
|
|
|
|> validate_required([:note_count])
|
|
|
|
end
|
2018-11-18 17:24:16 +00: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 17:40:31 +00:00
|
|
|
|
2019-02-19 20:09:16 +00:00
|
|
|
def set_mutes(info, mutes) do
|
|
|
|
params = %{mutes: mutes}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:mutes])
|
|
|
|
|> validate_required([:mutes])
|
|
|
|
end
|
|
|
|
|
2018-11-18 17:40:31 +00:00
|
|
|
def set_blocks(info, blocks) do
|
|
|
|
params = %{blocks: blocks}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:blocks])
|
|
|
|
|> validate_required([:blocks])
|
|
|
|
end
|
|
|
|
|
2019-04-05 15:51:45 +00:00
|
|
|
def set_subscribers(info, subscribers) do
|
|
|
|
params = %{subscribers: subscribers}
|
2019-04-05 12:49:33 +00:00
|
|
|
|
|
|
|
info
|
2019-04-05 15:51:45 +00:00
|
|
|
|> cast(params, [:subscribers])
|
|
|
|
|> validate_required([:subscribers])
|
2019-04-05 12:49:33 +00:00
|
|
|
end
|
|
|
|
|
2019-02-19 20:09:16 +00:00
|
|
|
def add_to_mutes(info, muted) do
|
|
|
|
set_mutes(info, Enum.uniq([muted | info.mutes]))
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_mutes(info, muted) do
|
|
|
|
set_mutes(info, List.delete(info.mutes, muted))
|
|
|
|
end
|
|
|
|
|
2018-11-18 17:40:31 +00: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 18:33:43 +00:00
|
|
|
|
2019-04-05 15:51:45 +00:00
|
|
|
def add_to_subscribers(info, subscribed) do
|
|
|
|
set_subscribers(info, Enum.uniq([subscribed | info.subscribers]))
|
2019-04-05 12:49:33 +00:00
|
|
|
end
|
|
|
|
|
2019-04-05 15:51:45 +00:00
|
|
|
def remove_from_subscribers(info, subscribed) do
|
|
|
|
set_subscribers(info, List.delete(info.subscribers, subscribed))
|
2019-04-05 12:49:33 +00:00
|
|
|
end
|
|
|
|
|
2018-11-18 20:40:52 +00: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 18:33:43 +00:00
|
|
|
def set_keys(info, keys) do
|
|
|
|
params = %{keys: keys}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:keys])
|
|
|
|
|> validate_required([:keys])
|
|
|
|
end
|
2018-11-18 20:40:52 +00:00
|
|
|
|
|
|
|
def remote_user_creation(info, params) do
|
|
|
|
info
|
2018-11-20 18:07:01 +00:00
|
|
|
|> cast(params, [
|
|
|
|
:ap_enabled,
|
|
|
|
:source_data,
|
|
|
|
:banner,
|
2018-11-27 17:12:03 +00:00
|
|
|
:locked,
|
2018-11-27 17:37:46 +00:00
|
|
|
:magic_key,
|
2018-11-30 16:08:02 +00:00
|
|
|
:uri,
|
|
|
|
:hub,
|
2018-12-01 11:46:08 +00:00
|
|
|
:topic,
|
|
|
|
:salmon
|
2018-11-20 18:07:01 +00:00
|
|
|
])
|
2018-11-18 20:40:52 +00:00
|
|
|
end
|
2018-11-18 21:15:03 +00:00
|
|
|
|
2018-11-27 16:42:45 +00:00
|
|
|
def user_upgrade(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:ap_enabled,
|
|
|
|
:source_data,
|
|
|
|
:banner,
|
2018-11-27 17:12:03 +00:00
|
|
|
:locked,
|
|
|
|
:magic_key
|
2018-11-27 16:42:45 +00:00
|
|
|
])
|
|
|
|
end
|
|
|
|
|
2018-11-30 16:07:37 +00:00
|
|
|
def profile_update(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:locked,
|
|
|
|
:no_rich_text,
|
2018-12-01 11:00:53 +00:00
|
|
|
:default_scope,
|
2018-12-05 18:22:40 +00:00
|
|
|
:banner,
|
2019-02-06 22:34:44 +00:00
|
|
|
:hide_follows,
|
2019-02-03 18:24:09 +00:00
|
|
|
:hide_followers,
|
2019-02-04 12:28:35 +00:00
|
|
|
:background,
|
|
|
|
:show_role
|
2018-11-30 16:07:37 +00:00
|
|
|
])
|
|
|
|
end
|
|
|
|
|
2018-12-19 13:27:16 +00:00
|
|
|
def confirmation_changeset(info, :confirmed) do
|
|
|
|
confirmation_changeset(info, %{
|
2018-12-17 14:28:58 +00:00
|
|
|
confirmation_pending: false,
|
|
|
|
confirmation_token: nil
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2018-12-19 13:27:16 +00:00
|
|
|
def confirmation_changeset(info, :unconfirmed) do
|
|
|
|
confirmation_changeset(info, %{
|
2018-12-17 14:28:58 +00:00
|
|
|
confirmation_pending: true,
|
|
|
|
confirmation_token: :crypto.strong_rand_bytes(32) |> Base.url_encode64()
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2018-12-19 13:27:16 +00:00
|
|
|
def confirmation_changeset(info, params) do
|
2018-12-14 13:38:56 +00:00
|
|
|
cast(info, params, [:confirmation_pending, :confirmation_token])
|
|
|
|
end
|
|
|
|
|
2018-12-01 09:40:01 +00:00
|
|
|
def mastodon_profile_update(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:locked,
|
|
|
|
:banner
|
|
|
|
])
|
|
|
|
end
|
|
|
|
|
2018-12-16 11:15:34 +00:00
|
|
|
def mastodon_settings_update(info, settings) do
|
|
|
|
params = %{settings: settings}
|
|
|
|
|
2018-12-06 14:42:07 +00:00
|
|
|
info
|
|
|
|
|> cast(params, [:settings])
|
2018-12-16 11:15:34 +00:00
|
|
|
|> validate_required([:settings])
|
2018-12-06 14:42:07 +00:00
|
|
|
end
|
|
|
|
|
2019-02-03 11:31:12 +00:00
|
|
|
def mastodon_flavour_update(info, flavour) do
|
|
|
|
params = %{flavour: flavour}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:flavour])
|
|
|
|
|> validate_required([:flavour])
|
|
|
|
end
|
|
|
|
|
2018-11-20 19:12:39 +00:00
|
|
|
def set_source_data(info, source_data) do
|
|
|
|
params = %{source_data: source_data}
|
|
|
|
|
2018-11-18 21:15:03 +00:00
|
|
|
info
|
2018-11-20 19:12:39 +00:00
|
|
|
|> cast(params, [:source_data])
|
|
|
|
|> validate_required([:source_data])
|
2018-11-18 21:15:03 +00:00
|
|
|
end
|
2018-12-01 08:03:16 +00:00
|
|
|
|
|
|
|
def admin_api_update(info, params) do
|
|
|
|
info
|
|
|
|
|> cast(params, [
|
|
|
|
:is_moderator,
|
2019-02-04 12:28:35 +00:00
|
|
|
:is_admin,
|
|
|
|
:show_role
|
2018-12-01 08:03:16 +00:00
|
|
|
])
|
|
|
|
end
|
2019-01-07 13:45:33 +00:00
|
|
|
|
|
|
|
def add_pinnned_activity(info, %Pleroma.Activity{id: id}) do
|
|
|
|
if id not in info.pinned_activities do
|
2019-01-08 08:25:50 +00:00
|
|
|
max_pinned_statuses = Pleroma.Config.get([:instance, :max_pinned_statuses], 0)
|
2019-01-07 13:45:33 +00:00
|
|
|
params = %{pinned_activities: info.pinned_activities ++ [id]}
|
|
|
|
|
|
|
|
info
|
|
|
|
|> cast(params, [:pinned_activities])
|
|
|
|
|> validate_length(:pinned_activities,
|
2019-01-08 08:25:50 +00:00
|
|
|
max: max_pinned_statuses,
|
|
|
|
message: "You have already pinned the maximum number of statuses"
|
2019-01-07 13:45:33 +00: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 19:15:28 +00:00
|
|
|
|
|
|
|
def roles(%Info{is_moderator: is_moderator, is_admin: is_admin}) do
|
|
|
|
%{
|
|
|
|
admin: is_admin,
|
|
|
|
moderator: is_moderator
|
|
|
|
}
|
|
|
|
end
|
2019-03-15 13:28:14 +00:00
|
|
|
|
2019-03-15 13:06:58 +00:00
|
|
|
def add_reblog_mute(info, ap_id) do
|
|
|
|
params = %{muted_reblogs: info.muted_reblogs ++ [ap_id]}
|
2019-03-09 13:08:41 +00:00
|
|
|
|
|
|
|
cast(info, params, [:muted_reblogs])
|
|
|
|
end
|
|
|
|
|
2019-03-15 13:06:58 +00:00
|
|
|
def remove_reblog_mute(info, ap_id) do
|
|
|
|
params = %{muted_reblogs: List.delete(info.muted_reblogs, ap_id)}
|
2019-03-09 13:08:41 +00:00
|
|
|
|
|
|
|
cast(info, params, [:muted_reblogs])
|
|
|
|
end
|
2018-11-18 17:04:42 +00:00
|
|
|
end
|