diff options
author | rinpatch <rinpatch@sdf.org> | 2019-11-19 20:04:19 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-11-19 20:04:19 +0000 |
commit | 0ba3f1ffb28792c21809fa9a30fc03a7a52d9361 (patch) | |
tree | 0b1a885f966c36e296d8d48048ddf25fc30b7a93 /lib/pleroma/web/oauth | |
parent | 36f4382b3367a889a191b124066fbbafab37d047 (diff) | |
parent | 34206e4d7f2f5abe896882874e142374d987c44f (diff) | |
download | pleroma-1.1.6.tar.gz |
Merge branch 'release/1.1.6' into 'stable'v1.1.6
Release/1.1.6
See merge request pleroma/pleroma!1995
Diffstat (limited to 'lib/pleroma/web/oauth')
-rw-r--r-- | lib/pleroma/web/oauth/oauth_controller.ex | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/pleroma/web/oauth/oauth_controller.ex b/lib/pleroma/web/oauth/oauth_controller.ex index 81eae2c8b..63a6cc286 100644 --- a/lib/pleroma/web/oauth/oauth_controller.ex +++ b/lib/pleroma/web/oauth/oauth_controller.ex @@ -35,7 +35,7 @@ defmodule Pleroma.Web.OAuth.OAuthController do authorize(conn, Map.merge(params, auth_attrs)) end - def authorize(%Plug.Conn{assigns: %{token: %Token{}}} = conn, params) do + def authorize(%Plug.Conn{assigns: %{token: %Token{}}} = conn, %{"force_login" => _} = params) do if ControllerHelper.truthy_param?(params["force_login"]) do do_authorize(conn, params) else @@ -43,6 +43,22 @@ defmodule Pleroma.Web.OAuth.OAuthController do end end + # Note: the token is set in oauth_plug, but the token and client do not always go together. + # For example, MastodonFE's token is set if user requests with another client, + # after user already authorized to MastodonFE. + # So we have to check client and token. + def authorize( + %Plug.Conn{assigns: %{token: %Token{} = token}} = conn, + %{"client_id" => client_id} = params + ) do + with %Token{} = t <- Repo.get_by(Token, token: token.token) |> Repo.preload(:app), + ^client_id <- t.app.client_id do + handle_existing_authorization(conn, params) + else + _ -> do_authorize(conn, params) + end + end + def authorize(%Plug.Conn{} = conn, params), do: do_authorize(conn, params) defp do_authorize(%Plug.Conn{} = conn, params) do |