Packages
boruta
2.1.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
lib/boruta/oauth/contexts/access_tokens.ex
defmodule Boruta.Oauth.AccessTokens do
@moduledoc """
Access token context
"""
@doc """
Returns a `Boruta.Oauth.Token` either by `value` or `refresh_token`.
"""
@callback get_by(
[value: String.t()] |
[refresh_token: String.t()]
) :: token :: Boruta.Oauth.Token.t() | nil
@doc """
Persists a token with the given params.
"""
@callback create(params :: %{
:client => Boruta.Oauth.Client.t(),
:sub => String.t(),
optional(:redirect_uri) => String.t(),
:scope => String.t(),
optional(:state) => String.t(),
optional(:previous_token) => String.t()
}, options :: [
refresh_token: boolean()
]) :: token :: Boruta.Oauth.Token.t() | {:error, reason :: term()}
@doc """
Revokes the given `Boruta.Oauth.Token`.
"""
@callback revoke(
token :: Boruta.Oauth.Token.t()
) :: {:ok, Boruta.Oauth.Token.t()} | {:error, reason :: term()}
end