Packages
boruta
2.0.0
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/authorization/resource_owner.ex
defmodule Boruta.Oauth.Authorization.ResourceOwner do
@moduledoc """
Check against given params and return the corresponding resource owner
"""
import Boruta.Config, only: [resource_owners: 0]
alias Boruta.Oauth.Error
alias Boruta.Oauth.ResourceOwner
@doc """
Authorize the resource owner corresponding to the given params.
## Examples
iex> authorize(id: "id")
{:ok, %Boruta.Oauth.ResourceOwner{...}}
"""
@spec authorize(
[email: String.t(), password: String.t()] |
[resource_owner: ResourceOwner.t()]
) ::
{:error,
%Error{
:error => :invalid_resource_owner,
:error_description => String.t(),
:format => nil,
:redirect_uri => nil,
:status => :unauthorized
}}
| {:ok, user :: ResourceOwner.t()}
def authorize(username: username, password: password) do
with {:ok, resource_owner} <- resource_owners().get_by(username: username),
:ok <- resource_owners().check_password(resource_owner, password) do
{:ok, resource_owner}
else
{:error, reason} ->
{:error, %Error{
status: :unauthorized,
error: :invalid_resource_owner,
error_description: reason
}}
end
end
def authorize(resource_owner: %ResourceOwner{sub: sub} = resource_owner) when not is_nil(sub) do
{:ok, resource_owner}
end
def authorize(_) do
{:error, %Error{
status: :unauthorized,
error: :invalid_resource_owner,
error_description: "Resource owner is invalid."
}}
end
end