pleroma/lib/pleroma/web/pleroma_api/controllers/backup_controller.ex

29 lines
950 B
Elixir
Raw Normal View History

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