Skip to content
component.go 8.02 KiB
Newer Older
Timothee Gosselin's avatar
Timothee Gosselin committed
/*

Timothee Gosselin's avatar
Timothee Gosselin committed
Licensed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (the "License");
Timothee Gosselin's avatar
Timothee Gosselin committed
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

Timothee Gosselin's avatar
Timothee Gosselin committed
    https://www.gnu.org/licenses/agpl-3.0.html
Timothee Gosselin's avatar
Timothee Gosselin committed

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.
*/

Timothee Gosselin's avatar
Timothee Gosselin committed
package settings
Timothee Gosselin's avatar
Timothee Gosselin committed

import (
Timothee Gosselin's avatar
Timothee Gosselin committed
	corev1 "k8s.io/api/core/v1"
	"sigs.k8s.io/controller-runtime/pkg/client"

	"k8s.libre.sh/application/settings/parameters"
	"k8s.libre.sh/meta"
	"k8s.libre.sh/objects"
	"k8s.libre.sh/objects/configmap"
	"k8s.libre.sh/objects/secret"
)

const (
	// Generate settings as env variables in a configMap or Secret
	GenEnvFile SettingsGenerate = "envFile"
)

const (
	// Generate settings as env variables in a configMap or Secret
	SecretSettings SettingsType = "secret"
)

type SettingsGenerate string
type SettingsType string

Timothee Gosselin's avatar
Timothee Gosselin committed
// +kubebuilder:object:generate=true
Timothee Gosselin's avatar
Timothee Gosselin committed
type Component struct {
	CommonMeta *meta.ObjectMeta `json:"commonMeta,omitempty"`
	SecretMeta *meta.ObjectMeta `json:"secretMeta,omitempty"`
	ConfigMeta *meta.ObjectMeta `json:"configMeta,omitempty"`
	//	DefaultType      parameters.ParameterType `json:"defaultType,omitempty"`
	//	DefaultMountType parameters.MountType     `json:"defaultMountType,omitempty"`
	//	Template             string    json:"template,omitempty"`
	Generate     SettingsGenerate `json:"generate,omitempty"`
	SettingsType SettingsType     `json:"type,omitempty"`
	*ConfigSpec  `json:",inline"`
}

// ConfigSpec defines a list of parameters and references to resources from which those parameters can be fetched
// Only secrets and configmaps in the same namespace are supported as references
// +kubebuilder:object:generate=true
type SettingsSpec struct {
	Sources []Source `json:"sources,omitempty"`
	// Parameters is a list of parameters
	*parameters.Parameters `json:"parameters,omitempty"`
}

type CreateOptions struct {
	CommonMeta *meta.ObjectMeta `json:"commonMeta,omitempty"`
	SecretMeta *meta.ObjectMeta `json:"secretMeta,omitempty"`
	ConfigMeta *meta.ObjectMeta `json:"configMeta,omitempty"`
	//	DefaultType      parameters.ParameterType `json:"defaultType,omitempty"`
	//	DefaultMountType parameters.MountType     `json:"defaultMountType,omitempty"`
	//	Template             string    json:"template,omitempty"`
	Generate     SettingsGenerate `json:"generate,omitempty"`
	SettingsType SettingsType     `json:"type,omitempty"`
Timothee Gosselin's avatar
Timothee Gosselin committed
}

Timothee Gosselin's avatar
Timothee Gosselin committed
func (s *Component) GetConfig() Config { return s.ConfigSpec }
Timothee Gosselin's avatar
Timothee Gosselin committed

Timothee Gosselin's avatar
Timothee Gosselin committed
func (s *Component) GetMeta() meta.Instance { return s.CommonMeta }
Timothee Gosselin's avatar
Timothee Gosselin committed

Timothee Gosselin's avatar
Timothee Gosselin committed
func (s *Component) GetSecretMeta() meta.Instance { return s.SecretMeta }
Timothee Gosselin's avatar
Timothee Gosselin committed

Timothee Gosselin's avatar
Timothee Gosselin committed
func (s *Component) GetConfigMapMeta() meta.Instance { return s.ConfigMeta }
Timothee Gosselin's avatar
Timothee Gosselin committed

