2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 06:08:45 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# 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
|
2019-03-15 18:06:28 +01:00
|
|
|
alias Pleroma.Notification
|
2019-03-05 03:52:23 +01:00
|
|
|
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
|
|
|
|
2020-06-24 09:41:09 +02:00
|
|
|
plug(Pleroma.Web.Plugs.FederatingPlug when action == :remote_subscribe)
|
2020-02-22 17:48:41 +01:00
|
|
|
|
2019-09-15 17:22:08 +02:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:accounts"]}
|
|
|
|
when action in [
|
2019-09-15 17:52:27 +02:00
|
|
|
:change_email,
|
2019-09-15 17:22:08 +02:00
|
|
|
:change_password,
|
|
|
|
:delete_account,
|
|
|
|
:update_notificaton_settings,
|
|
|
|
:disable_account
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["write:notifications"]} when action == :notifications_read)
|
|
|
|
|
2018-02-01 23:00:48 +01:00
|
|
|
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
|
2018-02-01 23:00:48 +01:00
|
|
|
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"
|
|
|
|
})
|
2018-02-01 23:00:48 +01:00
|
|
|
end
|
|
|
|
end
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2018-02-01 23:00:48 +01: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."
|
|
|
|
})
|
2018-02-01 23:00:48 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-15 18:06:28 +01:00
|
|
|
def notifications_read(%{assigns: %{user: user}} = conn, %{"id" => notification_id}) do
|
|
|
|
with {:ok, _} <- Notification.read_one(user, notification_id) do
|
|
|
|
json(conn, %{status: "success"})
|
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-23 12:40:57 +01:00
|
|
|
def frontend_configurations(conn, _params) do
|
2020-10-13 01:49:37 +02:00
|
|
|
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
|
2019-04-01 12:17:57 +02:00
|
|
|
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})
|
2019-04-01 12:17:57 +02:00
|
|
|
end)
|
|
|
|
|
|
|
|
json(conn, emoji)
|
2017-10-19 21:51:56 +02:00
|
|
|
end
|
2017-12-12 17:35:23 +01:00
|
|
|
|
2019-03-28 12:52:09 +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
|
|
|
|
2018-05-21 23:17:34 +02:00
|
|
|
def change_password(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, params["password"]) do
|
|
|
|
{:ok, user} ->
|
|
|
|
with {:ok, _user} <-
|
|
|
|
User.reset_password(user, %{
|
|
|
|
password: params["new_password"],
|
|
|
|
password_confirmation: params["new_password_confirmation"]
|
|
|
|
}) 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
|
|
|
|
|
2019-09-13 08:09:35 +02:00
|
|
|
def change_email(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, params["password"]) do
|
|
|
|
{:ok, user} ->
|
|
|
|
with {:ok, _user} <- User.change_email(user, params["email"]) do
|
|
|
|
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
|
|
|
|
|
2018-05-13 15:24:15 +02:00
|
|
|
def delete_account(%{assigns: %{user: user}} = conn, params) do
|
2019-12-15 20:32:42 +01:00
|
|
|
password = params["password"] || ""
|
|
|
|
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, password) do
|
2018-05-13 15:24:15 +02:00
|
|
|
{:ok, user} ->
|
2019-05-06 18:45:22 +02:00
|
|
|
User.delete(user)
|
2018-05-19 14:35:49 +02:00
|
|
|
json(conn, %{status: "success"})
|
2018-05-13 15:24:15 +02:00
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
end
|
|
|
|
end
|
2018-12-14 23:31:19 +01:00
|
|
|
|
2019-03-04 13:55:11 +01:00
|
|
|
def disable_account(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, params["password"]) do
|
|
|
|
{:ok, user} ->
|
2019-04-11 12:22:42 +02:00
|
|
|
User.deactivate_async(user)
|
2019-03-04 13:55:11 +01:00
|
|
|
json(conn, %{status: "success"})
|
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-14 23:31:19 +01:00
|
|
|
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
|