aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/internal/rb/config_template.go
blob: b84b64611c263d5a8eb41afc831a0fa876902209 (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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
 * Copyright 2018 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 rb

import (
	"bytes"
	"encoding/json"
	"io/ioutil"
	"os"
	"path/filepath"

	"github.com/onap/multicloud-k8s/src/k8splugin/internal/db"

	"encoding/base64"

	"log"

	pkgerrors "github.com/pkg/errors"
)

// ConfigTemplate contains the parameters needed for ConfigTemplates
type ConfigTemplate struct {
	TemplateName string `json:"template-name"`
	Description  string `json:"description"`
	ChartName    string
}

// ConfigTemplateManager is an interface exposes the resource bundle  ConfigTemplate functionality
type ConfigTemplateManager interface {
	Create(rbName, rbVersion string, p ConfigTemplate) error
	Get(rbName, rbVersion, templateName string) (ConfigTemplate, error)
	List(rbName, rbVersion string) ([]ConfigTemplate, error)
	Delete(rbName, rbVersion, templateName string) error
	Upload(rbName, rbVersion, templateName string, inp []byte) error
}

// ConfigTemplateKey is key struct
type ConfigTemplateKey struct {
	RBName       string `json:"rb-name"`
	RBVersion    string `json:"rb-version"`
	TemplateName string `json:"template-name"`
}

// We will use json marshalling to convert to string to
// preserve the underlying structure.
func (dk ConfigTemplateKey) String() string {
	out, err := json.Marshal(dk)
	if err != nil {
		return ""
	}

	return string(out)
}

// ConfigTemplateClient implements the  ConfigTemplateManager
// It will also be used to maintain some localized state
type ConfigTemplateClient struct {
	storeName  string
	tagMeta    string
	tagContent string
}

// NewConfigTemplateClient returns an instance of the  ConfigTemplateClient
// which implements the  ConfigTemplateManager
func NewConfigTemplateClient() *ConfigTemplateClient {
	return &ConfigTemplateClient{
		storeName:  "rbdef",
		tagMeta:    "confdefmetadata",
		tagContent: "confdefcontent",
	}
}

// Create an entry for the resource bundle  ConfigTemplate in the database
func (v *ConfigTemplateClient) Create(rbName, rbVersion string, p ConfigTemplate) error {

	log.Printf("[ConfigiTemplate]: create %s", rbName)
	// Name is required
	if p.TemplateName == "" {
		return pkgerrors.New("Name is required for Resource Bundle  ConfigTemplate")
	}

	//Check if  ConfigTemplate already exists
	_, err := v.Get(rbName, rbVersion, p.TemplateName)
	if err == nil {
		return pkgerrors.New(" ConfigTemplate already exists for this Definition")
	}

	//Check if provided resource bundle information is valid
	_, err = NewDefinitionClient().Get(rbName, rbVersion)
	if err != nil {
		return pkgerrors.Errorf("Invalid Resource Bundle ID provided: %s", err.Error())
	}

	key := ConfigTemplateKey{
		RBName:       rbName,
		RBVersion:    rbVersion,
		TemplateName: p.TemplateName,
	}

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

	return nil
}

// Get returns the Resource Bundle  ConfigTemplate for corresponding ID
func (v *ConfigTemplateClient) Get(rbName, rbVersion, templateName string) (ConfigTemplate, error) {
	key := ConfigTemplateKey{
		RBName:       rbName,
		RBVersion:    rbVersion,
		TemplateName: templateName,
	}
	value, err := db.DBconn.Read(v.storeName, key, v.tagMeta)
	if err != nil {
		return ConfigTemplate{}, pkgerrors.Wrap(err, "Get ConfigTemplate")
	}

	//value is a byte array
	if value != nil {
		template := ConfigTemplate{}
		err = db.DBconn.Unmarshal(value, &template)
		if err != nil {
			return ConfigTemplate{}, pkgerrors.Wrap(err, "Unmarshaling  ConfigTemplate Value")
		}
		return template, nil
	}

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

// List returns the Resource Bundle ConfigTemplate for corresponding ID
func (v *ConfigTemplateClient) List(rbName, rbVersion string) ([]ConfigTemplate, error) {

	//Get all config templates
	dbres, err := db.DBconn.ReadAll(v.storeName, v.tagMeta)
	if err != nil || len(dbres) == 0 {
		return []ConfigTemplate{}, pkgerrors.Wrap(err, "No Config Templates Found")
	}

	var results []ConfigTemplate
	for key, value := range dbres {
		//value is a byte array
		if value != nil {
			tmp := ConfigTemplate{}
			err = db.DBconn.Unmarshal(value, &tmp)
			if err != nil {
				log.Printf("[ConfigTemplate] Error: %s Unmarshaling value for: %s", err.Error(), key)
				continue
			}
			keyTmp := ConfigTemplateKey{
				RBName:       rbName,
				RBVersion:    rbVersion,
				TemplateName: tmp.TemplateName,
			}
			_, err := db.DBconn.Read(v.storeName, keyTmp, v.tagMeta)
			if err == nil && keyTmp.RBName == rbName && keyTmp.RBVersion == rbVersion {
				results = append(results, tmp)
			}
		}
	}

	if len(results) == 0 {
		return results, pkgerrors.New("No Config Templates Found for Definition and Version")
	}

	return results, nil
}

// Delete the Resource Bundle  ConfigTemplate from database
func (v *ConfigTemplateClient) Delete(rbName, rbVersion, templateName string) error {
	key := ConfigTemplateKey{
		RBName:       rbName,
		RBVersion:    rbVersion,
		TemplateName: templateName,
	}
	err := db.DBconn.Delete(v.storeName, key, v.tagMeta)
	if err != nil {
		return pkgerrors.Wrap(err, "Delete ConfigTemplate")
	}

	err = db.DBconn.Delete(v.storeName, key, v.tagContent)
	if err != nil {
		return pkgerrors.Wrap(err, "Delete  ConfigTemplate Content")
	}

	return nil
}

// Upload the contents of resource bundle into database
func (v *ConfigTemplateClient) Upload(rbName, rbVersion, templateName string, inp []byte) error {

	log.Printf("[ConfigTemplate]: Upload %s", templateName)
	key := ConfigTemplateKey{
		RBName:       rbName,
		RBVersion:    rbVersion,
		TemplateName: templateName,
	}
	//ignore the returned data here.
	t, err := v.Get(rbName, rbVersion, templateName)
	if err != nil {
		return pkgerrors.Errorf("Invalid  ConfigTemplate Name  provided %s", err.Error())
	}

	err = isTarGz(bytes.NewBuffer(inp))
	if err != nil {
		return pkgerrors.Errorf("Error in file format %s", err.Error())
	}

	chartBasePath, err := ExtractTarBall(bytes.NewBuffer(inp))
	if err != nil {
		return pkgerrors.Wrap(err, "Extracting Template")
	}

	finfo, err := ioutil.ReadDir(chartBasePath)
	if err != nil {
		return pkgerrors.Wrap(err, "Detecting chart name")
	}

	//Store the first directory with Chart.yaml found as the chart name
	for _, f := range finfo {
		if f.IsDir() {
			//Check if Chart.yaml exists
			if _, err = os.Stat(filepath.Join(chartBasePath, f.Name(), "Chart.yaml")); err == nil {
				t.ChartName = f.Name()
				break
			}
		}
	}
	if t.ChartName == "" {
		return pkgerrors.New("Invalid template no Chart.yaml file found")
	}

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

	//Encode given byte stream to text for storage
	encodedStr := base64.StdEncoding.EncodeToString(inp)
	err = db.DBconn.Create(v.storeName, key, v.tagContent, encodedStr)
	if err != nil {
		return pkgerrors.Errorf("Error uploading data to db %s", err.Error())
	}

	return nil
}

// Download the contents of the ConfigTemplate from DB
// Returns a byte array of the contents
func (v *ConfigTemplateClient) Download(rbName, rbVersion, templateName string) ([]byte, error) {

	log.Printf("[ConfigTemplate]: Download %s", templateName)
	//ignore the returned data here
	//Check if rb is valid
	_, err := v.Get(rbName, rbVersion, templateName)
	if err != nil {
		return nil, pkgerrors.Errorf("Invalid  ConfigTemplate Name provided: %s", err.Error())
	}

	key := ConfigTemplateKey{
		RBName:       rbName,
		RBVersion:    rbVersion,
		TemplateName: templateName,
	}
	value, err := db.DBconn.Read(v.storeName, key, v.tagContent)
	if err != nil {
		return nil, pkgerrors.Wrap(err, "Get Resource ConfigTemplate content")
	}

	if value != nil {
		//Decode the string from base64
		out, err := base64.StdEncoding.DecodeString(string(value))
		if err != nil {
			return nil, pkgerrors.Wrap(err, "Decode base64 string")
		}

		if out != nil && len(out) != 0 {
			return out, nil
		}
	}
	return nil, pkgerrors.New("Error downloading  ConfigTemplate content")
}