-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.go
87 lines (68 loc) · 1.75 KB
/
node.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
package machina
import (
"fmt"
"time"
"errors"
osType "github.com/debarshibasak/machina/ostype"
"github.com/debarshibasak/machina/sshclient"
)
type Node struct {
username string
ip string
osType string
privateKeyLocation string
verboseMode bool
}
func NewNode(username string, ip string, privateKeyLocation string) *Node {
return &Node{
username: username,
ip: ip,
privateKeyLocation: privateKeyLocation,
}
}
func (n *Node) GetUsername() string {
return n.username
}
func (n *Node) GetIP() string {
return n.ip
}
func (n *Node) GetPrivateKey() string {
return n.privateKeyLocation
}
func (n *Node) SetVerboseMode(mode bool) *Node {
n.verboseMode = mode
return n
}
func (n *Node) String() string {
return fmt.Sprintf("ip=%v username=%v key=%v", n.ip, n.username, n.privateKeyLocation)
}
func (n *Node) DetermineOS() (osType.OsType, error) {
client := n.SSHClient()
if err := client.Run("ls /etc/lsb-release"); err == nil {
return &osType.Ubuntu{}, err
}
if err := client.Run("ls /etc/centos-release"); err == nil {
return &osType.Centos{}, err
}
if err := client.Run("ls /etc/redhat-release"); err == nil {
return &osType.Centos{}, err
}
return &osType.Unknown{}, errors.New("unknown os type")
}
func (n *Node) SSHClient() *sshclient.SSHConnection {
return &sshclient.SSHConnection{
Username: n.username,
IP: n.ip,
KeyLocation: n.privateKeyLocation,
VerboseMode: n.verboseMode,
}
}
func (n *Node) SSHClientWithTimeout(duration time.Duration) *sshclient.SSHConnection {
return &sshclient.SSHConnection{
Username: n.username,
IP: n.ip,
KeyLocation: n.privateKeyLocation,
VerboseMode: n.verboseMode,
Timeout: duration,
}
}