2018-12-23 20:04: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/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-06-20 14:55:57 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.UtilController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-02-06 19:20:02 +00:00
|
|
|
|
2017-12-12 19:04:41 +00:00
|
|
|
require Logger
|
2019-02-06 19:20:02 +00:00
|
|
|
|
2022-09-08 10:19:22 +00:00
|
|
|
alias Pleroma.Activity
|
2019-07-19 16:20:23 +00:00
|
|
|
alias Pleroma.Config
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Emoji
|
2019-07-19 16:20:23 +00:00
|
|
|
alias Pleroma.Healthcheck
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2022-07-04 16:29:39 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2020-06-24 10:07:47 +00:00
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.WebFinger
|
2017-10-19 15:37:24 +00:00
|
|
|
|
2022-09-08 10:19:22 +00:00
|
|
|
plug(
|
|
|
|
Pleroma.Web.ApiSpec.CastAndValidate
|
|
|
|
when action != :remote_subscribe and action != :show_subscribe_form
|
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
Pleroma.Web.Plugs.FederatingPlug
|
|
|
|
when action == :remote_subscribe
|
|
|
|
when action == :show_subscribe_form
|
|
|
|
)
|
2020-02-22 16:48:41 +00:00
|
|
|
|
2019-09-15 15:22:08 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:accounts"]}
|
|
|
|
when action in [
|
2019-09-15 15:52:27 +00:00
|
|
|
:change_email,
|
2019-09-15 15:22:08 +00:00
|
|
|
:change_password,
|
|
|
|
:delete_account,
|
|
|
|
:update_notificaton_settings,
|
2022-07-04 16:29:39 +00:00
|
|
|
:disable_account,
|
|
|
|
:move_account,
|
|
|
|
:add_alias,
|
|
|
|
:delete_alias
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["read:accounts"]}
|
|
|
|
when action in [
|
|
|
|
:list_aliases
|
2019-09-15 15:22:08 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2021-02-24 22:40:33 +00:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.TwitterUtilOperation
|
2019-10-06 14:12:17 +00:00
|
|
|
|
2022-09-08 10:19:22 +00:00
|
|
|
def show_subscribe_form(conn, %{"nickname" => nick}) do
|
2019-07-19 16:20:23 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(nick),
|
|
|
|
avatar = User.avatar_url(user) do
|
2018-02-01 22:00:48 +00:00
|
|
|
conn
|
|
|
|
|> render("subscribe.html", %{nickname: nick, avatar: avatar, error: false})
|
|
|
|
else
|
2018-03-30 13:01:53 +00:00
|
|
|
_e ->
|
|
|
|
render(conn, "subscribe.html", %{
|
|
|
|
nickname: nick,
|
|
|
|
avatar: nil,
|
2022-09-08 10:19:22 +00:00
|
|
|
error:
|
|
|
|
Pleroma.Web.Gettext.dpgettext(
|
|
|
|
"static_pages",
|
|
|
|
"remote follow error message - user not found",
|
|
|
|
"Could not find user"
|
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
})
|
2018-02-01 22:00:48 +00:00
|
|
|
end
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2022-09-08 10:19:22 +00:00
|
|
|
def show_subscribe_form(conn, %{"status_id" => id}) do
|
|
|
|
with %Activity{} = activity <- Activity.get_by_id(id),
|
|
|
|
{:ok, ap_id} <- get_ap_id(activity),
|
|
|
|
%User{} = user <- User.get_cached_by_ap_id(activity.actor),
|
|
|
|
avatar = User.avatar_url(user) do
|
|
|
|
conn
|
|
|
|
|> render("status_interact.html", %{
|
|
|
|
status_link: ap_id,
|
|
|
|
status_id: id,
|
|
|
|
nickname: user.nickname,
|
|
|
|
avatar: avatar,
|
|
|
|
error: false
|
|
|
|
})
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
render(conn, "status_interact.html", %{
|
|
|
|
status_id: id,
|
|
|
|
avatar: nil,
|
|
|
|
error:
|
|
|
|
Pleroma.Web.Gettext.dpgettext(
|
|
|
|
"static_pages",
|
|
|
|
"status interact error message - status not found",
|
|
|
|
"Could not find status"
|
|
|
|
)
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remote_subscribe(conn, %{"nickname" => nick, "profile" => _}) do
|
|
|
|
show_subscribe_form(conn, %{"nickname" => nick})
|
|
|
|
end
|
|
|
|
|
|
|
|
def remote_subscribe(conn, %{"status_id" => id, "profile" => _}) do
|
|
|
|
show_subscribe_form(conn, %{"status_id" => id})
|
|
|
|
end
|
|
|
|
|
2018-02-01 22:00:48 +00:00
|
|
|
def remote_subscribe(conn, %{"user" => %{"nickname" => nick, "profile" => profile}}) do
|
|
|
|
with {:ok, %{"subscribe_address" => template}} <- WebFinger.finger(profile),
|
|
|
|
%User{ap_id: ap_id} <- User.get_cached_by_nickname(nick) do
|
|
|
|
conn
|
|
|
|
|> Phoenix.Controller.redirect(external: String.replace(template, "{uri}", ap_id))
|
|
|
|
else
|
|
|
|
_e ->
|
2018-03-30 13:01:53 +00:00
|
|
|
render(conn, "subscribe.html", %{
|
|
|
|
nickname: nick,
|
|
|
|
avatar: nil,
|
2022-09-08 10:19:22 +00:00
|
|
|
error:
|
|
|
|
Pleroma.Web.Gettext.dpgettext(
|
|
|
|
"static_pages",
|
|
|
|
"remote follow error message - unknown error",
|
|
|
|
"Something went wrong."
|
|
|
|
)
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remote_subscribe(conn, %{"status" => %{"status_id" => id, "profile" => profile}}) do
|
|
|
|
with {:ok, %{"subscribe_address" => template}} <- WebFinger.finger(profile),
|
|
|
|
%Activity{} = activity <- Activity.get_by_id(id),
|
|
|
|
{:ok, ap_id} <- get_ap_id(activity) do
|
|
|
|
conn
|
|
|
|
|> Phoenix.Controller.redirect(external: String.replace(template, "{uri}", ap_id))
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
render(conn, "status_interact.html", %{
|
|
|
|
status_id: id,
|
|
|
|
avatar: nil,
|
|
|
|
error:
|
|
|
|
Pleroma.Web.Gettext.dpgettext(
|
|
|
|
"static_pages",
|
|
|
|
"status interact error message - unknown error",
|
|
|
|
"Something went wrong."
|
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
})
|
2018-02-01 22:00:48 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-22 18:44:30 +00:00
|
|
|
def remote_interaction(%{body_params: %{ap_id: ap_id, profile: profile}} = conn, _params) do
|
|
|
|
with {:ok, %{"subscribe_address" => template}} <- WebFinger.finger(profile) do
|
|
|
|
conn
|
|
|
|
|> json(%{url: String.replace(template, "{uri}", ap_id)})
|
|
|
|
else
|
|
|
|
_e -> json(conn, %{error: "Couldn't find user"})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-09-08 10:19:22 +00:00
|
|
|
defp get_ap_id(activity) do
|
|
|
|
object = Pleroma.Object.normalize(activity, fetch: false)
|
|
|
|
|
|
|
|
case object do
|
|
|
|
%{data: %{"id" => ap_id}} -> {:ok, ap_id}
|
|
|
|
_ -> {:no_ap_id, nil}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-23 11:40:57 +00:00
|
|
|
def frontend_configurations(conn, _params) do
|
2020-10-12 23:49:37 +00:00
|
|
|
render(conn, "frontend_configurations.json")
|
2019-01-23 11:40:57 +00:00
|
|
|
end
|
|
|
|
|
2017-10-19 19:51:56 +00:00
|
|
|
def emoji(conn, _params) do
|
2019-04-01 10:17:57 +00:00
|
|
|
emoji =
|
2019-08-31 07:14:53 +00:00
|
|
|
Enum.reduce(Emoji.get_all(), %{}, fn {code, %Emoji{file: file, tags: tags}}, acc ->
|
|
|
|
Map.put(acc, code, %{image_url: file, tags: tags})
|
2019-04-01 10:17:57 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
json(conn, emoji)
|
2017-10-19 19:51:56 +00:00
|
|
|
end
|
2017-12-12 16:35:23 +00:00
|
|
|
|
2019-03-28 11:52:09 +00:00
|
|
|
def update_notificaton_settings(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
with {:ok, _} <- User.update_notification_settings(user, params) do
|
|
|
|
json(conn, %{status: "success"})
|
|
|
|
end
|
2017-10-19 19:51:56 +00:00
|
|
|
end
|
2017-12-12 16:35:23 +00:00
|
|
|
|
2021-08-10 17:42:03 +00:00
|
|
|
def change_password(%{assigns: %{user: user}, body_params: body_params} = conn, %{}) do
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, body_params.password) do
|
2018-05-21 21:17:34 +00:00
|
|
|
{:ok, user} ->
|
|
|
|
with {:ok, _user} <-
|
|
|
|
User.reset_password(user, %{
|
2021-08-10 17:42:03 +00:00
|
|
|
password: body_params.new_password,
|
|
|
|
password_confirmation: body_params.new_password_confirmation
|
2018-05-21 21:17:34 +00:00
|
|
|
}) do
|
|
|
|
json(conn, %{status: "success"})
|
|
|
|
else
|
|
|
|
{:error, changeset} ->
|
|
|
|
{_, {error, _}} = Enum.at(changeset.errors, 0)
|
|
|
|
json(conn, %{error: "New password #{error}."})
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
json(conn, %{error: "Unable to change password."})
|
|
|
|
end
|
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-08-10 18:33:00 +00:00
|
|
|
def change_email(%{assigns: %{user: user}, body_params: body_params} = conn, %{}) do
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, body_params.password) do
|
2019-09-13 06:09:35 +00:00
|
|
|
{:ok, user} ->
|
2021-08-10 18:33:00 +00:00
|
|
|
with {:ok, _user} <- User.change_email(user, body_params.email) do
|
2019-09-13 06:09:35 +00:00
|
|
|
json(conn, %{status: "success"})
|
|
|
|
else
|
|
|
|
{:error, changeset} ->
|
|
|
|
{_, {error, _}} = Enum.at(changeset.errors, 0)
|
|
|
|
json(conn, %{error: "Email #{error}."})
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
json(conn, %{error: "Unable to change email."})
|
|
|
|
end
|
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-12-13 21:15:33 +00:00
|
|
|
def delete_account(%{assigns: %{user: user}, body_params: body_params} = conn, params) do
|
|
|
|
# This endpoint can accept a query param or JSON body for backwards-compatibility.
|
|
|
|
# Submitting a JSON body is recommended, so passwords don't end up in server logs.
|
|
|
|
password = body_params[:password] || params[:password] || ""
|
2019-12-15 19:32:42 +00:00
|
|
|
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, password) do
|
2018-05-13 13:24:15 +00:00
|
|
|
{:ok, user} ->
|
2019-05-06 16:45:22 +00:00
|
|
|
User.delete(user)
|
2018-05-19 12:35:49 +00:00
|
|
|
json(conn, %{status: "success"})
|
2018-05-13 13:24:15 +00:00
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
end
|
|
|
|
end
|
2018-12-14 22:31:19 +00:00
|
|
|
|
2019-03-04 12:55:11 +00:00
|
|
|
def disable_account(%{assigns: %{user: user}} = conn, params) do
|
2021-02-24 22:40:33 +00:00
|
|
|
case CommonAPI.Utils.confirm_current_password(user, params[:password]) do
|
2019-03-04 12:55:11 +00:00
|
|
|
{:ok, user} ->
|
2020-10-13 22:16:03 +00:00
|
|
|
User.set_activation_async(user, false)
|
2019-03-04 12:55:11 +00:00
|
|
|
json(conn, %{status: "success"})
|
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-04 16:29:39 +00:00
|
|
|
def move_account(%{assigns: %{user: user}, body_params: body_params} = conn, %{}) do
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, body_params.password) do
|
|
|
|
{:ok, user} ->
|
|
|
|
with {:ok, target_user} <- find_or_fetch_user_by_nickname(body_params.target_account),
|
|
|
|
{:ok, _user} <- ActivityPub.move(user, target_user) do
|
|
|
|
json(conn, %{status: "success"})
|
|
|
|
else
|
|
|
|
{:not_found, _} ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Target account not found."})
|
|
|
|
|
|
|
|
{:error, error} ->
|
|
|
|
json(conn, %{error: error})
|
|
|
|
end
|
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_alias(%{assigns: %{user: user}, body_params: body_params} = conn, _) do
|
|
|
|
with {:ok, alias_user} <- find_user_by_nickname(body_params.alias),
|
|
|
|
{:ok, _user} <- user |> User.add_alias(alias_user) do
|
|
|
|
json(conn, %{status: "success"})
|
|
|
|
else
|
|
|
|
{:not_found, _} ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Target account does not exist."})
|
|
|
|
|
|
|
|
{:error, error} ->
|
|
|
|
json(conn, %{error: error})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_alias(%{assigns: %{user: user}, body_params: body_params} = conn, _) do
|
|
|
|
with {:ok, alias_user} <- find_user_by_nickname(body_params.alias),
|
|
|
|
{:ok, _user} <- user |> User.delete_alias(alias_user) do
|
|
|
|
json(conn, %{status: "success"})
|
|
|
|
else
|
|
|
|
{:error, :no_such_alias} ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Account has no such alias."})
|
|
|
|
|
|
|
|
{:error, error} ->
|
|
|
|
json(conn, %{error: error})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def list_aliases(%{assigns: %{user: user}} = conn, %{}) do
|
|
|
|
alias_nicks =
|
|
|
|
user
|
|
|
|
|> User.alias_users()
|
|
|
|
|> Enum.map(&User.full_nickname/1)
|
|
|
|
|
|
|
|
json(conn, %{aliases: alias_nicks})
|
|
|
|
end
|
|
|
|
|
|
|
|
defp find_user_by_nickname(nickname) do
|
|
|
|
user = User.get_cached_by_nickname(nickname)
|
|
|
|
|
|
|
|
if user == nil do
|
|
|
|
{:not_found, nil}
|
|
|
|
else
|
|
|
|
{:ok, user}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp find_or_fetch_user_by_nickname(nickname) do
|
|
|
|
user = User.get_by_nickname(nickname)
|
|
|
|
|
|
|
|
if user != nil and user.local do
|
|
|
|
{:ok, user}
|
|
|
|
else
|
|
|
|
with {:ok, user} <- User.fetch_by_nickname(nickname) do
|
|
|
|
{:ok, user}
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:not_found, nil}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-14 22:31:19 +00:00
|
|
|
def captcha(conn, _params) do
|
|
|
|
json(conn, Pleroma.Captcha.new())
|
|
|
|
end
|
2019-04-22 07:19:53 +00:00
|
|
|
|
|
|
|
def healthcheck(conn, _params) do
|
2019-07-19 16:20:23 +00:00
|
|
|
with true <- Config.get([:instance, :healthcheck]),
|
|
|
|
%{healthy: true} = info <- Healthcheck.system_info() do
|
|
|
|
json(conn, info)
|
|
|
|
else
|
|
|
|
%{healthy: false} = info ->
|
|
|
|
service_unavailable(conn, info)
|
2019-04-22 07:19:53 +00:00
|
|
|
|
2019-07-19 16:20:23 +00:00
|
|
|
_ ->
|
|
|
|
service_unavailable(conn, %{})
|
|
|
|
end
|
|
|
|
end
|
2019-04-22 07:19:53 +00:00
|
|
|
|
2019-07-19 16:20:23 +00:00
|
|
|
defp service_unavailable(conn, info) do
|
|
|
|
conn
|
|
|
|
|> put_status(:service_unavailable)
|
|
|
|
|> json(info)
|
2019-04-22 07:19:53 +00:00
|
|
|
end
|
2017-06-20 14:55:57 +00:00
|
|
|
end
|