2020-10-27 15:20:04 +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-10-27 15:20:04 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.AdminAPI.FrontendController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.Config
|
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
|
|
|
|
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2021-02-17 18:37:23 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["admin:write"]} when action == :install)
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["admin:read"]} when action == :index)
|
2020-10-27 15:20:04 +00:00
|
|
|
action_fallback(Pleroma.Web.AdminAPI.FallbackController)
|
|
|
|
|
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.Admin.FrontendOperation
|
|
|
|
|
|
|
|
def index(conn, _params) do
|
|
|
|
installed = installed()
|
|
|
|
|
|
|
|
frontends =
|
|
|
|
[:frontends, :available]
|
|
|
|
|> Config.get([])
|
|
|
|
|> Enum.map(fn {name, desc} ->
|
|
|
|
Map.put(desc, "installed", name in installed)
|
|
|
|
end)
|
|
|
|
|
|
|
|
render(conn, "index.json", frontends: frontends)
|
|
|
|
end
|
|
|
|
|
|
|
|
def install(%{body_params: params} = conn, _params) do
|
2020-11-17 15:43:07 +00:00
|
|
|
with :ok <- Pleroma.Frontend.install(params.name, Map.delete(params, :name)) do
|
|
|
|
index(conn, %{})
|
|
|
|
end
|
2020-10-27 15:20:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp installed do
|
2021-08-14 18:42:12 +00:00
|
|
|
frontend_directory = Pleroma.Frontend.dir()
|
|
|
|
|
|
|
|
if File.exists?(frontend_directory) do
|
|
|
|
File.ls!(frontend_directory)
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
2020-10-27 15:20:04 +00:00
|
|
|
end
|
|
|
|
end
|