Packages
boruta
2.2.2
3.0.0-beta.4
3.0.0-beta.3
3.0.0-beta.2
3.0.0-beta.1
2.3.6
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.2
2.2.1
2.2.0
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
2.0.0-rc.1
2.0.0-rc.0
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
1.0.0-rc.0
0.2.1
0.2.0
0.1.1
0.1.0
0.1.0-rc.5
0.1.0-rc.4
0.1.0-rc.3
0.1.0-rc.2
0.1.0-rc.1
Core of an OAuth/OpenID Connect provider enabling authorization in your applications.
Current section
Files
Jump to
Current section
Files
priv/templates/boruta.gen.controllers/views/oauth_view.ex.eex
defmodule <%= @web_module %>.OauthView do
use <%= @web_module %>, :view
alias Boruta.Oauth.IntrospectResponse
alias Boruta.Oauth.TokenResponse
def render("token.json", %{
response: %TokenResponse{
token_type: token_type,
access_token: access_token,
expires_in: expires_in,
refresh_token: refresh_token,
id_token: id_token
}
}) do
Enum.filter(
%{
token_type: token_type,
access_token: access_token,
expires_in: expires_in,
refresh_token: refresh_token,
id_token: id_token
},
fn
{_key, nil} -> false
_ -> true
end
)
|> Enum.into(%{})
end
def render("introspect.json", %{
response: %IntrospectResponse{
active: active,
client_id: client_id,
username: username,
scope: scope,
sub: sub,
iss: iss,
exp: exp,
iat: iat
}
}) do
case active do
true ->
%{
active: true,
client_id: client_id,
username: username,
scope: scope,
sub: sub,
iss: iss,
exp: exp,
iat: iat
}
false ->
%{active: false}
end
end
def render("error.json", %{error: error, error_description: error_description}) do
%{
error: error,
error_description: error_description
}
end
end