Packages
boruta
2.3.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/openid/responses/userinfo_response.ex
defmodule Boruta.Openid.UserinfoResponse do
@moduledoc false
@enforce_keys [:userinfo, :format]
defstruct userinfo: nil, jwt: nil, format: nil
alias Boruta.Oauth.Client
@type t() :: %__MODULE__{
userinfo: String.t(),
jwt: String.t() | nil,
format: :json | :jwt
}
@spec from_userinfo(userinfo :: map(), client :: Client.t()) :: t()
def from_userinfo(
userinfo,
%Client{userinfo_signed_response_alg: nil}
) do
%__MODULE__{
userinfo: userinfo,
format: :json
}
end
def from_userinfo(userinfo, client) do
%__MODULE__{
userinfo: userinfo,
jwt: Client.Crypto.userinfo_sign(userinfo, client),
format: :jwt
}
end
@spec content_type(response :: t()) :: content_type :: String.t()
def content_type(%__MODULE__{format: :json}) do
"application/json"
end
def content_type(%__MODULE__{format: :jwt}) do
"application/jwt"
end
@spec payload(response :: t()) :: payload :: map() | String.t()
def payload(%__MODULE__{userinfo: userinfo, format: :json}) do
userinfo
end
def payload(%__MODULE__{jwt: jwt, format: :jwt}) do
jwt
end
end