Merge "Added condition for http and https"
[ealt-edge.git] / mep / mepagent / pkg / service / util.go
1 /*
2  *  Copyright 2020 Huawei Technologies Co., Ltd.
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  */
16
17 package service
18
19 import (
20         "errors"
21         "gopkg.in/yaml.v2"
22         "io/ioutil"
23         "net/http"
24         "strings"
25         "github.com/akraino-edge-stack/ealt-edge/mep/mepagent/pkg/model"
26 )
27
28 // get yaml and parse to struct
29 func GetConf(path string) (model.AppInstanceInfo, error) {
30         yamlFile, err := ioutil.ReadFile(path)
31         var info model.AppInstanceInfo
32         if err != nil {
33                 return info, err
34         }
35
36         err = yaml.UnmarshalStrict(yamlFile, &info)
37
38         if err != nil {
39                 return info, err
40         }
41
42         return info, nil
43 }
44
45 // register to mep
46 func RegisterToMep(param string, url string) (string, error) {
47         response, err := http.Post(url, "application/json", strings.NewReader(param))
48         if err != nil {
49                 return "", err
50         }
51
52         if response.StatusCode != http.StatusCreated {
53                 return "", errors.New("created failed")
54         }
55         defer response.Body.Close()
56         body, err2 := ioutil.ReadAll(response.Body)
57         if err2 != nil {
58                 return "", err2
59         }
60
61         return string(body), nil
62 }