-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssh.go
118 lines (102 loc) · 2.66 KB
/
ssh.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
package main
import (
"bytes"
"fmt"
"github.com/pkg/sftp"
"golang.org/x/crypto/ssh"
"io"
"os"
"path/filepath"
"strings"
"time"
)
type sshClient struct {
ssh *ssh.Client
sftp *sftp.Client
}
func newSSHClient(host, username, password string, port, timeout int) (*sshClient, error) {
var client = &sshClient{}
var err error
client.ssh, err = ssh.Dial(
"tcp",
fmt.Sprintf("%s:%d", host, port),
&ssh.ClientConfig{
User: username,
Auth: []ssh.AuthMethod{ssh.Password(password)},
Timeout: time.Duration(timeout) * time.Second,
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
})
if err != nil {
return nil, fmt.Errorf("ssh.Dial->%w", err)
}
client.sftp, err = sftp.NewClient(client.ssh)
if err != nil {
return nil, fmt.Errorf("sftp.NewClient->%w", err)
}
return client, nil
}
func (c *sshClient) putFile(localFile, remoteFile string) error {
srcFile, err := os.Open(localFile)
if err != nil {
return fmt.Errorf("os.Open->%s %w", localFile, err)
}
defer func() { _ = srcFile.Close() }()
pwd, _ := c.sftp.Getwd()
dir := filepath.Dir(filepath.Join(pwd, remoteFile))
err = c.sftp.MkdirAll(strings.ReplaceAll(dir, string(os.PathSeparator), "/"))
if err != nil {
return fmt.Errorf("sftp.MkdirAll->%s %w", dir, err)
}
dstFile, err := c.sftp.Create(remoteFile)
if err != nil {
return fmt.Errorf("sftp.Create->%s %w", remoteFile, err)
}
defer func() { _ = dstFile.Close() }()
_, err = io.Copy(dstFile, srcFile)
if err != nil {
return fmt.Errorf("io.Copy->%w", err)
}
return nil
}
func (c *sshClient) getFile(remoteFile, localFile string) error {
srcFile, err := c.sftp.Open(remoteFile)
if err != nil {
return fmt.Errorf("sftp.Open->%s %w", remoteFile, err)
}
defer func() { _ = srcFile.Close() }()
pwd, _ := os.Getwd()
dir := filepath.Dir(filepath.Join(pwd, localFile))
err = os.MkdirAll(dir, 0666)
if err != nil {
return fmt.Errorf("os.MkdirAll->%s %w", dir, err)
}
dstFile, err := os.Create(localFile)
if err != nil {
return fmt.Errorf("os.Create->%s %w", localFile, err)
}
defer func() { _ = dstFile.Close() }()
_, err = io.Copy(dstFile, srcFile)
if err != nil {
return fmt.Errorf("io.Copy->%w", err)
}
return nil
}
func (c *sshClient) execShell(script []byte) error {
session, err := c.ssh.NewSession()
if err != nil {
return fmt.Errorf("ssh.NewSession->%w", err)
}
defer func() { _ = session.Close() }()
session.Stdin = bytes.NewReader(script)
session.Stdout = os.Stdout
err = session.Start("/bin/bash -i")
if err != nil {
return fmt.Errorf("session.Shell->%w", err)
}
return session.Wait()
}
func (c *sshClient) exit() error {
_ = c.sftp.Close()
_ = c.ssh.Close()
return nil
}