-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsftp.go
177 lines (140 loc) · 3.44 KB
/
sftp.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
package main
import (
"fmt"
"io"
"log"
"net"
"os"
"time"
"github.com/pkg/sftp"
"golang.org/x/crypto/ssh"
"golang.org/x/text/language"
"golang.org/x/text/message"
)
func sftp_download(params CloudShellEnv) {
file, err := env_get_ssh_pkey()
if err != nil {
fmt.Println("\nTip: Run the command: \"gcloud alpha cloud-shell ssh --dry-run\" to setup Cloud Shell SSH keys")
return
}
sshConfig := &ssh.ClientConfig{
User: params.SshUsername,
Auth: []ssh.AuthMethod{
PublicKeyFile(file),
},
HostKeyCallback: func(hostname string, remote net.Addr, key ssh.PublicKey) error {
return nil
},
}
sshHost := params.SshHost
sshPort := fmt.Sprint(params.SshPort)
host := sshHost + ":" + sshPort
if config.Debug == true {
fmt.Println("Dial")
fmt.Println(host)
}
connection, err := ssh.Dial("tcp", host, sshConfig)
if err != nil {
// return nil, fmt.Errorf("Failed to dial: %s", err)
fmt.Println(err)
return
}
defer connection.Close()
client, err := sftp.NewClient(connection)
if err != nil {
// return nil, fmt.Errorf("Failed to dial: %s", err)
fmt.Println(err)
return
}
defer client.Close()
// open source file
fmt.Println("open source file")
srcFile, err := client.Open(config.SrcFile)
if err != nil {
log.Fatal(err)
}
defer srcFile.Close()
// create destination file
fmt.Println("create destination file")
dstFile, err := os.Create(config.DstFile)
if err != nil {
log.Fatal(err)
}
defer dstFile.Close()
// copy source file to destination file
bytes, err := io.Copy(dstFile, srcFile)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%d bytes copied\n", bytes)
}
func sftp_upload(params CloudShellEnv) {
file, err := env_get_ssh_pkey()
if err != nil {
fmt.Println("\nTip: Run the command: \"gcloud alpha cloud-shell ssh --dry-run\" to setup Cloud Shell SSH keys")
return
}
sshConfig := &ssh.ClientConfig{
User: params.SshUsername,
Auth: []ssh.AuthMethod{
PublicKeyFile(file),
},
HostKeyCallback: func(hostname string, remote net.Addr, key ssh.PublicKey) error {
return nil
},
}
sshHost := params.SshHost
sshPort := fmt.Sprint(params.SshPort)
host := sshHost + ":" + sshPort
if config.Debug == true {
fmt.Println("Dial")
fmt.Println(host)
}
connection, err := ssh.Dial("tcp", host, sshConfig)
if err != nil {
// return nil, fmt.Errorf("Failed to dial: %s", err)
fmt.Println(err)
return
}
defer connection.Close()
client, err := sftp.NewClient(connection)
if err != nil {
// return nil, fmt.Errorf("Failed to dial: %s", err)
fmt.Println(err)
return
}
defer client.Close()
// open source file
srcFile, err := os.Open(config.SrcFile)
if err != nil {
log.Fatal(err)
}
defer srcFile.Close()
// create destination file
dstFile, err := client.Create(config.DstFile)
if err != nil {
log.Fatal(err)
}
defer dstFile.Close()
// copy source file to destination file
bytes, err := io.Copy(dstFile, srcFile)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%d bytes copied\n", bytes)
}
func print_transfer_stats(total_time time.Duration, bytes int64, flag bool) {
// total_time is nanoseconds
if flag == false {
return
}
// Convert to milliseconds
ms := int64(total_time) / 1000000
if (bytes == 0) {
fmt.Printf("%v bytes in %s - Speed 0 KBS\n", bytes, total_time)
} else {
kbs := bytes / ms
p := message.NewPrinter(language.English)
fmt.Printf("%v bytes in %s - Speed %s KBS\n", p.Sprintf("%d", bytes), total_time, p.Sprintf("%d", kbs))
}
}