Timothee Gosselin's avatar
Timothee Gosselin committed
func (s *Component) SetDefaults() {
Timothee Gosselin's avatar
Timothee Gosselin committed
	// TODO TO FIX DUPLICATE WITH INIT
Timothee Gosselin's avatar
Timothee Gosselin committed
	meta.SetObjectMeta(s.CommonMeta, s.SecretMeta)
	meta.SetObjectMeta(s.CommonMeta, s.ConfigMeta)
}

Timothee Gosselin's avatar
Timothee Gosselin committed
func (s *Component) GetObjects() map[int]objects.Object {
Timothee Gosselin's avatar
Timothee Gosselin committed

	cm := &configmap.ConfigMap{
Timothee Gosselin's avatar
Timothee Gosselin committed
		ObjectMeta: s.ConfigMeta,
Timothee Gosselin's avatar
Timothee Gosselin committed
	}

	secret := &secret.Secret{
Timothee Gosselin's avatar
Timothee Gosselin committed
		ObjectMeta: s.SecretMeta,
Timothee Gosselin's avatar
Timothee Gosselin committed
	}

	objs := make(map[int]objects.Object, 2)

	genConfigParams := []string{}
	genSecretParams := []string{}

Timothee Gosselin's avatar
Timothee Gosselin committed
	for _, p := range *s.ConfigSpec.Parameters {
Timothee Gosselin's avatar
Timothee Gosselin committed
		if p.MountType == parameters.MountEnvFile &&
			// TODO TO FIX
			(p.Type == parameters.SecretParameter || p.Type == "") &&
Timothee Gosselin's avatar
Timothee Gosselin committed
			len(p.Value) > 0 {
			if p.Generate != parameters.GenerateTemplate && p.Generate != "" {
				genSecretParams = append(genSecretParams, p.Key)
			}
Timothee Gosselin's avatar
Timothee Gosselin committed
			secret.Parameters = append(secret.Parameters, p)
		}
		if p.MountType == parameters.MountEnvFile &&
			p.Type == parameters.ConfigParameter &&
			len(p.Value) > 0 {
			if p.Generate != parameters.GenerateTemplate && p.Generate != "" {
				genConfigParams = append(genConfigParams, p.Key)
			}
Timothee Gosselin's avatar
Timothee Gosselin committed
			cm.Parameters = append(cm.Parameters, p)
		}
	}

	if len(genSecretParams) > 0 {
		if len(secret.ObjectMeta.Annotations) == 0 {
			secret.ObjectMeta.Annotations = make(map[string]string)
		}
		secret.ObjectMeta.Annotations["settings.k8s.libre.sh/generate"] = strings.Join(genSecretParams, ",")

	}

	if len(genConfigParams) > 0 {
		if len(secret.ObjectMeta.Annotations) == 0 {
			cm.ObjectMeta.Annotations = make(map[string]string)
		}
		secret.ObjectMeta.Annotations["settings.k8s.libre.sh/generate"] = strings.Join(genConfigParams, ",")
	}

Timothee Gosselin's avatar
Timothee Gosselin committed
	// TODO IMPROVE
Timothee Gosselin's avatar
Timothee Gosselin committed
	if len(cm.Parameters) > 0 {
		objs[0] = cm
	}

	if len(secret.Parameters) > 0 {
		if objs[0] == nil {
			objs[0] = secret

		} else {
			objs[1] = secret
		}
	}

	return objs
}

Timothee Gosselin's avatar
Timothee Gosselin committed
func (s *Component) Init(c client.Client) error {
Timothee Gosselin's avatar
Timothee Gosselin committed
	// TODO TO FIX DUPLICATE WITH SETDEFAULTS
	meta.SetObjectMeta(s.CommonMeta, s.ConfigMeta)
	meta.SetObjectMeta(s.CommonMeta, s.SecretMeta)
Timothee Gosselin's avatar
Timothee Gosselin committed
	err := InitParametersValueFrom(s, c)

	if err != nil {
		return err
	}

	s.InitRandValues()

	err = s.InitTemplateValues(parameters.KeyPairValues(s.Parameters))

Timothee Gosselin's avatar
Timothee Gosselin committed
	return nil
}

