Browse Source

Do oauth redirect.

tags/v0.9.9
Roger Braun 6 years ago
parent
commit
5fe9e4dd3f
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      lib/pleroma/web/oauth/oauth_controller.ex

+ 9
- 4
lib/pleroma/web/oauth/oauth_controller.ex View File

@@ -14,14 +14,19 @@ defmodule Pleroma.Web.OAuth.OAuthController do
}
end

def create_authorization(conn, %{"authorization" => %{"name" => name, "password" => password, "client_id" => client_id}} = params) do
def create_authorization(conn, %{"authorization" => %{"name" => name, "password" => password, "client_id" => client_id, "redirect_uri" => redirect_uri}} = params) do
with %User{} = user <- User.get_cached_by_nickname(name),
true <- Pbkdf2.checkpw(password, user.password_hash),
%App{} = app <- Repo.get_by(App, client_id: client_id),
{:ok, auth} <- Authorization.create_authorization(app, user) do
render conn, "results.html", %{
auth: auth
}
if redirect_uri == "urn:ietf:wg:oauth:2.0:oob" do
render conn, "results.html", %{
auth: auth
}
else
url = "#{redirect_uri}?code=#{auth.token}"
redirect(conn, external: url)
end
end
end



Loading…
Cancel
Save