mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
29 lines
995 B
Elixir
29 lines
995 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.BackupController do
|
|
use Pleroma.Web, :controller
|
|
|
|
alias Pleroma.User.Backup
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
|
|
|
action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
|
|
plug(OAuthScopesPlug, %{scopes: ["read:accounts"]} when action in [:index, :create])
|
|
plug(OpenApiSpex.Plug.CastAndValidate, render_error: Pleroma.Web.ApiSpec.RenderError)
|
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaBackupOperation
|
|
|
|
def index(%{assigns: %{user: user}} = conn, _params) do
|
|
backups = Backup.list(user)
|
|
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)
|
|
render(conn, "index.json", backups: backups)
|
|
end
|
|
end
|
|
end
|