-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalidate.go
More file actions
85 lines (68 loc) · 1.63 KB
/
validate.go
File metadata and controls
85 lines (68 loc) · 1.63 KB
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
package create
import (
"errors"
"os"
"strconv"
"strings"
"github.com/misha-ssh/kernel/pkg/connect"
"github.com/misha-ssh/kernel/pkg/kernel"
)
const (
MinPort = 1
MaxPort = 65535
)
var (
errPortIsNotString = errors.New("port is not string")
errPortRange = errors.New("port from 1 to 65535")
errFileNotExist = errors.New("file not exists")
errGetConnections = errors.New("get connections error")
errAliasExists = errors.New("alias exists")
errAliasIsNotEmpty = errors.New("alias is not empty")
preloadedConnections *connect.Connections
errPreloadedConnections error
)
// init Loads existing SSH connections at startup
func init() {
connections, err := kernel.List()
if err != nil {
errPreloadedConnections = err
}
preloadedConnections = connections
}
// aliasValidate validate on exists alias
func aliasValidate(alias string) error {
if strings.TrimSpace(alias) == "" || alias == "" {
return errAliasIsNotEmpty
}
if errPreloadedConnections != nil {
return errGetConnections
}
for _, connection := range preloadedConnections.Connects {
if connection.Alias == alias {
return errAliasExists
}
}
return nil
}
// portValidate validate on correctly port
func portValidate(s string) error {
port, err := strconv.Atoi(s)
if err != nil {
return errPortIsNotString
}
if port < MinPort || port > MaxPort {
return errPortRange
}
return nil
}
// privateKeyValidate validate on exists file
func privateKeyValidate(filename string) error {
if strings.TrimSpace(filename) == "" || filename == "" {
return nil
}
_, err := os.Stat(filename)
if err != nil {
return errFileNotExist
}
return nil
}