2019-08-21 10:12:07 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-08-21 12:10:25 +02:00
|
|
|
"fmt"
|
|
|
|
|
2019-08-21 10:12:07 +02:00
|
|
|
"github.com/go-logr/logr"
|
2019-08-21 12:10:25 +02:00
|
|
|
hydrav1alpha1 "github.com/ory/hydra-maester/api/v1alpha1"
|
|
|
|
"github.com/ory/hydra-maester/hydra"
|
2019-09-13 14:37:29 +02:00
|
|
|
"github.com/pkg/errors"
|
2019-08-21 12:10:25 +02:00
|
|
|
apiv1 "k8s.io/api/core/v1"
|
|
|
|
apierrs "k8s.io/apimachinery/pkg/api/errors"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2019-09-13 14:37:29 +02:00
|
|
|
"k8s.io/apimachinery/pkg/types"
|
2019-08-21 10:12:07 +02:00
|
|
|
ctrl "sigs.k8s.io/controller-runtime"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
2019-08-21 12:10:25 +02:00
|
|
|
)
|
2019-08-21 10:12:07 +02:00
|
|
|
|
2019-08-21 12:10:25 +02:00
|
|
|
const (
|
2019-09-13 14:37:29 +02:00
|
|
|
ClientIDKey = "client_id"
|
|
|
|
ClientSecretKey = "client_secret"
|
|
|
|
ownerLabel = "owner"
|
2019-08-21 10:12:07 +02:00
|
|
|
)
|
|
|
|
|
2019-08-21 12:10:25 +02:00
|
|
|
type HydraClientInterface interface {
|
|
|
|
GetOAuth2Client(id string) (*hydra.OAuth2ClientJSON, bool, error)
|
|
|
|
PostOAuth2Client(o *hydra.OAuth2ClientJSON) (*hydra.OAuth2ClientJSON, error)
|
|
|
|
PutOAuth2Client(o *hydra.OAuth2ClientJSON) (*hydra.OAuth2ClientJSON, error)
|
|
|
|
DeleteOAuth2Client(id string) error
|
|
|
|
}
|
|
|
|
|
2019-08-21 10:12:07 +02:00
|
|
|
// OAuth2ClientReconciler reconciles a OAuth2Client object
|
|
|
|
type OAuth2ClientReconciler struct {
|
2019-08-21 12:10:25 +02:00
|
|
|
HydraClient HydraClientInterface
|
|
|
|
Log logr.Logger
|
2019-08-21 10:12:07 +02:00
|
|
|
client.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// +kubebuilder:rbac:groups=hydra.ory.sh,resources=oauth2clients,verbs=get;list;watch;create;update;patch;delete
|
|
|
|
// +kubebuilder:rbac:groups=hydra.ory.sh,resources=oauth2clients/status,verbs=get;update;patch
|
2019-08-21 12:10:25 +02:00
|
|
|
// +kubebuilder:rbac:groups="",resources=secrets,verbs=get;list;watch;create;update;patch;delete
|
2019-08-21 10:12:07 +02:00
|
|
|
|
|
|
|
func (r *OAuth2ClientReconciler) Reconcile(req ctrl.Request) (ctrl.Result, error) {
|
2019-08-21 12:10:25 +02:00
|
|
|
ctx := context.Background()
|
2019-08-21 10:12:07 +02:00
|
|
|
_ = r.Log.WithValues("oauth2client", req.NamespacedName)
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
var oauth2client hydrav1alpha1.OAuth2Client
|
|
|
|
if err := r.Get(ctx, req.NamespacedName, &oauth2client); err != nil {
|
2019-08-21 12:10:25 +02:00
|
|
|
if apierrs.IsNotFound(err) {
|
2019-09-13 14:37:29 +02:00
|
|
|
if err := r.unregisterOAuth2Clients(ctx, req.Name, req.Namespace); err != nil {
|
2019-08-21 12:10:25 +02:00
|
|
|
return ctrl.Result{}, err
|
|
|
|
}
|
|
|
|
return ctrl.Result{}, nil
|
|
|
|
}
|
|
|
|
return ctrl.Result{}, err
|
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
if oauth2client.Generation != oauth2client.Status.ObservedGeneration {
|
2019-08-21 12:10:25 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
var secret apiv1.Secret
|
|
|
|
if err := r.Get(ctx, types.NamespacedName{Name: oauth2client.Spec.SecretName, Namespace: req.Namespace}, &secret); err != nil {
|
|
|
|
if apierrs.IsNotFound(err) {
|
|
|
|
return ctrl.Result{}, r.registerOAuth2Client(ctx, &oauth2client, nil)
|
|
|
|
}
|
|
|
|
return ctrl.Result{}, err
|
|
|
|
}
|
2019-08-21 12:10:25 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
credentials, err := parseSecret(secret)
|
|
|
|
if err != nil {
|
|
|
|
r.Log.Error(err, fmt.Sprintf("secret %s/%s is invalid", secret.Name, secret.Namespace))
|
|
|
|
return ctrl.Result{}, r.updateReconciliationStatusError(ctx, &oauth2client, hydrav1alpha1.StatusInvalidSecret, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := r.labelSecretWithOwnerReference(ctx, &oauth2client, secret); err != nil {
|
|
|
|
return ctrl.Result{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, found, err := r.HydraClient.GetOAuth2Client(string(credentials.ID))
|
|
|
|
if err != nil {
|
|
|
|
return ctrl.Result{}, err
|
2019-08-21 12:10:25 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
if found {
|
|
|
|
return ctrl.Result{}, r.updateRegisteredOAuth2Client(ctx, &oauth2client, credentials)
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
return ctrl.Result{}, r.registerOAuth2Client(ctx, &oauth2client, credentials)
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
2019-08-21 10:12:07 +02:00
|
|
|
|
|
|
|
return ctrl.Result{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *OAuth2ClientReconciler) SetupWithManager(mgr ctrl.Manager) error {
|
|
|
|
return ctrl.NewControllerManagedBy(mgr).
|
|
|
|
For(&hydrav1alpha1.OAuth2Client{}).
|
|
|
|
Complete(r)
|
|
|
|
}
|
2019-08-21 12:10:25 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
func (r *OAuth2ClientReconciler) registerOAuth2Client(ctx context.Context, c *hydrav1alpha1.OAuth2Client, credentials *hydra.Oauth2ClientCredentials) error {
|
|
|
|
if err := r.unregisterOAuth2Clients(ctx, c.Name, c.Namespace); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
if credentials != nil {
|
|
|
|
if _, err := r.HydraClient.PostOAuth2Client(c.ToOAuth2ClientJSON().WithCredentials(credentials)); err != nil {
|
|
|
|
return r.updateReconciliationStatusError(ctx, c, hydrav1alpha1.StatusRegistrationFailed, err)
|
|
|
|
}
|
2019-09-05 11:31:32 +02:00
|
|
|
return nil
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
created, err := r.HydraClient.PostOAuth2Client(c.ToOAuth2ClientJSON())
|
|
|
|
if err != nil {
|
|
|
|
return r.updateReconciliationStatusError(ctx, c, hydrav1alpha1.StatusRegistrationFailed, err)
|
|
|
|
}
|
|
|
|
|
2019-08-21 12:10:25 +02:00
|
|
|
clientSecret := apiv1.Secret{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2019-09-13 14:37:29 +02:00
|
|
|
Name: c.Spec.SecretName,
|
|
|
|
Namespace: c.Namespace,
|
|
|
|
Labels: map[string]string{ownerLabel: c.Name},
|
2019-08-21 12:10:25 +02:00
|
|
|
},
|
|
|
|
Data: map[string][]byte{
|
2019-09-13 14:37:29 +02:00
|
|
|
ClientIDKey: []byte(*created.ClientID),
|
|
|
|
ClientSecretKey: []byte(*created.Secret),
|
2019-08-21 12:10:25 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
if err := r.Create(ctx, &clientSecret); err != nil {
|
|
|
|
return r.updateReconciliationStatusError(ctx, c, hydrav1alpha1.StatusCreateSecretFailed, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *OAuth2ClientReconciler) updateRegisteredOAuth2Client(ctx context.Context, c *hydrav1alpha1.OAuth2Client, credentials *hydra.Oauth2ClientCredentials) error {
|
|
|
|
if _, err := r.HydraClient.PutOAuth2Client(c.ToOAuth2ClientJSON().WithCredentials(credentials)); err != nil {
|
|
|
|
return r.updateReconciliationStatusError(ctx, c, hydrav1alpha1.StatusUpdateFailed, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *OAuth2ClientReconciler) unregisterOAuth2Clients(ctx context.Context, name, namespace string) error {
|
|
|
|
var secretList apiv1.SecretList
|
|
|
|
|
|
|
|
err := r.List(
|
|
|
|
ctx,
|
|
|
|
&secretList,
|
|
|
|
client.InNamespace(namespace),
|
|
|
|
client.MatchingLabels(map[string]string{ownerLabel: name}))
|
2019-08-30 13:47:27 +02:00
|
|
|
|
2019-08-21 12:10:25 +02:00
|
|
|
if err != nil {
|
2019-09-13 14:37:29 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(secretList.Items) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ids := make(map[string]struct{})
|
|
|
|
for _, s := range secretList.Items {
|
|
|
|
ids[string(s.Data[ClientIDKey])] = struct{}{}
|
|
|
|
}
|
|
|
|
|
|
|
|
for id := range ids {
|
|
|
|
if err := r.HydraClient.DeleteOAuth2Client(id); err != nil {
|
|
|
|
return err
|
2019-09-03 13:38:56 +02:00
|
|
|
}
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
return nil
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
func (r *OAuth2ClientReconciler) updateReconciliationStatusError(ctx context.Context, c *hydrav1alpha1.OAuth2Client, code hydrav1alpha1.StatusCode, err error) error {
|
|
|
|
r.Log.Error(err, fmt.Sprintf("error processing client %s/%s ", c.Name, c.Namespace), "oauth2client", "register")
|
|
|
|
c.Status.ObservedGeneration = c.Generation
|
|
|
|
c.Status.ReconciliationError = hydrav1alpha1.ReconciliationError{
|
|
|
|
Code: code,
|
|
|
|
Description: err.Error(),
|
|
|
|
}
|
|
|
|
if updateErr := r.Status().Update(ctx, c); updateErr != nil {
|
|
|
|
r.Log.Error(updateErr, fmt.Sprintf("status update failed for client %s/%s ", c.Name, c.Namespace), "oauth2client", "update status")
|
|
|
|
return updateErr
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseSecret(secret apiv1.Secret) (*hydra.Oauth2ClientCredentials, error) {
|
|
|
|
|
|
|
|
id, found := secret.Data[ClientIDKey]
|
|
|
|
if !found {
|
|
|
|
return nil, errors.New(`"client_id property missing"`)
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
psw, found := secret.Data[ClientSecretKey]
|
|
|
|
if !found {
|
|
|
|
return nil, errors.New(`"client_secret property missing"`)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &hydra.Oauth2ClientCredentials{
|
|
|
|
ID: id,
|
|
|
|
Password: psw,
|
|
|
|
}, nil
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
func (r *OAuth2ClientReconciler) labelSecretWithOwnerReference(ctx context.Context, c *hydrav1alpha1.OAuth2Client, secret apiv1.Secret) error {
|
|
|
|
|
|
|
|
if secret.Labels[ownerLabel] != c.Name {
|
|
|
|
if secret.Labels == nil {
|
|
|
|
secret.Labels = make(map[string]string, 1)
|
|
|
|
}
|
|
|
|
secret.Labels[ownerLabel] = c.Name
|
|
|
|
return r.Update(ctx, &secret)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|