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 pathutils.go
183 lines (167 loc) · 4.14 KB
/
utils.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
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
package edgecli
import (
"bytes"
"crypto/rand"
"encoding/base64"
"encoding/hex"
"errors"
"fmt"
"github.com/google/uuid"
"github.com/panta/machineid"
log "github.com/sirupsen/logrus"
"net"
"os"
"os/user"
"path/filepath"
"runtime"
"strings"
)
var Env string
func LoadClientConfig() {
var data []byte
switch Env {
case "dev":
data, _ = Asset("config/dev.yml")
case "prod":
data, _ = Asset("config/prod.yml")
default:
data, _ = Asset("config/dev.yml")
}
ConfigV.SetConfigType("yaml")
if err := ConfigV.ReadConfig(bytes.NewReader(data)); err != nil {
log.Fatalf("Fail to load client config, please cotact team omniedge")
}
}
// HandleFilePrefix /** parse user input of auth file path
func HandleFilePrefix(authFile string) (string, error) {
// todo fix auth file handle
upperAuthFile := strings.ToUpper(authFile)
if strings.HasPrefix(authFile, "~") || strings.HasPrefix(upperAuthFile, "$HOME") {
usr, err := user.Current()
if err != nil {
log.Errorf("Fail to get the current home directory, please input the ")
return "", err
}
if strings.HasPrefix(authFile, "~") {
return strings.Replace(authFile, "~", usr.HomeDir, 1), nil
}
if strings.HasPrefix(upperAuthFile, "$HOME") {
res := usr.HomeDir + authFile[5:len(authFile)-1]
return res, nil
}
}
return authFile, nil
}
func GenerateInstanceId() string {
if addr, err := getMacAddress(); err == nil {
res := base64.StdEncoding.EncodeToString([]byte(addr))
return res
}
//todo use other as instance id
return ""
}
func HandleFileStatus(file string) error {
dir := filepath.Dir(file)
if _, err := os.Stat(file); err != nil {
if os.IsNotExist(err) {
return os.MkdirAll(dir, os.ModePerm)
} else {
return err
}
}
return nil
}
func getMacAddress() (string, error) {
netInterfaces, err := net.Interfaces()
if err != nil {
return "", errors.New(FailGetMacAddress)
}
mac, err := "", errors.New(FailGetMacAddress)
for i := 0; i < len(netInterfaces); i++ {
if (netInterfaces[i].Flags&net.FlagUp) != 0 && (netInterfaces[i].Flags&net.FlagLoopback) == 0 {
addrs, _ := netInterfaces[i].Addrs()
for _, address := range addrs {
ipNet, ok := address.(*net.IPNet)
if ok && ipNet.IP.IsGlobalUnicast() {
mac = netInterfaces[i].HardwareAddr.String()
return mac, nil
}
}
}
}
return mac, err
}
func RevealHardwareUUID() (string, error) {
id, err := machineid.ID()
if err != nil {
return "", errors.New(fmt.Sprintf("Fail to generate hardware id, err is %+v", err))
}
id = strings.ToLower(strings.Replace(id, "-", "", -1))
idBytes, err := hex.DecodeString(id)
if err != nil {
return "", errors.New(fmt.Sprintf("Fail to generate hardware id, err is %+v", err))
}
hardwareUUID, err := uuid.FromBytes(idBytes)
if err != nil {
return "", errors.New(fmt.Sprintf("Fail to generate hardware id, err is %+v", err))
}
return hardwareUUID.String(), nil
}
func RevealHostName() string {
name, err := os.Hostname()
if err != nil {
return ""
}
return name
}
func RevealOS() string {
return runtime.GOOS
}
func GenerateRandomMac() (string, error) {
buf := make([]byte, 6)
_, err := rand.Read(buf)
if err != nil {
return "", errors.New(fmt.Sprintf("Fail to generate random buf, err: %+v", err))
}
// Set the local bit
buf[0] &= 252
return fmt.Sprintf("%02x:%02x:%02x:%02x:%02x:%02x", buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]), nil
}
type DeviceNet struct {
IP string
MacAddress string
SubnetMask string
}
func GetCurrentDeviceNetStatus(cidrStr string) (*DeviceNet, error) {
netInterfaces, err := net.Interfaces()
if err != nil {
return nil, err
}
cidr, err := ParseCIDR(cidrStr)
if err != nil {
return nil, errors.New(fmt.Sprintf("Fail to parse cidr, %+v", err))
}
var ip, mac string
for _, netInterface := range netInterfaces {
addrs, _ := netInterface.Addrs()
for _, addr := range addrs {
tc, err := ParseCIDR(addr.String())
if err != nil {
continue
}
if cidr.Mask() == tc.Mask() {
ip = tc.Ip()
mac = netInterface.HardwareAddr.String()
break
}
}
if ip != "" || mac != "" {
break
}
}
return &DeviceNet{
IP: ip,
MacAddress: mac,
SubnetMask: cidr.Mask(),
}, nil
}