Packages
boruta
0.2.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/adapters/ecto/clients.ex
defmodule Boruta.Ecto.Clients do
@moduledoc false
@behaviour Boruta.Oauth.Clients
import Ecto.Query, only: [from: 2]
import Boruta.Config, only: [repo: 0]
import Boruta.Ecto.OauthMapper, only: [to_oauth_schema: 1]
alias Boruta.Oauth
alias Boruta.Ecto
@impl Boruta.Oauth.Clients
def get_by(id: id, secret: secret) do
with %Ecto.Client{} = client <- repo().get_by(Ecto.Client, id: id, secret: secret) do
to_oauth_schema(client)
end
end
def get_by(id: id, redirect_uri: redirect_uri) do
with %Ecto.Client{} = client <-
repo().one(
from c in Ecto.Client,
where: c.id == ^id and fragment("? = ANY (redirect_uris)", ^redirect_uri)
) do
to_oauth_schema(client)
end
end
@impl Boruta.Oauth.Clients
def authorized_scopes(%Oauth.Client{id: id}) do
case repo().get_by(Ecto.Client, id: id) do
%Ecto.Client{} = client ->
client = repo().preload(client, :authorized_scopes)
Enum.map(
client.authorized_scopes,
&to_oauth_schema(&1)
)
nil ->
[]
end
end
end