// InitParametersValueFrom intialise the parameters with values provided in external resources in the same namespace
Timothee Gosselin's avatar
Timothee Gosselin committed
// All parameters values are filled from those resources
// Only Secrets and Configmaps are supported
Timothee Gosselin's avatar
Timothee Gosselin committed
func InitParametersValueFrom(s *Component, c client.Client) error {
Timothee Gosselin's avatar
Timothee Gosselin committed

	params := parameters.Parameters{}

	paramsByKey := parameters.ParametersByKey(s.Parameters)
Timothee Gosselin's avatar
Timothee Gosselin committed
	paramsBySecretSource, paramsByConfigMapSource := OrderByResourceRef(s.ConfigSpec)
Timothee Gosselin's avatar
Timothee Gosselin committed

	cm := &corev1.ConfigMap{}
	sec := &corev1.Secret{}

	cm.SetNamespace(s.CommonMeta.GetNamespace())
	sec.SetNamespace(s.CommonMeta.GetNamespace())

	for k, v := range paramsBySecretSource {
		sec.SetName(k)
Timothee Gosselin's avatar
Timothee Gosselin committed
		err := parameters.GetAndMergeParameters(v, paramsByKey, c, sec)
		if err != nil {
			return err
		}
	}

	for k, v := range paramsByConfigMapSource {
		cm.SetName(k)
Timothee Gosselin's avatar
Timothee Gosselin committed
		err := parameters.GetAndMergeParameters(v, paramsByKey, c, cm)
Timothee Gosselin's avatar
Timothee Gosselin committed
		if err != nil {
			return err
		}
	}

	secretSrc := Source{
		Ref:  s.GetSecretMeta().GetName(),
		Type: "secret",
	}
	configSrc := Source{
		Ref:  s.GetSecretMeta().GetName(),
		Type: "configmap",
	}

	if s.Generate == GenEnvFile {
		//	s.SecretRefs = []string{s.GetSecretMeta().GetName()}
		//	s.ConfigRefs = []string{s.GetConfigMapMeta().GetName()}

		s.Sources = []Source{}

		if len(paramsByConfigMapSource) > 0 {
			s.Sources = append(s.Sources, configSrc)
		}

		if len(paramsBySecretSource) > 0 {
			s.Sources = append(s.Sources, secretSrc)
		}

		for _, v := range paramsByKey {
			v.MountType = parameters.MountEnvFile
			v.Ref = ""
			params = append(params, v)
		}
		s.Parameters = &params

		return nil
	}

	addSecretSrc := false
	addConfigSrc := false

Timothee Gosselin's avatar
Timothee Gosselin committed
	for _, v := range paramsByKey {
		if v.MountType == parameters.MountEnvFile {
			v.Ref = ""

			if !addConfigSrc && v.Type == parameters.ConfigParameter {
				s.Sources = append(s.Sources, configSrc)
				addConfigSrc = true
			} else if !addSecretSrc && v.Type == parameters.SecretParameter {
				s.Sources = append(s.Sources, secretSrc)
				addSecretSrc = true
Timothee Gosselin's avatar
Timothee Gosselin committed
			}
		}
		params = append(params, v)
	}

	s.Parameters = &params

	return nil
}

// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SettingsSpec) DeepCopyInto(out *SettingsSpec) {
	*out = *in
	if in.Sources != nil {
		in, out := &in.Sources, &out.Sources
		*out = make([]Source, len(*in))
		copy(*out, *in)
	}
	if in.Parameters != nil {
		in, out := &in.Parameters, &out.Parameters
		*out = new(parameters.Parameters)
		if **in != nil {
			in, out := *in, *out
			*out = make([]*parameters.Parameter, len(*in))
			for i := range *in {
				if (*in)[i] != nil {
					in, out := &(*in)[i], &(*out)[i]
					*out = new(parameters.Parameter)
					**out = **in
				}
			}
		}
	}
}

// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SettingsSpec.
func (in *SettingsSpec) DeepCopy() *SettingsSpec {
	if in == nil {
		return nil
	}
	out := new(SettingsSpec)
	in.DeepCopyInto(out)
	return out
}