2021-03-01 21:41:55 +00:00
|
|
|
// Copyright 2021 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package issuerconfig
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
"go.pinniped.dev/generated/latest/apis/concierge/config/v1alpha1"
|
|
|
|
"go.pinniped.dev/generated/latest/client/concierge/clientset/versioned"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UpdateStrategy creates or updates the desired strategy in the CredentialIssuer status.strategies field.
|
|
|
|
// The CredentialIssuer will be created if it does not already exist.
|
|
|
|
func UpdateStrategy(ctx context.Context,
|
|
|
|
name string,
|
|
|
|
credentialIssuerLabels map[string]string,
|
|
|
|
pinnipedAPIClient versioned.Interface,
|
|
|
|
strategy v1alpha1.CredentialIssuerStrategy,
|
|
|
|
) error {
|
|
|
|
return CreateOrUpdateCredentialIssuerStatus(
|
|
|
|
ctx,
|
|
|
|
name,
|
|
|
|
credentialIssuerLabels,
|
|
|
|
pinnipedAPIClient,
|
|
|
|
func(configToUpdate *v1alpha1.CredentialIssuerStatus) { mergeStrategy(configToUpdate, strategy) },
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func mergeStrategy(configToUpdate *v1alpha1.CredentialIssuerStatus, strategy v1alpha1.CredentialIssuerStrategy) {
|
|
|
|
var existing *v1alpha1.CredentialIssuerStrategy
|
|
|
|
for i := range configToUpdate.Strategies {
|
|
|
|
if configToUpdate.Strategies[i].Type == strategy.Type {
|
|
|
|
existing = &configToUpdate.Strategies[i]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if existing != nil {
|
|
|
|
strategy.DeepCopyInto(existing)
|
|
|
|
} else {
|
|
|
|
configToUpdate.Strategies = append(configToUpdate.Strategies, strategy)
|
|
|
|
}
|
|
|
|
sort.Stable(sortableStrategies(configToUpdate.Strategies))
|
2021-03-02 18:55:24 +00:00
|
|
|
|
|
|
|
// Special case: the "TokenCredentialRequestAPI" data is mirrored into the deprecated status.kubeConfigInfo field.
|
|
|
|
if strategy.Frontend != nil && strategy.Frontend.Type == v1alpha1.TokenCredentialRequestAPIFrontendType {
|
|
|
|
configToUpdate.KubeConfigInfo = &v1alpha1.CredentialIssuerKubeConfigInfo{
|
|
|
|
Server: strategy.Frontend.TokenCredentialRequestAPIInfo.Server,
|
|
|
|
CertificateAuthorityData: strategy.Frontend.TokenCredentialRequestAPIInfo.CertificateAuthorityData,
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 21:41:55 +00:00
|
|
|
}
|
|
|
|
|
2021-03-03 20:03:27 +00:00
|
|
|
// weights are a set of priorities for each strategy type.
|
|
|
|
//nolint: gochecknoglobals
|
|
|
|
var weights = map[v1alpha1.StrategyType]int{
|
|
|
|
v1alpha1.KubeClusterSigningCertificateStrategyType: 2, // most preferred strategy
|
|
|
|
v1alpha1.ImpersonationProxyStrategyType: 1,
|
|
|
|
// unknown strategy types will have weight 0 by default
|
|
|
|
}
|
|
|
|
|
2021-03-01 21:41:55 +00:00
|
|
|
type sortableStrategies []v1alpha1.CredentialIssuerStrategy
|
|
|
|
|
2021-03-03 20:03:27 +00:00
|
|
|
func (s sortableStrategies) Len() int { return len(s) }
|
|
|
|
func (s sortableStrategies) Less(i, j int) bool {
|
|
|
|
if wi, wj := weights[s[i].Type], weights[s[j].Type]; wi != wj {
|
|
|
|
return wi > wj
|
|
|
|
}
|
|
|
|
return s[i].Type < s[j].Type
|
|
|
|
}
|
|
|
|
func (s sortableStrategies) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|