2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 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
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
alias Comeonin.Pbkdf2
|
2019-04-01 16:27:02 +00:00
|
|
|
alias Pleroma.Activity
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Emoji
|
2019-03-15 17:06:28 +00:00
|
|
|
alias Pleroma.Notification
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.PasswordResetToken
|
|
|
|
alias Pleroma.Repo
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2017-06-20 14:55:57 +00:00
|
|
|
alias Pleroma.Web
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2018-01-18 16:42:44 +00:00
|
|
|
alias Pleroma.Web.OStatus
|
2018-02-01 22:00:48 +00:00
|
|
|
alias Pleroma.Web.WebFinger
|
2017-10-19 15:37:24 +00:00
|
|
|
|
|
|
|
def show_password_reset(conn, %{"token" => token}) do
|
|
|
|
with %{used: false} = token <- Repo.get_by(PasswordResetToken, %{token: token}),
|
2019-04-22 07:20:43 +00:00
|
|
|
%User{} = user <- User.get_cached_by_id(token.user_id) do
|
2018-03-30 13:01:53 +00:00
|
|
|
render(conn, "password_reset.html", %{
|
2017-10-19 15:37:24 +00:00
|
|
|
token: token,
|
|
|
|
user: user
|
2018-03-30 13:01:53 +00:00
|
|
|
})
|
2017-10-19 15:37:24 +00:00
|
|
|
else
|
2018-03-30 13:01:53 +00:00
|
|
|
_e -> render(conn, "invalid_token.html")
|
2017-10-19 15:37:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def password_reset(conn, %{"data" => data}) do
|
|
|
|
with {:ok, _} <- PasswordResetToken.reset_password(data["token"], data) do
|
2018-03-30 13:01:53 +00:00
|
|
|
render(conn, "password_reset_success.html")
|
2017-10-19 15:37:24 +00:00
|
|
|
else
|
2018-03-30 13:01:53 +00:00
|
|
|
_e -> render(conn, "password_reset_failed.html")
|
2017-10-19 15:37:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-20 14:55:57 +00:00
|
|
|
def help_test(conn, _params) do
|
|
|
|
json(conn, "ok")
|
|
|
|
end
|
|
|
|
|
2018-02-01 22:00:48 +00:00
|
|
|
def remote_subscribe(conn, %{"nickname" => nick, "profile" => _}) do
|
2018-03-30 13:01:53 +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
|
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
def remote_follow(%{assigns: %{user: user}} = conn, %{"acct" => acct}) do
|
2019-04-02 06:30:41 +00:00
|
|
|
if is_status?(acct) do
|
2019-04-17 09:22:32 +00:00
|
|
|
{:ok, object} = Pleroma.Object.Fetcher.fetch_object_from_id(acct)
|
2019-04-02 06:30:41 +00:00
|
|
|
%Activity{id: activity_id} = Activity.get_create_by_object_ap_id(object.data["id"])
|
|
|
|
redirect(conn, to: "/notice/#{activity_id}")
|
2018-01-18 16:42:44 +00:00
|
|
|
else
|
2019-04-02 06:30:41 +00:00
|
|
|
{err, followee} = OStatus.find_or_make_user(acct)
|
|
|
|
avatar = User.avatar_url(followee)
|
|
|
|
name = followee.nickname
|
|
|
|
id = followee.id
|
2019-04-01 16:27:02 +00:00
|
|
|
|
2019-04-02 06:30:41 +00:00
|
|
|
if !!user do
|
|
|
|
conn
|
|
|
|
|> render("follow.html", %{error: err, acct: acct, avatar: avatar, name: name, id: id})
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
|> render("follow_login.html", %{
|
|
|
|
error: false,
|
|
|
|
acct: acct,
|
|
|
|
avatar: avatar,
|
|
|
|
name: name,
|
|
|
|
id: id
|
|
|
|
})
|
|
|
|
end
|
2018-01-18 16:42:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-01 16:27:02 +00:00
|
|
|
defp is_status?(acct) do
|
2019-04-17 09:22:32 +00:00
|
|
|
case Pleroma.Object.Fetcher.fetch_and_contain_remote_object_from_id(acct) do
|
2019-04-02 06:30:41 +00:00
|
|
|
{:ok, %{"type" => type}} when type in ["Article", "Note", "Video", "Page", "Question"] ->
|
|
|
|
true
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
false
|
2018-01-18 16:42:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def do_remote_follow(conn, %{
|
|
|
|
"authorization" => %{"name" => username, "password" => password, "id" => id}
|
|
|
|
}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
followee = User.get_cached_by_id(id)
|
2018-01-18 16:42:44 +00:00
|
|
|
avatar = User.avatar_url(followee)
|
|
|
|
name = followee.nickname
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_nickname(username),
|
|
|
|
true <- Pbkdf2.checkpw(password, user.password_hash),
|
2019-04-22 07:20:43 +00:00
|
|
|
%User{} = _followed <- User.get_cached_by_id(id),
|
2018-01-18 16:42:44 +00:00
|
|
|
{:ok, follower} <- User.follow(user, followee),
|
|
|
|
{:ok, _activity} <- ActivityPub.follow(follower, followee) do
|
|
|
|
conn
|
|
|
|
|> render("followed.html", %{error: false})
|
|
|
|
else
|
2018-08-09 17:47:29 +00:00
|
|
|
# Was already following user
|
|
|
|
{:error, "Could not follow user:" <> _rest} ->
|
|
|
|
render(conn, "followed.html", %{error: false})
|
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
_e ->
|
|
|
|
conn
|
2018-03-30 13:01:53 +00:00
|
|
|
|> render("follow_login.html", %{
|
|
|
|
error: "Wrong username or password",
|
|
|
|
id: id,
|
|
|
|
name: name,
|
|
|
|
avatar: avatar
|
|
|
|
})
|
2018-01-18 16:42:44 +00:00
|
|
|
end
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
def do_remote_follow(%{assigns: %{user: user}} = conn, %{"user" => %{"id" => id}}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = followee <- User.get_cached_by_id(id),
|
2018-01-18 16:42:44 +00:00
|
|
|
{:ok, follower} <- User.follow(user, followee),
|
|
|
|
{:ok, _activity} <- ActivityPub.follow(follower, followee) do
|
|
|
|
conn
|
|
|
|
|> render("followed.html", %{error: false})
|
|
|
|
else
|
2018-08-09 17:47:29 +00:00
|
|
|
# Was already following user
|
|
|
|
{:error, "Could not follow user:" <> _rest} ->
|
|
|
|
conn
|
|
|
|
|> render("followed.html", %{error: false})
|
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
e ->
|
2018-03-30 13:01:53 +00:00
|
|
|
Logger.debug("Remote follow failed with error #{inspect(e)}")
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> render("followed.html", %{error: inspect(e)})
|
2018-01-18 16:42:44 +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
|
|
|
|
|
2017-06-20 14:55:57 +00:00
|
|
|
def config(conn, _params) do
|
2018-11-06 18:34:57 +00:00
|
|
|
instance = Pleroma.Config.get(:instance)
|
|
|
|
instance_fe = Pleroma.Config.get(:fe)
|
|
|
|
instance_chat = Pleroma.Config.get(:chat)
|
|
|
|
|
2017-08-24 12:07:05 +00:00
|
|
|
case get_format(conn) do
|
|
|
|
"xml" ->
|
|
|
|
response = """
|
|
|
|
<config>
|
|
|
|
<site>
|
2018-11-06 18:34:57 +00:00
|
|
|
<name>#{Keyword.get(instance, :name)}</name>
|
2018-03-30 13:01:53 +00:00
|
|
|
<site>#{Web.base_url()}</site>
|
2018-11-06 18:34:57 +00:00
|
|
|
<textlimit>#{Keyword.get(instance, :limit)}</textlimit>
|
|
|
|
<closed>#{!Keyword.get(instance, :registrations_open)}</closed>
|
2017-08-24 12:07:05 +00:00
|
|
|
</site>
|
|
|
|
</config>
|
|
|
|
"""
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-08-24 12:07:05 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/xml")
|
|
|
|
|> send_resp(200, response)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-08-24 12:07:05 +00:00
|
|
|
_ ->
|
2018-12-09 12:45:21 +00:00
|
|
|
vapid_public_key = Keyword.get(Pleroma.Web.Push.vapid_config(), :public_key)
|
2018-12-06 12:29:04 +00:00
|
|
|
|
2018-12-08 20:48:49 +00:00
|
|
|
uploadlimit = %{
|
|
|
|
uploadlimit: to_string(Keyword.get(instance, :upload_limit)),
|
|
|
|
avatarlimit: to_string(Keyword.get(instance, :avatar_upload_limit)),
|
|
|
|
backgroundlimit: to_string(Keyword.get(instance, :background_upload_limit)),
|
|
|
|
bannerlimit: to_string(Keyword.get(instance, :banner_upload_limit))
|
|
|
|
}
|
|
|
|
|
2018-09-01 21:03:35 +00:00
|
|
|
data = %{
|
2018-11-06 18:34:57 +00:00
|
|
|
name: Keyword.get(instance, :name),
|
|
|
|
description: Keyword.get(instance, :description),
|
2018-09-01 21:03:35 +00:00
|
|
|
server: Web.base_url(),
|
2018-11-06 18:34:57 +00:00
|
|
|
textlimit: to_string(Keyword.get(instance, :limit)),
|
2018-12-08 20:48:49 +00:00
|
|
|
uploadlimit: uploadlimit,
|
2018-11-06 18:34:57 +00:00
|
|
|
closed: if(Keyword.get(instance, :registrations_open), do: "0", else: "1"),
|
2018-12-06 12:55:58 +00:00
|
|
|
private: if(Keyword.get(instance, :public, true), do: "0", else: "1"),
|
2018-12-14 09:37:06 +00:00
|
|
|
vapidPublicKey: vapid_public_key,
|
2018-12-17 14:28:58 +00:00
|
|
|
accountActivationRequired:
|
|
|
|
if(Keyword.get(instance, :account_activation_required, false), do: "1", else: "0"),
|
2019-03-21 15:16:26 +00:00
|
|
|
invitesEnabled: if(Keyword.get(instance, :invites_enabled, false), do: "1", else: "0"),
|
|
|
|
safeDMMentionsEnabled:
|
|
|
|
if(Pleroma.Config.get([:instance, :safe_dm_mentions]), do: "1", else: "0")
|
2018-09-01 21:03:35 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 12:07:12 +00:00
|
|
|
pleroma_fe =
|
|
|
|
if instance_fe do
|
|
|
|
%{
|
|
|
|
theme: Keyword.get(instance_fe, :theme),
|
|
|
|
background: Keyword.get(instance_fe, :background),
|
|
|
|
logo: Keyword.get(instance_fe, :logo),
|
|
|
|
logoMask: Keyword.get(instance_fe, :logo_mask),
|
|
|
|
logoMargin: Keyword.get(instance_fe, :logo_margin),
|
|
|
|
redirectRootNoLogin: Keyword.get(instance_fe, :redirect_root_no_login),
|
|
|
|
redirectRootLogin: Keyword.get(instance_fe, :redirect_root_login),
|
|
|
|
chatDisabled: !Keyword.get(instance_chat, :enabled),
|
|
|
|
showInstanceSpecificPanel: Keyword.get(instance_fe, :show_instance_panel),
|
|
|
|
scopeOptionsEnabled: Keyword.get(instance_fe, :scope_options_enabled),
|
|
|
|
formattingOptionsEnabled: Keyword.get(instance_fe, :formatting_options_enabled),
|
|
|
|
collapseMessageWithSubject:
|
|
|
|
Keyword.get(instance_fe, :collapse_message_with_subject),
|
|
|
|
hidePostStats: Keyword.get(instance_fe, :hide_post_stats),
|
|
|
|
hideUserStats: Keyword.get(instance_fe, :hide_user_stats),
|
|
|
|
scopeCopy: Keyword.get(instance_fe, :scope_copy),
|
|
|
|
subjectLineBehavior: Keyword.get(instance_fe, :subject_line_behavior),
|
|
|
|
alwaysShowSubjectInput: Keyword.get(instance_fe, :always_show_subject_input)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Pleroma.Config.get([:frontend_configurations, :pleroma_fe])
|
|
|
|
end
|
2018-09-01 21:03:35 +00:00
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
managed_config = Keyword.get(instance, :managed_config)
|
2018-09-01 21:12:42 +00:00
|
|
|
|
2018-09-01 21:03:35 +00:00
|
|
|
data =
|
|
|
|
if managed_config do
|
|
|
|
data |> Map.put("pleromafe", pleroma_fe)
|
|
|
|
else
|
|
|
|
data
|
|
|
|
end
|
|
|
|
|
|
|
|
json(conn, %{site: data})
|
2017-08-24 12:07:05 +00:00
|
|
|
end
|
|
|
|
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-08-24 12:07:05 +00:00
|
|
|
def version(conn, _params) do
|
2018-11-20 16:55:03 +00:00
|
|
|
version = Pleroma.Application.named_version()
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-08-24 12:07:05 +00:00
|
|
|
case get_format(conn) do
|
|
|
|
"xml" ->
|
2017-09-15 12:17:36 +00:00
|
|
|
response = "<version>#{version}</version>"
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-08-24 12:07:05 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/xml")
|
|
|
|
|> send_resp(200, response)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
_ ->
|
|
|
|
json(conn, version)
|
2017-08-24 12:07:05 +00:00
|
|
|
end
|
2017-06-20 14:55: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 =
|
|
|
|
Emoji.get_all()
|
|
|
|
|> Enum.map(fn {short_code, path, tags} ->
|
2019-04-18 18:17:52 +00:00
|
|
|
{short_code, %{image_url: path, tags: tags}}
|
2019-04-01 10:17:57 +00:00
|
|
|
end)
|
2019-04-09 20:20:31 +00:00
|
|
|
|> Enum.into(%{})
|
2019-04-01 10:17:57 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
|> List.delete("Account address"),
|
2018-12-29 09:02:37 +00:00
|
|
|
{:ok, _} = Task.start(fn -> User.follow_import(follower, followed_identifiers) end) do
|
|
|
|
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
|
2017-12-12 16:35:23 +00:00
|
|
|
|
2018-12-29 09:02:37 +00:00
|
|
|
def blocks_import(%{assigns: %{user: blocker}} = conn, %{"list" => list}) do
|
|
|
|
with blocked_identifiers <- String.split(list),
|
|
|
|
{:ok, _} = Task.start(fn -> User.blocks_import(blocker, blocked_identifiers) end) do
|
|
|
|
json(conn, "job started")
|
|
|
|
end
|
2017-12-12 16:35:23 +00:00
|
|
|
end
|
2018-05-13 13:24:15 +00:00
|
|
|
|
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
|
|
|
|
|
2018-05-13 13:24:15 +00:00
|
|
|
def delete_account(%{assigns: %{user: user}} = conn, params) do
|
2018-05-21 21:17:34 +00:00
|
|
|
case CommonAPI.Utils.confirm_current_password(user, params["password"]) do
|
2018-05-13 13:24:15 +00:00
|
|
|
{:ok, user} ->
|
2018-05-19 12:35:49 +00:00
|
|
|
Task.start(fn -> User.delete(user) end)
|
|
|
|
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
|
|
|
|
|
|
|
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-04-22 10:00:06 +00:00
|
|
|
info =
|
|
|
|
if Pleroma.Config.get([:instance, :healthcheck]) do
|
|
|
|
Pleroma.Healthcheck.system_info()
|
|
|
|
else
|
|
|
|
%{}
|
|
|
|
end
|
2019-04-22 07:19:53 +00:00
|
|
|
|
|
|
|
conn =
|
2019-04-22 10:00:06 +00:00
|
|
|
if info[:healthy] do
|
2019-04-22 07:19:53 +00:00
|
|
|
conn
|
|
|
|
else
|
|
|
|
Plug.Conn.put_status(conn, :service_unavailable)
|
|
|
|
end
|
|
|
|
|
|
|
|
json(conn, info)
|
|
|
|
end
|
2017-06-20 14:55:57 +00:00
|
|
|
end
|