pleroma/lib/pleroma/web/twitter_api/controllers/util_controller.ex

173 lines
4.9 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-06-20 16:55:57 +02:00
defmodule Pleroma.Web.TwitterAPI.UtilController do
use Pleroma.Web, :controller
2019-02-06 20:20:02 +01:00
2017-12-12 20:04:41 +01:00
require Logger
2019-02-06 20:20:02 +01:00
2019-07-19 18:20:23 +02:00
alias Pleroma.Config
2019-02-09 16:16:26 +01:00
alias Pleroma.Emoji
2019-07-19 18:20:23 +02:00
alias Pleroma.Healthcheck
alias Pleroma.User
2019-02-09 16:16:26 +01:00
alias Pleroma.Web.CommonAPI
2020-06-24 12:07:47 +02:00
alias Pleroma.Web.Plugs.OAuthScopesPlug
2019-02-09 16:16:26 +01:00
alias Pleroma.Web.WebFinger
2017-10-19 17:37:24 +02:00
2021-02-24 23:40:33 +01:00
plug(Pleroma.Web.ApiSpec.CastAndValidate when action != :remote_subscribe)
2020-06-24 09:41:09 +02:00
plug(Pleroma.Web.Plugs.FederatingPlug when action == :remote_subscribe)
plug(
OAuthScopesPlug,
%{scopes: ["write:accounts"]}
when action in [
:change_email,
:change_password,
:delete_account,
:update_notificaton_settings,
:disable_account
]
)
2021-02-24 23:40:33 +01:00
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.TwitterUtilOperation
def remote_subscribe(conn, %{"nickname" => nick, "profile" => _}) do
2019-07-19 18:20:23 +02:00
with %User{} = user <- User.get_cached_by_nickname(nick),
avatar = User.avatar_url(user) do
conn
|> render("subscribe.html", %{nickname: nick, avatar: avatar, error: false})
else
2018-03-30 15:01:53 +02:00
_e ->
render(conn, "subscribe.html", %{
nickname: nick,
avatar: nil,
error: "Could not find user"
})
end
end
2018-03-30 15:01:53 +02: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 15:01:53 +02:00
render(conn, "subscribe.html", %{
nickname: nick,
avatar: nil,
error: "Something went wrong."
})
end
end
2019-01-23 12:40:57 +01:00
def frontend_configurations(conn, _params) do
render(conn, "frontend_configurations.json")
2019-01-23 12:40:57 +01:00
end
2017-10-19 21:51:56 +02:00
def emoji(conn, _params) do
emoji =
2019-08-31 09:14:53 +02:00
Enum.reduce(Emoji.get_all(), %{}, fn {code, %Emoji{file: file, tags: tags}}, acc ->
Map.put(acc, code, %{image_url: file, tags: tags})
end)
json(conn, emoji)
2017-10-19 21:51:56 +02:00
end
2017-12-12 17:35:23 +01: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 21:51:56 +02:00
end
2017-12-12 17:35:23 +01: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 23:17:34 +02:00
{:ok, user} ->
with {:ok, _user} <-
User.reset_password(user, %{
password: body_params.new_password,
password_confirmation: body_params.new_password_confirmation
2018-05-21 23:17:34 +02: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
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 08:09:35 +02:00
{:ok, user} ->
with {:ok, _user} <- User.change_email(user, body_params.email) do
2019-09-13 08:09:35 +02: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
def delete_account(%{assigns: %{user: user}} = conn, params) do
2021-02-24 23:40:33 +01:00
password = params[:password] || ""
case CommonAPI.Utils.confirm_current_password(user, password) do
{:ok, user} ->
User.delete(user)
json(conn, %{status: "success"})
{:error, msg} ->
json(conn, %{error: msg})
end
end
def disable_account(%{assigns: %{user: user}} = conn, params) do
2021-02-24 23:40:33 +01:00
case CommonAPI.Utils.confirm_current_password(user, params[:password]) do
{:ok, user} ->
User.set_activation_async(user, false)
json(conn, %{status: "success"})
{:error, msg} ->
json(conn, %{error: msg})
end
end
def captcha(conn, _params) do
json(conn, Pleroma.Captcha.new())
end
2019-04-22 09:19:53 +02:00
def healthcheck(conn, _params) do
2019-07-19 18:20:23 +02: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 09:19:53 +02:00
2019-07-19 18:20:23 +02:00
_ ->
service_unavailable(conn, %{})
end
end
2019-04-22 09:19:53 +02:00
2019-07-19 18:20:23 +02:00
defp service_unavailable(conn, info) do
conn
|> put_status(:service_unavailable)
|> json(info)
2019-04-22 09:19:53 +02:00
end
2017-06-20 16:55:57 +02:00
end