2019-03-26 18:42:03 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-03-26 18:42:03 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.AppView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
alias Pleroma.Web.OAuth.App
|
|
|
|
|
2020-02-28 08:16:40 +00:00
|
|
|
def render("index.json", %{apps: apps, count: count, page_size: page_size, admin: true}) do
|
|
|
|
%{
|
|
|
|
apps: render_many(apps, Pleroma.Web.MastodonAPI.AppView, "show.json", %{admin: true}),
|
|
|
|
count: count,
|
|
|
|
page_size: page_size
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("show.json", %{admin: true, app: %App{} = app} = assigns) do
|
|
|
|
"show.json"
|
|
|
|
|> render(Map.delete(assigns, :admin))
|
|
|
|
|> Map.put(:trusted, app.trusted)
|
|
|
|
|> Map.put(:id, app.id)
|
|
|
|
end
|
|
|
|
|
2019-03-26 20:21:31 +00:00
|
|
|
def render("show.json", %{app: %App{} = app}) do
|
|
|
|
%{
|
|
|
|
id: app.id |> to_string,
|
|
|
|
name: app.client_name,
|
|
|
|
client_id: app.client_id,
|
|
|
|
client_secret: app.client_secret,
|
|
|
|
redirect_uri: app.redirect_uris,
|
|
|
|
website: app.website
|
|
|
|
}
|
|
|
|
|> with_vapid_key()
|
|
|
|
end
|
|
|
|
|
2021-02-11 12:02:50 +00:00
|
|
|
def render("compact_non_secret.json", %{app: %App{website: website, client_name: name}}) do
|
2019-03-26 20:21:31 +00:00
|
|
|
%{
|
2019-03-26 18:42:03 +00:00
|
|
|
name: name,
|
2021-02-11 12:02:50 +00:00
|
|
|
website: website
|
2019-03-26 18:42:03 +00:00
|
|
|
}
|
2019-03-26 20:21:31 +00:00
|
|
|
|> with_vapid_key()
|
|
|
|
end
|
2019-03-26 18:42:03 +00:00
|
|
|
|
2019-03-26 20:21:31 +00:00
|
|
|
defp with_vapid_key(data) do
|
2020-01-25 07:39:10 +00:00
|
|
|
vapid_key = Application.get_env(:web_push_encryption, :vapid_details, [])[:public_key]
|
|
|
|
|
2020-06-05 14:48:02 +00:00
|
|
|
Pleroma.Maps.put_if_present(data, "vapid_key", vapid_key)
|
2019-03-26 18:42:03 +00:00
|
|
|
end
|
|
|
|
end
|