Skip to content
component.go 1.41 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.
*/

Timothee Gosselin's avatar
Timothee Gosselin committed
package application
Timothee Gosselin's avatar
Timothee Gosselin committed

import (
	"github.com/presslabs/controller-util/syncer"
Timothee Gosselin's avatar
Timothee Gosselin committed
	settings "k8s.libre.sh/application/settings"
Timothee Gosselin's avatar
Timothee Gosselin committed
	interfaces "k8s.libre.sh/interfaces"
Timothee Gosselin's avatar
Timothee Gosselin committed
	meta "k8s.libre.sh/meta"
Timothee Gosselin's avatar
Timothee Gosselin committed
	objects "k8s.libre.sh/objects"
Timothee Gosselin's avatar
Timothee Gosselin committed
)

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

func NewSyncer(i Component, r interfaces.Reconcile, owner interfaces.Object) (syncers []syncer.Interface) {
	mutators := i.GetObjects()

	for _, m := range mutators {
Timothee Gosselin's avatar
Timothee Gosselin committed
		syncers = append(syncers, objects.NewObjectSyncer(m, owner, r))
Timothee Gosselin's avatar
Timothee Gosselin committed
	}

	return syncers
}
Timothee Gosselin's avatar
Timothee Gosselin committed

func InitComponent(i Instance, c Component) {

	component := c.GetComponent()

Timothee Gosselin's avatar
Timothee Gosselin committed
	meta.SetObjectMeta(i, c)
Timothee Gosselin's avatar
Timothee Gosselin committed
	if len(component) > 0 {
		c.SetComponent(component)
	}
Timothee Gosselin's avatar
Timothee Gosselin committed
	for _, o := range c.GetObjects() {
Timothee Gosselin's avatar
Timothee Gosselin committed
		meta.SetObjectMeta(c, o)
Timothee Gosselin's avatar
Timothee Gosselin committed
	}

}