2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 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
|
|
|
|
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-15 17:06:28 +00:00
|
|
|
alias Pleroma.Notification
|
2019-09-08 12:00:03 +00:00
|
|
|
alias Pleroma.Plugs.OAuthScopesPlug
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
alias Pleroma.Web.WebFinger
|
2017-10-19 15:37:24 +00:00
|
|
|
|
2020-02-22 16:48:41 +00:00
|
|
|
plug(Pleroma.Web.FederatingPlug when action == :remote_subscribe)
|
|
|
|
|
2019-09-08 12:00:03 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["follow", "write:follows"]}
|
2019-12-15 19:32:42 +00:00
|
|
|
when action == :follow_import
|
|
|
|
)
|
|
|
|
|
|
|
|
# Note: follower can submit the form (with password auth) not being signed in (having no token)
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{fallback: :proceed_unauthenticated, scopes: ["follow", "write:follows"]}
|
|
|
|
when action == :do_remote_follow
|
2019-09-08 12:00:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["follow", "write:blocks"]} when action == :blocks_import)
|
|
|
|
|
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,
|
|
|
|
:disable_account
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["write:notifications"]} when action == :notifications_read)
|
|
|
|
|
2018-02-01 22:00:48 +00:00
|
|
|
def remote_subscribe(conn, %{"nickname" => nick, "profile" => _}) 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,
|
|
|
|
error: "Could not find user"
|
|
|
|
})
|
2018-02-01 22:00:48 +00:00
|
|
|
end
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
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,
|
|
|
|
error: "Something went wrong."
|
|
|
|
})
|
2018-02-01 22:00:48 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-15 17:06:28 +00: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
|
|
|
|
|
2020-03-26 13:59:45 +00:00
|
|
|
# Deprecated in favor of `/nodeinfo`
|
|
|
|
# https://git.pleroma.social/pleroma/pleroma/-/merge_requests/2327
|
|
|
|
# https://git.pleroma.social/pleroma/pleroma-fe/-/merge_requests/1084
|
|
|
|
def config(conn, _params) do
|
|
|
|
json(conn, %{
|
|
|
|
site: %{
|
|
|
|
textlimit: to_string(Config.get([:instance, :limit])),
|
|
|
|
vapidPublicKey: Keyword.get(Pleroma.Web.Push.vapid_config(), :public_key)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2019-01-23 11:40:57 +00:00
|
|
|
def frontend_configurations(conn, _params) do
|
|
|
|
config =
|
|
|
|
Pleroma.Config.get(:frontend_configurations, %{})
|
|
|
|
|> Enum.into(%{})
|
|
|
|
|
|
|
|
json(conn, config)
|
|
|
|
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
|
|
|
|
2017-12-12 19:03:28 +00:00
|
|
|
def follow_import(conn, %{"list" => %Plug.Upload{} = listfile}) do
|
|
|
|
follow_import(conn, %{"list" => File.read!(listfile.path)})
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-12-29 09:02:37 +00:00
|
|
|
def follow_import(%{assigns: %{user: follower}} = conn, %{"list" => list}) do
|
2019-04-16 18:35:38 +00:00
|
|
|
with lines <- String.split(list, "\n"),
|
|
|
|
followed_identifiers <-
|
|
|
|
Enum.map(lines, fn line ->
|
|
|
|
String.split(line, ",") |> List.first()
|
|
|
|
end)
|
2019-05-14 15:07:38 +00:00
|
|
|
|> List.delete("Account address") do
|
2019-08-13 17:20:26 +00:00
|
|
|
User.follow_import(follower, followed_identifiers)
|
2018-12-29 09:02:37 +00:00
|
|
|
json(conn, "job started")
|
|
|
|
end
|
2017-12-12 16:35:23 +00:00
|
|
|
end
|
2018-05-13 13:24:15 +00:00
|
|
|
|
2018-12-28 20:01:03 +00:00
|
|
|
def blocks_import(conn, %{"list" => %Plug.Upload{} = listfile}) do
|
|
|
|
blocks_import(conn, %{"list" => File.read!(listfile.path)})
|
|
|
|
end
|
|
|
|
|
2018-12-29 09:02:37 +00:00
|
|
|
def blocks_import(%{assigns: %{user: blocker}} = conn, %{"list" => list}) do
|
2019-05-14 15:07:38 +00:00
|
|
|
with blocked_identifiers <- String.split(list) do
|
2019-08-13 17:20:26 +00:00
|
|
|
User.blocks_import(blocker, blocked_identifiers)
|
2018-12-29 09:02:37 +00:00
|
|
|
json(conn, "job started")
|
|
|
|
end
|
2018-12-28 20:01:03 +00:00
|
|
|
end
|
|
|
|
|
2018-05-21 21:17:34 +00: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 06:09:35 +00: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 13:24:15 +00:00
|
|
|
def delete_account(%{assigns: %{user: user}} = conn, params) do
|
2019-12-15 19:32:42 +00:00
|
|
|
password = params["password"] || ""
|
|
|
|
|
|
|
|
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
|
|
|
|
case CommonAPI.Utils.confirm_current_password(user, params["password"]) do
|
|
|
|
{:ok, user} ->
|
2019-04-11 10:22:42 +00:00
|
|
|
User.deactivate_async(user)
|
2019-03-04 12:55:11 +00:00
|
|
|
json(conn, %{status: "success"})
|
|
|
|
|
|
|
|
{:error, msg} ->
|
|
|
|
json(conn, %{error: msg})
|
|
|
|
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
|