2020-09-08 21:04:00 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-09-08 21:04:00 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.BackupController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2020-10-20 13:16:58 +00:00
|
|
|
alias Pleroma.User.Backup
|
2020-10-20 13:47:04 +00:00
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
2020-09-08 21:04:00 +00:00
|
|
|
|
|
|
|
action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:accounts"]} when action in [:index, :create])
|
2021-03-05 11:51:29 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2020-09-08 21:04:00 +00:00
|
|
|
|
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaBackupOperation
|
|
|
|
|
|
|
|
def index(%{assigns: %{user: user}} = conn, _params) do
|
2020-10-20 13:16:58 +00:00
|
|
|
backups = Backup.list(user)
|
2020-09-08 21:04:00 +00:00
|
|
|
render(conn, "index.json", backups: backups)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create(%{assigns: %{user: user}} = conn, _params) do
|
2020-10-20 13:16:58 +00:00
|
|
|
with {:ok, _} <- Backup.create(user) do
|
|
|
|
backups = Backup.list(user)
|
2020-09-08 21:04:00 +00:00
|
|
|
render(conn, "index.json", backups: backups)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|