Do oauth redirect.
This commit is contained in:
parent
d625d8db7d
commit
5fe9e4dd3f
|
@ -14,14 +14,19 @@ def authorize(conn, params) do
|
||||||
}
|
}
|
||||||
end
|
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),
|
with %User{} = user <- User.get_cached_by_nickname(name),
|
||||||
true <- Pbkdf2.checkpw(password, user.password_hash),
|
true <- Pbkdf2.checkpw(password, user.password_hash),
|
||||||
%App{} = app <- Repo.get_by(App, client_id: client_id),
|
%App{} = app <- Repo.get_by(App, client_id: client_id),
|
||||||
{:ok, auth} <- Authorization.create_authorization(app, user) do
|
{:ok, auth} <- Authorization.create_authorization(app, user) do
|
||||||
render conn, "results.html", %{
|
if redirect_uri == "urn:ietf:wg:oauth:2.0:oob" do
|
||||||
auth: auth
|
render conn, "results.html", %{
|
||||||
}
|
auth: auth
|
||||||
|
}
|
||||||
|
else
|
||||||
|
url = "#{redirect_uri}?code=#{auth.token}"
|
||||||
|
redirect(conn, external: url)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue