View Source Boruta.Oauth.ResourceOwners behaviour (Boruta core v2.1.5)
Resource owner context
Link to this section Summary
Callbacks
Returns a list of authorized scopes for a given resource owner. These scopes will be granted is requested for the user.
Determines if given password is valid for the given resource owner.
Returns id_token
identity claims for the given resource owner. Those claims will be present in resulting id_token
of OpenID Connect flows.
Returns a resource owner by (username) or (id).
Link to this section Callbacks
Specs
authorized_scopes(resource_owner :: Boruta.Oauth.ResourceOwner.t()) :: [ Boruta.Oauth.Scope.t() ]
Returns a list of authorized scopes for a given resource owner. These scopes will be granted is requested for the user.
Specs
check_password( resource_owner :: Boruta.Oauth.ResourceOwner.t(), password :: String.t() ) :: :ok | {:error, String.t()}
Determines if given password is valid for the given resource owner.
Specs
claims(resource_owner :: Boruta.Oauth.ResourceOwner.t(), scope :: String.t()) :: claims :: Boruta.Oauth.IdToken.claims()
Returns id_token
identity claims for the given resource owner. Those claims will be present in resulting id_token
of OpenID Connect flows.
Specs
get_by([{:username, String.t()}] | [{:sub, String.t()}]) :: {:ok, resource_owner :: Boruta.Oauth.ResourceOwner.t()} | {:error, String.t()}
Returns a resource owner by (username) or (id).