aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/oauth/oauth_controller.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pleroma/web/oauth/oauth_controller.ex')
-rw-r--r--lib/pleroma/web/oauth/oauth_controller.ex46
1 files changed, 21 insertions, 25 deletions
diff --git a/lib/pleroma/web/oauth/oauth_controller.ex b/lib/pleroma/web/oauth/oauth_controller.ex
index d8d3ea5b4..fe2c958c9 100644
--- a/lib/pleroma/web/oauth/oauth_controller.ex
+++ b/lib/pleroma/web/oauth/oauth_controller.ex
@@ -17,20 +17,15 @@ defmodule Pleroma.Web.OAuth.OAuthController do
action_fallback(Pleroma.Web.OAuth.FallbackController)
def authorize(conn, params) do
- params_scopes = oauth_scopes(params, nil)
-
- scopes =
- if params_scopes do
- params_scopes
- else
- app = Repo.get_by(App, client_id: params["client_id"])
- app && app.scopes
- end
+ app = Repo.get_by(App, client_id: params["client_id"])
+ available_scopes = (app && app.scopes) || []
+ scopes = oauth_scopes(params, nil) || available_scopes
render(conn, "show.html", %{
response_type: params["response_type"],
client_id: params["client_id"],
- scopes: scopes || [],
+ available_scopes: available_scopes,
+ scopes: scopes,
redirect_uri: params["redirect_uri"],
state: params["state"]
})
@@ -47,12 +42,13 @@ defmodule Pleroma.Web.OAuth.OAuthController do
}) do
with %User{} = user <- User.get_by_nickname_or_email(name),
true <- Pbkdf2.checkpw(password, user.password_hash),
- {:auth_active, true} <- {:auth_active, User.auth_active?(user)},
%App{} = app <- Repo.get_by(App, client_id: client_id),
true <- redirect_uri in String.split(app.redirect_uris),
scopes <- oauth_scopes(auth_params, []),
- [] <- scopes -- app.scopes,
- true <- Enum.any?(scopes),
+ {:unsupported_scopes, []} <- {:unsupported_scopes, scopes -- app.scopes},
+ # Note: `scope` param is intentionally not optional in this context
+ {:missing_scopes, false} <- {:missing_scopes, scopes == []},
+ {:auth_active, true} <- {:auth_active, User.auth_active?(user)},
{:ok, auth} <- Authorization.create_authorization(app, user, scopes) do
# Special case: Local MastodonFE.
redirect_uri =
@@ -85,20 +81,20 @@ defmodule Pleroma.Web.OAuth.OAuthController do
redirect(conn, external: url)
end
else
- res ->
- msg =
- if res == {:auth_active, false},
- do: "Account confirmation pending",
- else: "Invalid Username/Password/Permissions"
-
- app = Repo.get_by(App, client_id: client_id)
- available_scopes = (app && app.scopes) || oauth_scopes(auth_params, [])
- scope_param = Enum.join(available_scopes, " ")
-
+ {scopes_issue, _} when scopes_issue in [:unsupported_scopes, :missing_scopes] ->
conn
- |> put_flash(:error, msg)
+ |> put_flash(:error, "Permissions not specified.")
|> put_status(:unauthorized)
- |> authorize(Map.merge(auth_params, %{"scope" => scope_param}))
+ |> authorize(auth_params)
+
+ {:auth_active, false} ->
+ conn
+ |> put_flash(:error, "Account confirmation pending.")
+ |> put_status(:forbidden)
+ |> authorize(auth_params)
+
+ error ->
+ error
end
end