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

188 lines
5.3 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 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.Notification
alias Pleroma.Plugs.OAuthScopesPlug
alias Pleroma.User
2019-02-09 16:16:26 +01:00
alias Pleroma.Web.CommonAPI
alias Pleroma.Web.WebFinger
2017-10-19 17:37:24 +02:00
plug(Pleroma.Web.FederatingPlug when action == :remote_subscribe)
plug(
OAuthScopesPlug,
%{scopes: ["write:accounts"]}
when action in [
:change_email,
:change_password,
:delete_account,
:update_notificaton_settings,
:disable_account
]
)
plug(OAuthScopesPlug, %{scopes: ["write:notifications"]} when action == :notifications_read)
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
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
config =
2020-07-09 17:53:51 +02:00
Config.get(:frontend_configurations, %{})
2019-01-23 12:40:57 +01:00
|> Enum.into(%{})
json(conn, config)
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
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
def delete_account(%{assigns: %{user: user}} = conn, params) do
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
case CommonAPI.Utils.confirm_current_password(user, params["password"]) do
{:ok, user} ->
2019-04-11 12:22:42 +02:00
User.deactivate_async(user)
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