aboutsummaryrefslogtreecommitdiffstats
path: root/src/ovnaction/pkg/module/workloadintent.go
blob: e691695459513726b16f8137d3a79de8ef2fe11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 * Copyright 2020 Intel Corporation, Inc
 *
 * 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 module

import (
	"github.com/onap/multicloud-k8s/src/orchestrator/pkg/infra/db"

	pkgerrors "github.com/pkg/errors"
)

// WorkloadIntent contains the parameters needed for dynamic networks
type WorkloadIntent struct {
	Metadata Metadata           `json:"metadata"`
	Spec     WorkloadIntentSpec `json:"spec"`
}

type WorkloadIntentSpec struct {
	AppName          string `json:"application-name"`
	WorkloadResource string `json:"workload-resource"`
	Type             string `json:"type"`
}

// WorkloadIntentKey is the key structure that is used in the database
type WorkloadIntentKey struct {
	Project             string `json:"provider"`
	CompositeApp        string `json:"compositeapp"`
	CompositeAppVersion string `json:"compositeappversion"`
	NetControlIntent    string `json:"netcontrolintent"`
	WorkloadIntent      string `json:"workloadintent"`
}

// Manager is an interface exposing the WorkloadIntent functionality
type WorkloadIntentManager interface {
	CreateWorkloadIntent(wi WorkloadIntent, project, compositeapp, compositeappversion, netcontrolintent string, exists bool) (WorkloadIntent, error)
	GetWorkloadIntent(name, project, compositeapp, compositeappversion, netcontrolintent string) (WorkloadIntent, error)
	GetWorkloadIntents(project, compositeapp, compositeappversion, netcontrolintent string) ([]WorkloadIntent, error)
	DeleteWorkloadIntent(name, project, compositeapp, compositeappversion, netcontrolintent string) error
}

// WorkloadIntentClient implements the Manager
// It will also be used to maintain some localized state
type WorkloadIntentClient struct {
	db ClientDbInfo
}

// NewWorkloadIntentClient returns an instance of the WorkloadIntentClient
// which implements the Manager
func NewWorkloadIntentClient() *WorkloadIntentClient {
	return &WorkloadIntentClient{
		db: ClientDbInfo{
			storeName: "orchestrator",
			tagMeta:   "workloadintentmetadata",
		},
	}
}

// CreateWorkloadIntent - create a new WorkloadIntent
func (v *WorkloadIntentClient) CreateWorkloadIntent(wi WorkloadIntent, project, compositeapp, compositeappversion, netcontrolintent string, exists bool) (WorkloadIntent, error) {

	//Construct key and tag to select the entry
	key := WorkloadIntentKey{
		Project:             project,
		CompositeApp:        compositeapp,
		CompositeAppVersion: compositeappversion,
		NetControlIntent:    netcontrolintent,
		WorkloadIntent:      wi.Metadata.Name,
	}

	//Check if the Network Control Intent exists
	_, err := NewNetControlIntentClient().GetNetControlIntent(netcontrolintent, project, compositeapp, compositeappversion)
	if err != nil {
		return WorkloadIntent{}, pkgerrors.Errorf("Network Control Intent %v does not exist", netcontrolintent)
	}

	//Check if this WorkloadIntent already exists
	_, err = v.GetWorkloadIntent(wi.Metadata.Name, project, compositeapp, compositeappversion, netcontrolintent)
	if err == nil && !exists {
		return WorkloadIntent{}, pkgerrors.New("WorkloadIntent already exists")
	}

	err = db.DBconn.Insert(v.db.storeName, key, nil, v.db.tagMeta, wi)
	if err != nil {
		return WorkloadIntent{}, pkgerrors.Wrap(err, "Creating DB Entry")
	}

	return wi, nil
}

// GetWorkloadIntent returns the WorkloadIntent for corresponding name
func (v *WorkloadIntentClient) GetWorkloadIntent(name, project, compositeapp, compositeappversion, netcontrolintent string) (WorkloadIntent, error) {

	//Construct key and tag to select the entry
	key := WorkloadIntentKey{
		Project:             project,
		CompositeApp:        compositeapp,
		CompositeAppVersion: compositeappversion,
		NetControlIntent:    netcontrolintent,
		WorkloadIntent:      name,
	}

	value, err := db.DBconn.Find(v.db.storeName, key, v.db.tagMeta)
	if err != nil {
		return WorkloadIntent{}, pkgerrors.Wrap(err, "Get WorkloadIntent")
	}

	//value is a byte array
	if value != nil {
		wi := WorkloadIntent{}
		err = db.DBconn.Unmarshal(value[0], &wi)
		if err != nil {
			return WorkloadIntent{}, pkgerrors.Wrap(err, "Unmarshalling Value")
		}
		return wi, nil
	}

	return WorkloadIntent{}, pkgerrors.New("Error getting WorkloadIntent")
}

// GetWorkloadIntentList returns all of the WorkloadIntent for corresponding name
func (v *WorkloadIntentClient) GetWorkloadIntents(project, compositeapp, compositeappversion, netcontrolintent string) ([]WorkloadIntent, error) {

	//Construct key and tag to select the entry
	key := WorkloadIntentKey{
		Project:             project,
		CompositeApp:        compositeapp,
		CompositeAppVersion: compositeappversion,
		NetControlIntent:    netcontrolintent,
		WorkloadIntent:      "",
	}

	var resp []WorkloadIntent
	values, err := db.DBconn.Find(v.db.storeName, key, v.db.tagMeta)
	if err != nil {
		return []WorkloadIntent{}, pkgerrors.Wrap(err, "Get WorkloadIntents")
	}

	for _, value := range values {
		wi := WorkloadIntent{}
		err = db.DBconn.Unmarshal(value, &wi)
		if err != nil {
			return []WorkloadIntent{}, pkgerrors.Wrap(err, "Unmarshalling Value")
		}
		resp = append(resp, wi)
	}

	return resp, nil
}

// Delete the  WorkloadIntent from database
func (v *WorkloadIntentClient) DeleteWorkloadIntent(name, project, compositeapp, compositeappversion, netcontrolintent string) error {

	//Construct key and tag to select the entry
	key := WorkloadIntentKey{
		Project:             project,
		CompositeApp:        compositeapp,
		CompositeAppVersion: compositeappversion,
		NetControlIntent:    netcontrolintent,
		WorkloadIntent:      name,
	}

	err := db.DBconn.Remove(v.db.storeName, key)
	if err != nil {
		return pkgerrors.Wrap(err, "Delete WorkloadIntent Entry;")
	}

	return nil
}