Packages
boruta
0.1.0-rc.5
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/contexts/access_tokens.ex
defmodule Boruta.AccessTokens do
@moduledoc false
@behaviour Boruta.Oauth.AccessTokens
import Ecto.Query, only: [from: 2]
import Boruta.Config, only: [repo: 0]
alias Boruta.Clients
alias Boruta.Oauth
@impl Boruta.Oauth.AccessTokens
def get_by(value: value) do
repo().one(
from t in Boruta.Token,
left_join: c in assoc(t, :client),
left_join: u in assoc(t, :resource_owner),
where: t.type == "access_token" and t.value == ^value
) |> to_oauth_schema()
end
def get_by(refresh_token: refresh_token) do
repo().one(
from t in Boruta.Token,
left_join: c in assoc(t, :client),
left_join: u in assoc(t, :resource_owner),
where: t.type == "access_token" and t.refresh_token == ^refresh_token
) |> to_oauth_schema()
end
@impl Boruta.Oauth.AccessTokens
def create(
%{client: client, scope: scope} = params,
options
) do
resource_owner = params[:resource_owner]
state = params[:state]
token_attributes = %{
client_id: client.id,
resource_owner_id: resource_owner && resource_owner.id,
state: state,
scope: scope
}
changeset = apply(
Boruta.Token,
changeset_method(options),
[%Boruta.Token{}, token_attributes]
)
with {:ok, token} <- repo().insert(changeset) do
{:ok, to_oauth_schema(token)}
end
end
def to_oauth_schema(nil), do: nil
def to_oauth_schema(%Boruta.Token{} = token) do
token = repo().preload(token, [:client, resource_owner: :authorized_scopes])
struct(Oauth.Token, Map.merge(
Map.from_struct(token),
%{client: Clients.to_oauth_schema(token.client)}
))
end
defp changeset_method(refresh_token: true), do: :changeset_with_refresh_token
defp changeset_method(_options), do: :changeset
end