fix: add oauth client name to the CRD spec (#56)

Signed-off-by: Tiago Angelo <kurtis.angelo@gmail.com>
This commit is contained in:
Tiago Angelo 2020-06-22 06:32:50 -03:00 committed by GitHub
parent 99665fa7e2
commit e626afcc04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -68,6 +68,10 @@ type HydraAdmin struct {
// OAuth2ClientSpec defines the desired state of OAuth2Client // OAuth2ClientSpec defines the desired state of OAuth2Client
type OAuth2ClientSpec struct { type OAuth2ClientSpec struct {
// ClientName is the human-readable string name of the client to be presented to the end-user during authorization.
ClientName string `json:"clientName,omitempty"`
// +kubebuilder:validation:MaxItems=4 // +kubebuilder:validation:MaxItems=4
// +kubebuilder:validation:MinItems=1 // +kubebuilder:validation:MinItems=1
// //
@ -176,6 +180,7 @@ func init() {
// ToOAuth2ClientJSON converts an OAuth2Client into a OAuth2ClientJSON object that represents an OAuth2 client digestible by ORY Hydra // ToOAuth2ClientJSON converts an OAuth2Client into a OAuth2ClientJSON object that represents an OAuth2 client digestible by ORY Hydra
func (c *OAuth2Client) ToOAuth2ClientJSON() *hydra.OAuth2ClientJSON { func (c *OAuth2Client) ToOAuth2ClientJSON() *hydra.OAuth2ClientJSON {
return &hydra.OAuth2ClientJSON{ return &hydra.OAuth2ClientJSON{
ClientName: c.Spec.ClientName,
GrantTypes: grantToStringSlice(c.Spec.GrantTypes), GrantTypes: grantToStringSlice(c.Spec.GrantTypes),
ResponseTypes: responseToStringSlice(c.Spec.ResponseTypes), ResponseTypes: responseToStringSlice(c.Spec.ResponseTypes),
RedirectURIs: redirectToStringSlice(c.Spec.RedirectURIs), RedirectURIs: redirectToStringSlice(c.Spec.RedirectURIs),

View File

@ -393,6 +393,10 @@ spec:
items: items:
type: string type: string
type: array type: array
clientName:
description: ClientName is the human-readable string name of the client
to be presented to the end-user during authorization.
type: string
grantTypes: grantTypes:
description: GrantTypes is an array of grant types the client is allowed description: GrantTypes is an array of grant types the client is allowed
to use. to use.

View File

@ -8,6 +8,7 @@ import (
// OAuth2ClientJSON represents an OAuth2 client digestible by ORY Hydra // OAuth2ClientJSON represents an OAuth2 client digestible by ORY Hydra
type OAuth2ClientJSON struct { type OAuth2ClientJSON struct {
ClientName string `json:"client_name,omitempty"`
ClientID *string `json:"client_id,omitempty"` ClientID *string `json:"client_id,omitempty"`
Secret *string `json:"client_secret,omitempty"` Secret *string `json:"client_secret,omitempty"`
GrantTypes []string `json:"grant_types"` GrantTypes []string `json:"grant_types"`