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

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

    https://www.gnu.org/licenses/agpl-3.0.html

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 application

import (
	settings "k8s.libre.sh/application/settings"
	meta "k8s.libre.sh/meta"
	objects "k8s.libre.sh/objects"
)

type Component interface {
	meta.Instance
	GetMeta() meta.Instance
	SetDefaults()
	Init()
	GetObjects() map[int]objects.Object
	GetConfig() settings.Config
	HasSettings() []string
Timothee Gosselin's avatar
Timothee Gosselin committed
}

type ComponentMutate interface {
	GetObjects() map[int]objects.Object
Timothee Gosselin's avatar
Timothee Gosselin committed
}

Timothee Gosselin's avatar
Timothee Gosselin committed
func SetComponentSettings(i Component, s map[string]settings.Component) {
Timothee Gosselin's avatar
Timothee Gosselin committed
	for _, dep := range i.HasSettings() {
		foo := i.GetConfig()
Timothee Gosselin's avatar
Timothee Gosselin committed
		foo = settings.MergeSettings(s[dep].GetConfig(), foo)
	}
}
Timothee Gosselin's avatar
Timothee Gosselin committed

Timothee Gosselin's avatar
Timothee Gosselin committed
func InitComponentsFromSettings(cs map[string]Component, setts map[string]settings.Component) {
Timothee Gosselin's avatar
Timothee Gosselin committed
	for _, c := range cs {
		SetComponentSettings(c, setts)
	}
Timothee Gosselin's avatar
Timothee Gosselin committed
}