1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.MastodonAPI.AppController do
6 use Pleroma.Web, :controller
9 alias Pleroma.Web.OAuth.App
10 alias Pleroma.Web.OAuth.Scopes
11 alias Pleroma.Web.OAuth.Token
12 alias Pleroma.Web.Plugs.EnsurePublicOrAuthenticatedPlug
13 alias Pleroma.Web.Plugs.OAuthScopesPlug
15 action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
19 [OAuthScopesPlug, EnsurePublicOrAuthenticatedPlug]
20 when action == :create
23 plug(OAuthScopesPlug, %{scopes: ["read"]} when action == :verify_credentials)
25 plug(Pleroma.Web.ApiSpec.CastAndValidate)
27 @local_mastodon_name "Mastodon-Local"
29 defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.AppOperation
31 @doc "POST /api/v1/apps"
32 def create(%{body_params: params} = conn, _params) do
33 scopes = Scopes.fetch_scopes(params, ["read"])
37 |> Map.take([:client_name, :redirect_uris, :website])
38 |> Map.put(:scopes, scopes)
40 with cs <- App.register_changeset(%App{}, app_attrs),
41 false <- cs.changes[:client_name] == @local_mastodon_name,
42 {:ok, app} <- Repo.insert(cs) do
43 render(conn, "show.json", app: app)
47 @doc "GET /api/v1/apps/verify_credentials"
48 def verify_credentials(%{assigns: %{user: _user, token: token}} = conn, _) do
49 with %Token{app: %App{} = app} <- Repo.preload(token, :app) do
50 render(conn, "short.json", app: app)