BREAKING change. The following types are changed from interface to struct type: - AccessTokenClaims - IDTokenClaims - IntrospectionResponse - UserInfo and related types. The following methods of OPStorage now take a pointer to a struct type, instead of an interface: - SetUserinfoFromScopes - SetUserinfoFromToken - SetIntrospectionFromToken The following functions are now generic, so that type-safe extension of Claims is now possible: - op.VerifyIDTokenHint - op.VerifyAccessToken - rp.VerifyTokens - rp.VerifyIDToken
67 lines
2.2 KiB
Go
67 lines
2.2 KiB
Go
package oidc
|
|
|
|
type IntrospectionRequest struct {
|
|
Token string `schema:"token"`
|
|
}
|
|
|
|
type ClientAssertionParams struct {
|
|
ClientAssertion string `schema:"client_assertion"`
|
|
ClientAssertionType string `schema:"client_assertion_type"`
|
|
}
|
|
|
|
type IntrospectionResponse struct {
|
|
Active bool `json:"active"`
|
|
Scope SpaceDelimitedArray `json:"scope,omitempty"`
|
|
ClientID string `json:"client_id,omitempty"`
|
|
TokenType string `json:"token_type,omitempty"`
|
|
Expiration Time `json:"exp,omitempty"`
|
|
IssuedAt Time `json:"iat,omitempty"`
|
|
NotBefore Time `json:"nbf,omitempty"`
|
|
Subject string `json:"sub,omitempty"`
|
|
Audience Audience `json:"aud,omitempty"`
|
|
Issuer string `json:"iss,omitempty"`
|
|
JWTID string `json:"jti,omitempty"`
|
|
Username string `json:"username,omitempty"`
|
|
UserInfoProfile
|
|
UserInfoEmail
|
|
UserInfoPhone
|
|
|
|
Address UserInfoAddress `json:"address,omitempty"`
|
|
Claims map[string]any `json:"-"`
|
|
}
|
|
|
|
// GetUserInfo copies all user related fields into a new UserInfo.
|
|
func (i *IntrospectionResponse) GetUserInfo() *UserInfo {
|
|
return &UserInfo{
|
|
Address: i.Address,
|
|
Subject: i.Subject,
|
|
UserInfoProfile: i.UserInfoProfile,
|
|
UserInfoEmail: i.UserInfoEmail,
|
|
UserInfoPhone: i.UserInfoPhone,
|
|
}
|
|
}
|
|
|
|
// SetUserInfo copies all relevant fields from UserInfo
|
|
// into the IntroSpectionResponse.
|
|
func (i *IntrospectionResponse) SetUserInfo(u *UserInfo) {
|
|
i.Subject = u.Subject
|
|
i.Username = i.PreferredUsername
|
|
i.Address = u.Address
|
|
i.UserInfoProfile = u.UserInfoProfile
|
|
i.UserInfoEmail = u.UserInfoEmail
|
|
i.UserInfoPhone = u.UserInfoPhone
|
|
}
|
|
|
|
// introspectionResponseAlias prevents loops on the JSON methods
|
|
type introspectionResponseAlias IntrospectionResponse
|
|
|
|
func (i *IntrospectionResponse) MarshalJSON() ([]byte, error) {
|
|
//TODO: set the username directly where the IntrospectionResponse is created
|
|
// a.Username = i.PreferredUsername
|
|
|
|
return mergeAndMarshalClaims((*introspectionResponseAlias)(i), i.Claims)
|
|
}
|
|
|
|
func (i *IntrospectionResponse) UnmarshalJSON(data []byte) error {
|
|
return unmarshalJSONMulti(data, (*introspectionResponseAlias)(i), &i.Claims)
|
|
}
|