fix: oauth client metadata as object in CRD (#71)
This commit is contained in:
parent
8b8746d271
commit
d9eeaace15
@ -20,6 +20,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/ory/hydra-maester/hydra"
|
"github.com/ory/hydra-maester/hydra"
|
||||||
|
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
|
||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -120,8 +121,10 @@ type OAuth2ClientSpec struct {
|
|||||||
// Indication which authentication method shoud be used for the token endpoint
|
// Indication which authentication method shoud be used for the token endpoint
|
||||||
TokenEndpointAuthMethod TokenEndpointAuthMethod `json:"tokenEndpointAuthMethod,omitempty"`
|
TokenEndpointAuthMethod TokenEndpointAuthMethod `json:"tokenEndpointAuthMethod,omitempty"`
|
||||||
|
|
||||||
|
// +kubebuilder:validation:Type=object
|
||||||
|
//
|
||||||
// Metadata is abritrary data
|
// Metadata is abritrary data
|
||||||
Metadata json.RawMessage `json:"metadata,omitempty"`
|
Metadata apiextensionsv1.JSON `json:"metadata,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// +kubebuilder:validation:Enum=client_credentials;authorization_code;implicit;refresh_token
|
// +kubebuilder:validation:Enum=client_credentials;authorization_code;implicit;refresh_token
|
||||||
@ -182,6 +185,8 @@ 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 {
|
||||||
|
meta, _ := json.Marshal(c.Spec.Metadata)
|
||||||
|
|
||||||
return &hydra.OAuth2ClientJSON{
|
return &hydra.OAuth2ClientJSON{
|
||||||
ClientName: c.Spec.ClientName,
|
ClientName: c.Spec.ClientName,
|
||||||
GrantTypes: grantToStringSlice(c.Spec.GrantTypes),
|
GrantTypes: grantToStringSlice(c.Spec.GrantTypes),
|
||||||
@ -193,7 +198,7 @@ func (c *OAuth2Client) ToOAuth2ClientJSON() *hydra.OAuth2ClientJSON {
|
|||||||
Scope: c.Spec.Scope,
|
Scope: c.Spec.Scope,
|
||||||
Owner: fmt.Sprintf("%s/%s", c.Name, c.Namespace),
|
Owner: fmt.Sprintf("%s/%s", c.Name, c.Namespace),
|
||||||
TokenEndpointAuthMethod: string(c.Spec.TokenEndpointAuthMethod),
|
TokenEndpointAuthMethod: string(c.Spec.TokenEndpointAuthMethod),
|
||||||
Metadata: c.Spec.Metadata,
|
Metadata: meta,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@ limitations under the License.
|
|||||||
package v1alpha1
|
package v1alpha1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
runtime "k8s.io/apimachinery/pkg/runtime"
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -132,11 +131,7 @@ func (in *OAuth2ClientSpec) DeepCopyInto(out *OAuth2ClientSpec) {
|
|||||||
copy(*out, *in)
|
copy(*out, *in)
|
||||||
}
|
}
|
||||||
out.HydraAdmin = in.HydraAdmin
|
out.HydraAdmin = in.HydraAdmin
|
||||||
if in.Metadata != nil {
|
in.Metadata.DeepCopyInto(&out.Metadata)
|
||||||
in, out := &in.Metadata, &out.Metadata
|
|
||||||
*out = make(json.RawMessage, len(*in))
|
|
||||||
copy(*out, *in)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OAuth2ClientSpec.
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OAuth2ClientSpec.
|
||||||
|
@ -99,8 +99,8 @@ spec:
|
|||||||
type: object
|
type: object
|
||||||
metadata:
|
metadata:
|
||||||
description: Metadata is abritrary data
|
description: Metadata is abritrary data
|
||||||
format: byte
|
type: object
|
||||||
type: string
|
x-kubernetes-preserve-unknown-fields: true
|
||||||
postLogoutRedirectUris:
|
postLogoutRedirectUris:
|
||||||
description: PostLogoutRedirectURIs is an array of the post logout
|
description: PostLogoutRedirectURIs is an array of the post logout
|
||||||
redirect URIs allowed for the application
|
redirect URIs allowed for the application
|
||||||
|
1
go.mod
1
go.mod
@ -11,6 +11,7 @@ require (
|
|||||||
github.com/stretchr/testify v1.6.1
|
github.com/stretchr/testify v1.6.1
|
||||||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
|
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
|
||||||
k8s.io/api v0.20.2
|
k8s.io/api v0.20.2
|
||||||
|
k8s.io/apiextensions-apiserver v0.20.1
|
||||||
k8s.io/apimachinery v0.20.2
|
k8s.io/apimachinery v0.20.2
|
||||||
k8s.io/client-go v0.20.2
|
k8s.io/client-go v0.20.2
|
||||||
k8s.io/utils v0.0.0-20210305010621-2afb4311ab10
|
k8s.io/utils v0.0.0-20210305010621-2afb4311ab10
|
||||||
|
Loading…
x
Reference in New Issue
Block a user