summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreal <eal@waifu.club>2017-11-06 21:51:31 +0200
committereal <eal@waifu.club>2017-11-06 21:51:31 +0200
commitb0e27b21dd655a663969b8b179c2966974e6e046 (patch)
tree7ec3b905bcfc76cfc00d2f74b487787d718273ca
parentfa1f11e8e9c31b0ed2857ca3c3feb78552ed54d0 (diff)
downloadpleroma-b0e27b21dd655a663969b8b179c2966974e6e046.tar.gz
pleroma-b0e27b21dd655a663969b8b179c2966974e6e046.zip
Fix tootdon logins.
-rw-r--r--lib/pleroma/web/oauth/oauth_controller.ex11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/pleroma/web/oauth/oauth_controller.ex b/lib/pleroma/web/oauth/oauth_controller.ex
index 3e66c3ee8..841df8c32 100644
--- a/lib/pleroma/web/oauth/oauth_controller.ex
+++ b/lib/pleroma/web/oauth/oauth_controller.ex
@@ -40,7 +40,8 @@ defmodule Pleroma.Web.OAuth.OAuthController do
# - proper scope handling
def token_exchange(conn, %{"grant_type" => "authorization_code"} = params) do
with %App{} = app <- Repo.get_by(App, client_id: params["client_id"], client_secret: params["client_secret"]),
- %Authorization{} = auth <- Repo.get_by(Authorization, token: params["code"], app_id: app.id),
+ fixed_token = fix_padding(params["code"]),
+ %Authorization{} = auth <- Repo.get_by(Authorization, token: fixed_token, app_id: app.id),
{:ok, token} <- Token.exchange_token(app, auth) do
response = %{
token_type: "Bearer",
@@ -50,6 +51,14 @@ defmodule Pleroma.Web.OAuth.OAuthController do
scope: "read write follow"
}
json(conn, response)
+ else
+ _error -> json(conn, %{error: "Invalid credentials"})
end
end
+
+ defp fix_padding(token) do
+ token
+ |> Base.url_decode64!(padding: false)
+ |> Base.url_encode64
+ end
end