This repository was archived by the owner on Apr 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvirtual_network.go
126 lines (115 loc) · 4.07 KB
/
virtual_network.go
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
package edgecli
import (
"bytes"
"encoding/json"
"errors"
"fmt"
log "github.com/sirupsen/logrus"
"net/http"
)
type VirtualNetwork struct {
UUID string `json:"uuid"`
Name string `json:"name"`
OS string `json:"os"`
}
type JoinOption struct {
VirtualNetworkId string
DeviceId string
}
type UploadOption struct {
IP string
MacAddress string
SubnetMask string
DeviceId string
ScanResults []*ScanResult
}
type VirtualNetworkService struct {
HttpOption
}
type RegisterDeviceSubnetRouteRequest struct {
IP string `json:"ip" validate:"required,ipv4"`
MacAddr string `json:"mac_addr" validate:"required,mac"`
SubnetMask string `json:"subnet_mask" validate:"required,ipv4"`
Devices []*SubnetRouteDeviceRequest `json:"devices"`
}
type SubnetRouteDeviceRequest struct {
Name string `json:"name"`
IP string `json:"ip" validate:"required,ipv4"`
MacAddr string `json:"mac_addr" validate:"required,mac"`
}
func (s *VirtualNetworkService) List() ([]VirtualNetworkResponse, error) {
var url = s.BaseUrl + "/virtual-networks/all/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("content-type", "application/json")
req.Header.Set("Authorization", s.Token)
resp, _ := HandleCall(req)
log.Infof("List Virtual Network response %+v", resp)
switch resp.(type) {
case *SuccessResponse:
vnJson, _ := json.Marshal(resp.(*SuccessResponse).Data)
var vnResp []VirtualNetworkResponse
if err := json.Unmarshal(vnJson, &vnResp); err != nil {
return nil, errors.New(fmt.Sprintf("Fail to unmarshal response's data ,err is %+v", err))
}
return vnResp, nil
case *ErrorResponse:
return nil, errors.New(fmt.Sprintf("Fail to list user's virtual network, error message: %s", resp.(*ErrorResponse).Message))
default:
return nil, errors.New(fmt.Sprint("This client has some unpredictable problems, please contact the omniedge team."))
}
}
func (s *VirtualNetworkService) Join(opt *JoinOption) (*JoinVirtualNetworkResponse, error) {
var url = fmt.Sprintf(s.BaseUrl+"/virtual-networks/%s/devices/%s", opt.VirtualNetworkId, opt.DeviceId)
req, _ := http.NewRequest("POST", url, nil)
req.Header.Set("content-type", "application/json")
req.Header.Set("Authorization", s.Token)
resp, _ := HandleCall(req)
log.Tracef("JoinVitualNetwork response %+v", resp)
switch resp.(type) {
case *SuccessResponse:
joinVNJson, _ := json.Marshal(resp.(*SuccessResponse).Data)
joinVNResp := JoinVirtualNetworkResponse{}
if err := json.Unmarshal(joinVNJson, &joinVNResp); err != nil {
return nil, errors.New(fmt.Sprintf("Fail to unmarshal response's data ,err is %+v", err))
}
return &joinVNResp, nil
case *ErrorResponse:
return nil, errors.New(fmt.Sprintf("Fail to join, error message: %s", resp.(*ErrorResponse).Message))
default:
return nil, errors.New(fmt.Sprint("This client has some unpredictable problems, please contact the omniedge team."))
}
}
func (s *VirtualNetworkService) Upload(opt *UploadOption) error {
var url = fmt.Sprintf(s.BaseUrl+"/devices/%s/subnets", opt.DeviceId)
body := map[string]interface{}{
"ip": opt.IP,
"mac_addr": opt.MacAddress,
"subnet_mask": opt.SubnetMask,
"devices": make([]map[string]string, 0),
}
for _, scan := range opt.ScanResults {
if scan.MacAddress == "" {
continue
}
d := map[string]string{
"name": scan.HostName,
"ip": scan.IPv4,
"mac_addr": scan.MacAddress,
}
body["devices"] = append(body["devices"].([]map[string]string), d)
}
postBody, _ := json.Marshal(body)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(postBody))
req.Header.Set("content-type", "application/json")
req.Header.Set("Authorization", s.Token)
resp, _ := HandleCall(req)
log.Tracef("Upload Subnet response %+v", resp)
switch resp.(type) {
case *SuccessResponse:
return nil
case *ErrorResponse:
return errors.New(fmt.Sprintf("Fail to upload, error message: %s", resp.(*ErrorResponse).Message))
default:
return errors.New(fmt.Sprint("This client has some unpredictable problems, please contact the omniedge team."))
}
}