2019-09-30 12:10:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-09-30 12:10:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.AccountController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2019-09-30 07:28:12 +00:00
|
|
|
import Pleroma.Web.ControllerHelper,
|
2020-04-01 16:49:09 +00:00
|
|
|
only: [
|
|
|
|
add_link_headers: 2,
|
|
|
|
assign_account_by_id: 2,
|
2020-05-13 15:56:45 +00:00
|
|
|
embed_relationships?: 1,
|
2020-05-09 15:05:44 +00:00
|
|
|
json_response: 3
|
2020-04-01 16:49:09 +00:00
|
|
|
]
|
2019-09-30 12:10:54 +00:00
|
|
|
|
2020-06-05 14:48:02 +00:00
|
|
|
alias Pleroma.Maps
|
2019-09-30 12:10:54 +00:00
|
|
|
alias Pleroma.User
|
2021-11-21 15:53:30 +00:00
|
|
|
alias Pleroma.UserNote
|
2019-09-30 12:10:54 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2020-06-22 11:59:45 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Builder
|
2020-06-22 12:02:29 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Pipeline
|
2019-09-30 09:08:29 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-09-30 12:10:54 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.ListView
|
2019-09-30 09:08:29 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.MastodonAPI
|
2020-04-06 07:20:44 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.MastodonAPIController
|
2019-09-30 09:08:29 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2020-07-31 11:13:38 +00:00
|
|
|
alias Pleroma.Web.OAuth.OAuthController
|
2020-06-24 10:07:47 +00:00
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
|
|
|
alias Pleroma.Web.Plugs.RateLimiter
|
2019-09-30 09:08:29 +00:00
|
|
|
alias Pleroma.Web.TwitterAPI.TwitterAPI
|
2021-06-07 21:45:33 +00:00
|
|
|
alias Pleroma.Web.Utils.Params
|
2019-09-30 12:10:54 +00:00
|
|
|
|
2020-05-04 16:16:18 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2020-04-27 16:46:52 +00:00
|
|
|
|
2021-12-28 19:02:59 +00:00
|
|
|
plug(:skip_auth when action in [:create, :lookup])
|
2020-04-21 13:29:19 +00:00
|
|
|
|
2021-06-09 00:14:12 +00:00
|
|
|
plug(:skip_public_check when action in [:show, :statuses])
|
2020-04-06 07:20:44 +00:00
|
|
|
|
2019-10-02 17:42:40 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{fallback: :proceed_unauthenticated, scopes: ["read:accounts"]}
|
2020-04-24 13:52:38 +00:00
|
|
|
when action in [:show, :followers, :following]
|
2020-04-21 13:29:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{fallback: :proceed_unauthenticated, scopes: ["read:statuses"]}
|
|
|
|
when action == :statuses
|
2019-10-02 17:42:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["read:accounts"]}
|
2020-04-24 13:52:38 +00:00
|
|
|
when action in [:verify_credentials, :endorsements, :identity_proofs]
|
2019-10-02 17:42:40 +00:00
|
|
|
)
|
|
|
|
|
2021-11-21 15:53:30 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:accounts"]}
|
|
|
|
when action in [:update_credentials, :note]
|
|
|
|
)
|
2019-10-02 17:42:40 +00:00
|
|
|
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:lists"]} when action == :lists)
|
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["follow", "read:blocks"]} when action == :blocks
|
|
|
|
)
|
|
|
|
|
2019-10-02 17:42:40 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["follow", "write:blocks"]} when action in [:block, :unblock]
|
|
|
|
)
|
|
|
|
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:follows"]} when action == :relationships)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2022-10-19 10:01:14 +00:00
|
|
|
%{scopes: ["follow", "write:follows"]}
|
|
|
|
when action in [:follow_by_uri, :follow, :unfollow, :remove_from_followers]
|
2019-10-02 17:42:40 +00:00
|
|
|
)
|
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["follow", "read:mutes"]} when action == :mutes)
|
|
|
|
|
2019-10-02 17:42:40 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["follow", "write:mutes"]} when action in [:mute, :unmute])
|
|
|
|
|
2022-10-19 10:01:14 +00:00
|
|
|
@relationship_actions [:follow, :unfollow, :remove_from_followers]
|
|
|
|
@needs_account ~W(followers following lists follow unfollow mute unmute block unblock note remove_from_followers)a
|
2019-09-30 12:10:54 +00:00
|
|
|
|
2020-03-25 06:04:00 +00:00
|
|
|
plug(
|
|
|
|
RateLimiter,
|
2020-05-26 11:45:54 +00:00
|
|
|
[name: :relation_id_action, params: [:id, :uri]] when action in @relationship_actions
|
2020-03-25 06:04:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(RateLimiter, [name: :relations_actions] when action in @relationship_actions)
|
2019-11-11 12:13:06 +00:00
|
|
|
plug(RateLimiter, [name: :app_account_creation] when action == :create)
|
2019-09-30 09:08:29 +00:00
|
|
|
plug(:assign_account_by_id when action in @needs_account)
|
2019-09-30 12:10:54 +00:00
|
|
|
|
|
|
|
action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
|
|
|
|
|
2020-04-03 18:45:08 +00:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.AccountOperation
|
|
|
|
|
2019-09-30 09:08:29 +00:00
|
|
|
@doc "POST /api/v1/accounts"
|
2020-04-03 18:45:08 +00:00
|
|
|
def create(%{assigns: %{app: app}, body_params: params} = conn, _params) do
|
2020-02-26 16:13:53 +00:00
|
|
|
with :ok <- validate_email_param(params),
|
2020-04-29 16:48:08 +00:00
|
|
|
:ok <- TwitterAPI.validate_captcha(app, params),
|
2020-07-29 09:47:03 +00:00
|
|
|
{:ok, user} <- TwitterAPI.register_user(params),
|
2020-07-31 11:13:38 +00:00
|
|
|
{_, {:ok, token}} <-
|
|
|
|
{:login, OAuthController.login(user, app, app.scopes)} do
|
2020-11-25 18:47:23 +00:00
|
|
|
OAuthController.after_token_exchange(conn, %{user: user, token: token})
|
2019-09-30 09:08:29 +00:00
|
|
|
else
|
2020-07-31 11:13:38 +00:00
|
|
|
{:login, {:account_status, :confirmation_pending}} ->
|
|
|
|
json_response(conn, :ok, %{
|
|
|
|
message: "You have been registered. Please check your email for further instructions.",
|
|
|
|
identifier: "missing_confirmed_email"
|
|
|
|
})
|
|
|
|
|
|
|
|
{:login, {:account_status, :approval_pending}} ->
|
|
|
|
json_response(conn, :ok, %{
|
|
|
|
message:
|
|
|
|
"You have been registered. You'll be able to log in once your account is approved.",
|
|
|
|
identifier: "awaiting_approval"
|
|
|
|
})
|
|
|
|
|
|
|
|
{:login, _} ->
|
|
|
|
json_response(conn, :ok, %{
|
|
|
|
message:
|
|
|
|
"You have been registered. Some post-registration steps may be pending. " <>
|
|
|
|
"Please log in manually.",
|
|
|
|
identifier: "manual_login_required"
|
|
|
|
})
|
|
|
|
|
|
|
|
{:error, error} ->
|
|
|
|
json_response(conn, :bad_request, %{error: error})
|
2019-09-30 09:08:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create(%{assigns: %{app: _app}} = conn, _) do
|
|
|
|
render_error(conn, :bad_request, "Missing parameters")
|
|
|
|
end
|
|
|
|
|
|
|
|
def create(conn, _) do
|
|
|
|
render_error(conn, :forbidden, "Invalid credentials")
|
|
|
|
end
|
|
|
|
|
2020-04-29 16:48:08 +00:00
|
|
|
defp validate_email_param(%{email: email}) when not is_nil(email), do: :ok
|
2020-02-26 16:13:53 +00:00
|
|
|
|
|
|
|
defp validate_email_param(_) do
|
|
|
|
case Pleroma.Config.get([:instance, :account_activation_required]) do
|
2020-04-29 16:48:08 +00:00
|
|
|
true -> {:error, dgettext("errors", "Missing parameter: %{name}", name: "email")}
|
2020-02-26 16:13:53 +00:00
|
|
|
_ -> :ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-30 09:08:29 +00:00
|
|
|
@doc "GET /api/v1/accounts/verify_credentials"
|
|
|
|
def verify_credentials(%{assigns: %{user: user}} = conn, _) do
|
|
|
|
render(conn, "show.json",
|
|
|
|
user: user,
|
|
|
|
for: user,
|
2022-07-21 10:29:28 +00:00
|
|
|
with_pleroma_settings: true
|
2019-09-30 09:08:29 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-09-30 08:47:01 +00:00
|
|
|
@doc "PATCH /api/v1/accounts/update_credentials"
|
2020-06-01 11:03:22 +00:00
|
|
|
def update_credentials(%{assigns: %{user: user}, body_params: params} = conn, _params) do
|
2020-04-07 10:53:12 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Enum.filter(fn {_, value} -> not is_nil(value) end)
|
|
|
|
|> Enum.into(%{})
|
|
|
|
|
2020-07-07 14:20:50 +00:00
|
|
|
# We use an empty string as a special value to reset
|
|
|
|
# avatars, banners, backgrounds
|
|
|
|
user_image_value = fn
|
|
|
|
"" -> {:ok, nil}
|
|
|
|
value -> {:ok, value}
|
|
|
|
end
|
|
|
|
|
2022-11-28 13:34:54 +00:00
|
|
|
status_ttl_days_value = fn
|
|
|
|
-1 -> {:ok, nil}
|
|
|
|
value -> {:ok, value}
|
|
|
|
end
|
|
|
|
|
2019-10-16 18:59:21 +00:00
|
|
|
user_params =
|
2019-09-30 08:47:01 +00:00
|
|
|
[
|
|
|
|
:no_rich_text,
|
|
|
|
:hide_followers_count,
|
|
|
|
:hide_follows_count,
|
|
|
|
:hide_followers,
|
|
|
|
:hide_follows,
|
|
|
|
:hide_favorites,
|
|
|
|
:show_role,
|
|
|
|
:skip_thread_containment,
|
2019-11-12 11:36:50 +00:00
|
|
|
:allow_following_move,
|
2022-07-21 10:29:28 +00:00
|
|
|
:also_known_as
|
2019-09-30 08:47:01 +00:00
|
|
|
]
|
|
|
|
|> Enum.reduce(%{}, fn key, acc ->
|
2021-05-22 16:41:55 +00:00
|
|
|
Maps.put_if_present(acc, key, params[key], &{:ok, Params.truthy_param?(&1)})
|
2019-09-30 08:47:01 +00:00
|
|
|
end)
|
2020-06-05 14:48:02 +00:00
|
|
|
|> Maps.put_if_present(:name, params[:display_name])
|
|
|
|
|> Maps.put_if_present(:bio, params[:note])
|
2020-03-23 21:52:25 +00:00
|
|
|
|> Maps.put_if_present(:raw_bio, params[:note])
|
2020-07-07 14:20:50 +00:00
|
|
|
|> Maps.put_if_present(:avatar, params[:avatar], user_image_value)
|
|
|
|
|> Maps.put_if_present(:banner, params[:header], user_image_value)
|
|
|
|
|> Maps.put_if_present(:background, params[:pleroma_background_image], user_image_value)
|
2020-06-05 14:48:02 +00:00
|
|
|
|> Maps.put_if_present(
|
2020-01-31 18:07:46 +00:00
|
|
|
:raw_fields,
|
2020-06-05 14:48:02 +00:00
|
|
|
params[:fields_attributes],
|
2020-01-31 18:07:46 +00:00
|
|
|
&{:ok, normalize_fields_attributes(&1)}
|
|
|
|
)
|
2020-06-05 14:48:02 +00:00
|
|
|
|> Maps.put_if_present(:pleroma_settings_store, params[:pleroma_settings_store])
|
|
|
|
|> Maps.put_if_present(:default_scope, params[:default_scope])
|
|
|
|
|> Maps.put_if_present(:default_scope, params["source"]["privacy"])
|
2020-06-19 19:18:07 +00:00
|
|
|
|> Maps.put_if_present(:actor_type, params[:bot], fn bot ->
|
|
|
|
if bot, do: {:ok, "Service"}, else: {:ok, "Person"}
|
|
|
|
end)
|
2020-06-05 14:48:02 +00:00
|
|
|
|> Maps.put_if_present(:actor_type, params[:actor_type])
|
2020-08-07 21:48:03 +00:00
|
|
|
|> Maps.put_if_present(:also_known_as, params[:also_known_as])
|
2020-11-19 16:30:02 +00:00
|
|
|
# Note: param name is indeed :locked (not an error)
|
2020-10-14 16:03:17 +00:00
|
|
|
|> Maps.put_if_present(:is_locked, params[:locked])
|
2020-11-19 16:30:02 +00:00
|
|
|
# Note: param name is indeed :discoverable (not an error)
|
2020-10-14 15:44:18 +00:00
|
|
|
|> Maps.put_if_present(:is_discoverable, params[:discoverable])
|
2022-03-02 06:41:13 +00:00
|
|
|
|> Maps.put_if_present(:language, Pleroma.Web.Gettext.normalize_locale(params[:language]))
|
2022-11-28 13:34:54 +00:00
|
|
|
|> Maps.put_if_present(:status_ttl_days, params[:status_ttl_days], status_ttl_days_value)
|
2019-10-16 18:59:21 +00:00
|
|
|
|
2020-06-22 11:59:45 +00:00
|
|
|
# What happens here:
|
|
|
|
#
|
|
|
|
# We want to update the user through the pipeline, but the ActivityPub
|
|
|
|
# update information is not quite enough for this, because this also
|
|
|
|
# contains local settings that don't federate and don't even appear
|
2020-06-22 12:02:29 +00:00
|
|
|
# in the Update activity.
|
|
|
|
#
|
2020-06-22 11:59:45 +00:00
|
|
|
# So we first build the normal local changeset, then apply it to the
|
|
|
|
# user data, but don't persist it. With this, we generate the object
|
|
|
|
# data for our update activity. We feed this and the changeset as meta
|
|
|
|
# inforation into the pipeline, where they will be properly updated and
|
|
|
|
# federated.
|
|
|
|
with changeset <- User.update_changeset(user, user_params),
|
|
|
|
{:ok, unpersisted_user} <- Ecto.Changeset.apply_action(changeset, :update),
|
|
|
|
updated_object <-
|
2020-08-10 08:33:05 +00:00
|
|
|
Pleroma.Web.ActivityPub.UserView.render("user.json", user: unpersisted_user)
|
2020-06-22 11:59:45 +00:00
|
|
|
|> Map.delete("@context"),
|
|
|
|
{:ok, update_data, []} <- Builder.update(user, updated_object),
|
|
|
|
{:ok, _update, _} <-
|
|
|
|
Pipeline.common_pipeline(update_data,
|
|
|
|
local: true,
|
|
|
|
user_update_changeset: changeset
|
|
|
|
) do
|
|
|
|
render(conn, "show.json",
|
|
|
|
user: unpersisted_user,
|
|
|
|
for: unpersisted_user,
|
|
|
|
with_pleroma_settings: true
|
|
|
|
)
|
2019-09-30 08:47:01 +00:00
|
|
|
else
|
|
|
|
_e -> render_error(conn, :forbidden, "Invalid request")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-30 16:39:22 +00:00
|
|
|
defp normalize_fields_attributes(fields) do
|
|
|
|
if Enum.all?(fields, &is_tuple/1) do
|
|
|
|
Enum.map(fields, fn {_, v} -> v end)
|
|
|
|
else
|
2020-04-07 10:53:12 +00:00
|
|
|
Enum.map(fields, fn
|
2020-04-27 18:55:05 +00:00
|
|
|
%{} = field -> %{"name" => field.name, "value" => field.value}
|
|
|
|
field -> field
|
2020-04-07 10:53:12 +00:00
|
|
|
end)
|
2019-09-30 16:39:22 +00:00
|
|
|
end
|
2019-09-30 08:47:01 +00:00
|
|
|
end
|
|
|
|
|
2019-09-30 09:08:29 +00:00
|
|
|
@doc "GET /api/v1/accounts/relationships"
|
2020-04-07 14:29:05 +00:00
|
|
|
def relationships(%{assigns: %{user: user}} = conn, %{id: id}) do
|
2019-09-30 09:08:29 +00:00
|
|
|
targets = User.get_all_by_ids(List.wrap(id))
|
|
|
|
|
|
|
|
render(conn, "relationships.json", user: user, targets: targets)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Instead of returning a 400 when no "id" params is present, Mastodon returns an empty array.
|
|
|
|
def relationships(%{assigns: %{user: _user}} = conn, _), do: json(conn, [])
|
|
|
|
|
2019-09-30 12:10:54 +00:00
|
|
|
@doc "GET /api/v1/accounts/:id"
|
2021-01-29 05:41:21 +00:00
|
|
|
def show(%{assigns: %{user: for_user}} = conn, %{id: nickname_or_id} = params) do
|
2019-09-30 12:10:54 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname_or_id(nickname_or_id, for: for_user),
|
2020-05-15 17:29:09 +00:00
|
|
|
:visible <- User.visible_for(user, for_user) do
|
2021-01-29 05:41:21 +00:00
|
|
|
render(conn, "show.json",
|
|
|
|
user: user,
|
|
|
|
for: for_user,
|
|
|
|
embed_relationships: embed_relationships?(params)
|
|
|
|
)
|
2019-09-30 12:10:54 +00:00
|
|
|
else
|
2020-05-07 10:44:38 +00:00
|
|
|
error -> user_visibility_error(conn, error)
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "GET /api/v1/accounts/:id/statuses"
|
|
|
|
def statuses(%{assigns: %{user: reading_user}} = conn, params) do
|
2020-04-08 18:33:25 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname_or_id(params.id, for: reading_user),
|
2020-05-15 17:29:09 +00:00
|
|
|
:visible <- User.visible_for(user, reading_user) do
|
2019-12-06 13:25:13 +00:00
|
|
|
params =
|
|
|
|
params
|
2020-04-08 18:33:25 +00:00
|
|
|
|> Map.delete(:tagged)
|
2020-06-04 17:33:16 +00:00
|
|
|
|> Map.put(:tag, params[:tagged])
|
2019-12-06 13:25:13 +00:00
|
|
|
|
2019-09-30 12:10:54 +00:00
|
|
|
activities = ActivityPub.fetch_user_activities(user, reading_user, params)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(activities)
|
|
|
|
|> put_view(StatusView)
|
2020-04-01 16:49:09 +00:00
|
|
|
|> render("index.json",
|
|
|
|
activities: activities,
|
|
|
|
for: reading_user,
|
2020-11-16 18:23:25 +00:00
|
|
|
as: :activity,
|
|
|
|
with_muted: Map.get(params, :with_muted, false)
|
2020-04-01 16:49:09 +00:00
|
|
|
)
|
2020-03-20 10:04:37 +00:00
|
|
|
else
|
2020-05-07 10:44:38 +00:00
|
|
|
error -> user_visibility_error(conn, error)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp user_visibility_error(conn, error) do
|
|
|
|
case error do
|
|
|
|
:restrict_unauthenticated ->
|
|
|
|
render_error(conn, :unauthorized, "This API requires an authenticated user")
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
render_error(conn, :not_found, "Can't find user")
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "GET /api/v1/accounts/:id/followers"
|
|
|
|
def followers(%{assigns: %{user: for_user, account: user}} = conn, params) do
|
2020-04-08 19:16:20 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Enum.map(fn {key, value} -> {to_string(key), value} end)
|
|
|
|
|> Enum.into(%{})
|
|
|
|
|
2019-09-30 12:10:54 +00:00
|
|
|
followers =
|
|
|
|
cond do
|
|
|
|
for_user && user.id == for_user.id -> MastodonAPI.get_followers(user, params)
|
2019-10-16 18:59:21 +00:00
|
|
|
user.hide_followers -> []
|
2019-09-30 12:10:54 +00:00
|
|
|
true -> MastodonAPI.get_followers(user, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(followers)
|
2020-05-12 16:14:35 +00:00
|
|
|
# https://git.pleroma.social/pleroma/pleroma-fe/-/issues/838#note_59223
|
|
|
|
|> render("index.json",
|
|
|
|
for: for_user,
|
|
|
|
users: followers,
|
|
|
|
as: :user,
|
2020-05-13 15:56:45 +00:00
|
|
|
embed_relationships: embed_relationships?(params)
|
2020-05-12 16:14:35 +00:00
|
|
|
)
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc "GET /api/v1/accounts/:id/following"
|
|
|
|
def following(%{assigns: %{user: for_user, account: user}} = conn, params) do
|
2020-04-08 19:38:07 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Enum.map(fn {key, value} -> {to_string(key), value} end)
|
|
|
|
|> Enum.into(%{})
|
|
|
|
|
2019-09-30 12:10:54 +00:00
|
|
|
followers =
|
|
|
|
cond do
|
|
|
|
for_user && user.id == for_user.id -> MastodonAPI.get_friends(user, params)
|
2019-10-16 18:59:21 +00:00
|
|
|
user.hide_follows -> []
|
2019-09-30 12:10:54 +00:00
|
|
|
true -> MastodonAPI.get_friends(user, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(followers)
|
2020-05-12 16:14:35 +00:00
|
|
|
# https://git.pleroma.social/pleroma/pleroma-fe/-/issues/838#note_59223
|
|
|
|
|> render("index.json",
|
|
|
|
for: for_user,
|
|
|
|
users: followers,
|
|
|
|
as: :user,
|
2020-05-13 15:56:45 +00:00
|
|
|
embed_relationships: embed_relationships?(params)
|
2020-05-12 16:14:35 +00:00
|
|
|
)
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc "GET /api/v1/accounts/:id/lists"
|
|
|
|
def lists(%{assigns: %{user: user, account: account}} = conn, _params) do
|
|
|
|
lists = Pleroma.List.get_lists_account_belongs(user, account)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(ListView)
|
|
|
|
|> render("index.json", lists: lists)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "POST /api/v1/accounts/:id/follow"
|
|
|
|
def follow(%{assigns: %{user: %{id: id}, account: %{id: id}}}, _params) do
|
2020-04-22 13:04:26 +00:00
|
|
|
{:error, "Can not follow yourself"}
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
|
2020-07-08 09:52:29 +00:00
|
|
|
def follow(%{body_params: params, assigns: %{user: follower, account: followed}} = conn, _) do
|
2020-04-09 11:25:24 +00:00
|
|
|
with {:ok, follower} <- MastodonAPI.follow(follower, followed, params) do
|
2019-09-30 12:10:54 +00:00
|
|
|
render(conn, "relationship.json", user: follower, target: followed)
|
|
|
|
else
|
2019-09-30 07:28:12 +00:00
|
|
|
{:error, message} -> json_response(conn, :forbidden, %{error: message})
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-30 07:28:12 +00:00
|
|
|
@doc "POST /api/v1/accounts/:id/unfollow"
|
2019-09-30 12:10:54 +00:00
|
|
|
def unfollow(%{assigns: %{user: %{id: id}, account: %{id: id}}}, _params) do
|
2020-04-22 13:04:26 +00:00
|
|
|
{:error, "Can not unfollow yourself"}
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def unfollow(%{assigns: %{user: follower, account: followed}} = conn, _params) do
|
|
|
|
with {:ok, follower} <- CommonAPI.unfollow(follower, followed) do
|
|
|
|
render(conn, "relationship.json", user: follower, target: followed)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "POST /api/v1/accounts/:id/mute"
|
2020-04-09 14:28:14 +00:00
|
|
|
def mute(%{assigns: %{user: muter, account: muted}, body_params: params} = conn, _params) do
|
2020-09-08 10:26:44 +00:00
|
|
|
with {:ok, _user_relationships} <- User.mute(muter, muted, params) do
|
2019-09-30 12:10:54 +00:00
|
|
|
render(conn, "relationship.json", user: muter, target: muted)
|
|
|
|
else
|
2019-09-30 07:28:12 +00:00
|
|
|
{:error, message} -> json_response(conn, :forbidden, %{error: message})
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "POST /api/v1/accounts/:id/unmute"
|
|
|
|
def unmute(%{assigns: %{user: muter, account: muted}} = conn, _params) do
|
2019-11-19 20:22:10 +00:00
|
|
|
with {:ok, _user_relationships} <- User.unmute(muter, muted) do
|
2019-09-30 12:10:54 +00:00
|
|
|
render(conn, "relationship.json", user: muter, target: muted)
|
|
|
|
else
|
2019-09-30 07:28:12 +00:00
|
|
|
{:error, message} -> json_response(conn, :forbidden, %{error: message})
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "POST /api/v1/accounts/:id/block"
|
|
|
|
def block(%{assigns: %{user: blocker, account: blocked}} = conn, _params) do
|
2020-06-25 09:44:04 +00:00
|
|
|
with {:ok, _activity} <- CommonAPI.block(blocker, blocked) do
|
2019-09-30 12:10:54 +00:00
|
|
|
render(conn, "relationship.json", user: blocker, target: blocked)
|
|
|
|
else
|
2019-09-30 07:28:12 +00:00
|
|
|
{:error, message} -> json_response(conn, :forbidden, %{error: message})
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "POST /api/v1/accounts/:id/unblock"
|
|
|
|
def unblock(%{assigns: %{user: blocker, account: blocked}} = conn, _params) do
|
2020-05-05 16:00:37 +00:00
|
|
|
with {:ok, _activity} <- CommonAPI.unblock(blocker, blocked) do
|
2019-09-30 12:10:54 +00:00
|
|
|
render(conn, "relationship.json", user: blocker, target: blocked)
|
|
|
|
else
|
2019-09-30 07:28:12 +00:00
|
|
|
{:error, message} -> json_response(conn, :forbidden, %{error: message})
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|
|
|
|
end
|
2019-10-02 17:42:40 +00:00
|
|
|
|
2021-11-21 15:53:30 +00:00
|
|
|
@doc "POST /api/v1/accounts/:id/note"
|
2021-11-21 17:17:06 +00:00
|
|
|
def note(
|
|
|
|
%{assigns: %{user: noter, account: target}, body_params: %{comment: comment}} = conn,
|
|
|
|
_params
|
|
|
|
) do
|
2021-11-21 15:53:30 +00:00
|
|
|
with {:ok, _user_note} <- UserNote.create(noter, target, comment) do
|
|
|
|
render(conn, "relationship.json", user: noter, target: target)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-10-19 10:01:14 +00:00
|
|
|
@doc "POST /api/v1/accounts/:id/remove_from_followers"
|
|
|
|
def remove_from_followers(%{assigns: %{user: %{id: id}, account: %{id: id}}}, _params) do
|
|
|
|
{:error, "Can not unfollow yourself"}
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_followers(%{assigns: %{user: followed, account: follower}} = conn, _params) do
|
|
|
|
with {:ok, follower} <- CommonAPI.reject_follow_request(follower, followed) do
|
|
|
|
render(conn, "relationship.json", user: followed, target: follower)
|
|
|
|
else
|
|
|
|
nil ->
|
|
|
|
render_error(conn, :not_found, "Record not found")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-01 10:15:58 +00:00
|
|
|
@doc "POST /api/v1/follows"
|
2020-04-28 16:56:20 +00:00
|
|
|
def follow_by_uri(%{body_params: %{uri: uri}} = conn, _) do
|
2020-04-22 13:04:26 +00:00
|
|
|
case User.get_cached_by_nickname(uri) do
|
|
|
|
%User{} = user ->
|
|
|
|
conn
|
|
|
|
|> assign(:account, user)
|
|
|
|
|> follow(%{})
|
|
|
|
|
|
|
|
nil ->
|
|
|
|
{:error, :not_found}
|
2019-10-01 10:15:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "GET /api/v1/mutes"
|
2020-10-13 17:58:18 +00:00
|
|
|
def mutes(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
users =
|
|
|
|
user
|
|
|
|
|> User.muted_users_relation(_restrict_deactivated = true)
|
|
|
|
|> Pleroma.Pagination.fetch_paginated(Map.put(params, :skip_order, true))
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(users)
|
2021-01-29 05:41:21 +00:00
|
|
|
|> render("index.json",
|
|
|
|
users: users,
|
|
|
|
for: user,
|
|
|
|
as: :user,
|
|
|
|
embed_relationships: embed_relationships?(params)
|
|
|
|
)
|
2019-10-01 10:15:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc "GET /api/v1/blocks"
|
2020-10-13 17:39:41 +00:00
|
|
|
def blocks(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
users =
|
|
|
|
user
|
|
|
|
|> User.blocked_users_relation(_restrict_deactivated = true)
|
|
|
|
|> Pleroma.Pagination.fetch_paginated(Map.put(params, :skip_order, true))
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(users)
|
|
|
|
|> render("index.json", users: users, for: user, as: :user)
|
2019-10-01 10:15:58 +00:00
|
|
|
end
|
2019-10-06 08:43:49 +00:00
|
|
|
|
2021-12-28 15:11:17 +00:00
|
|
|
@doc "GET /api/v1/accounts/lookup"
|
2021-12-28 17:24:48 +00:00
|
|
|
def lookup(conn, %{acct: nickname} = _params) do
|
2021-12-28 15:11:17 +00:00
|
|
|
with %User{} = user <- User.get_by_nickname(nickname) do
|
|
|
|
render(conn, "show.json",
|
|
|
|
user: user,
|
2021-12-28 17:24:48 +00:00
|
|
|
skip_visibility_check: true
|
2021-12-28 15:11:17 +00:00
|
|
|
)
|
|
|
|
else
|
|
|
|
error -> user_visibility_error(conn, error)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-02 17:42:40 +00:00
|
|
|
@doc "GET /api/v1/endorsements"
|
2020-04-06 07:20:44 +00:00
|
|
|
def endorsements(conn, params), do: MastodonAPIController.empty_array(conn, params)
|
|
|
|
|
|
|
|
@doc "GET /api/v1/identity_proofs"
|
|
|
|
def identity_proofs(conn, params), do: MastodonAPIController.empty_array(conn, params)
|
2019-09-30 12:10:54 +00:00
|
|
|
end
|