aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/plugins/network/plugin.go
blob: fb1631892d4a7588e84c59988b8f9a379d7dd847 (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
/*
Copyright 2018 Intel Corporation.
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 main

import (
	"k8splugin/plugins/network/v1"
	"regexp"

	utils "k8splugin/internal"

	pkgerrors "github.com/pkg/errors"
	"k8s.io/client-go/kubernetes"
)

func extractData(data string) (vnfID, cniType, networkName string) {
	re := regexp.MustCompile("_")
	split := re.Split(data, -1)
	if len(split) != 3 {
		return
	}
	vnfID = split[0]
	cniType = split[1]
	networkName = split[2]
	return
}

// Create an ONAP Network object
func Create(data *utils.ResourceData, client kubernetes.Interface) (string, error) {
	network := &v1.OnapNetwork{}
	if _, err := utils.DecodeYAML(data.YamlFilePath, network); err != nil {
		return "", pkgerrors.Wrap(err, "Decode network object error")
	}

	config, err := network.DecodeConfig()
	if err != nil {
		return "", pkgerrors.Wrap(err, "Fail to decode network's configuration")
	}

	cniType := config["cnitype"].(string)
	typePlugin, ok := utils.LoadedPlugins[cniType+"-network"]
	if !ok {
		return "", pkgerrors.New("No plugin for resource " + cniType + " found")
	}

	symCreateNetworkFunc, err := typePlugin.Lookup("CreateNetwork")
	if err != nil {
		return "", pkgerrors.Wrap(err, "Error fetching "+cniType+" plugin")
	}

	name, err := symCreateNetworkFunc.(func(*v1.OnapNetwork) (string, error))(network)
	if err != nil {
		return "", pkgerrors.Wrap(err, "Error during the creation for "+cniType+" plugin")
	}

	return data.VnfId + "_" + cniType + "_" + name, nil
}

// List of Networks
func List(namespace string, kubeclient kubernetes.Interface) ([]string, error) {
	return nil, nil
}

// Delete an existing Network
func Delete(name string, namespace string, kubeclient kubernetes.Interface) error {
	_, cniType, networkName := extractData(name)
	typePlugin, ok := utils.LoadedPlugins[cniType+"-network"]
	if !ok {
		return pkgerrors.New("No plugin for resource " + cniType + " found")
	}

	symDeleteNetworkFunc, err := typePlugin.Lookup("DeleteNetwork")
	if err != nil {
		return pkgerrors.Wrap(err, "Error fetching "+cniType+" plugin")
	}

	if err := symDeleteNetworkFunc.(func(string) error)(networkName); err != nil {
		return pkgerrors.Wrap(err, "Error during the deletion for "+cniType+" plugin")
	}

	return nil
}

// Get an existing Network
func Get(name string, namespace string, kubeclient kubernetes.Interface) (string, error) {
	return "", nil
}