2019-08-21 12:10:25 +02:00
|
|
|
package hydra
|
|
|
|
|
2020-02-03 12:40:44 +01:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"k8s.io/utils/pointer"
|
|
|
|
)
|
2019-09-13 14:37:29 +02:00
|
|
|
|
2019-08-21 12:10:25 +02:00
|
|
|
// OAuth2ClientJSON represents an OAuth2 client digestible by ORY Hydra
|
|
|
|
type OAuth2ClientJSON struct {
|
2020-02-03 12:40:44 +01:00
|
|
|
ClientID *string `json:"client_id,omitempty"`
|
|
|
|
Secret *string `json:"client_secret,omitempty"`
|
|
|
|
GrantTypes []string `json:"grant_types"`
|
|
|
|
RedirectURIs []string `json:"redirect_uris,omitempty"`
|
|
|
|
ResponseTypes []string `json:"response_types,omitempty"`
|
|
|
|
Audience []string `json:"audience,omitempty"`
|
|
|
|
Scope string `json:"scope"`
|
|
|
|
Owner string `json:"owner"`
|
|
|
|
TokenEndpointAuthMethod string `json:"token_endpoint_auth_method,omitempty"`
|
|
|
|
Metadata json.RawMessage `json:"metadata,omitempty"`
|
2019-09-13 14:37:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Oauth2ClientCredentials represents client ID and password fetched from a Kubernetes secret
|
|
|
|
type Oauth2ClientCredentials struct {
|
|
|
|
ID []byte
|
|
|
|
Password []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (oj *OAuth2ClientJSON) WithCredentials(credentials *Oauth2ClientCredentials) *OAuth2ClientJSON {
|
|
|
|
oj.ClientID = pointer.StringPtr(string(credentials.ID))
|
|
|
|
oj.Secret = pointer.StringPtr(string(credentials.Password))
|
|
|
|
return oj
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|