-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsftps.go
348 lines (319 loc) · 6.84 KB
/
sftps.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
package sftps
import (
"errors"
)
type FtpResponse struct {
command string
code int
msg string
}
type Sftps struct {
state int
protocol int
recv interface{}
keepalive bool
isDebug bool
}
func New(proto int, param interface{}) (sftps *Sftps, err error) {
sftps = new(Sftps)
if proto == FTP || proto == FTPS {
var parameter *ftpParameters
if p, ok := param.(*ftpParameters); ok {
parameter = p
sftps.recv = newFtp(parameter)
sftps.keepalive = parameter.keepAlive
} else {
err = errors.New("the 'param' could not cast to the *ftpParameters type.")
return
}
} else if proto == SFTP {
var parameter *sftpParameters
if p, ok := param.(*sftpParameters); ok {
parameter = p
sftps.recv = newSftp(parameter)
sftps.keepalive = parameter.keepAlive
} else {
err = errors.New("the 'param' could not cast to the *sftpParameters type.")
}
} else {
err = errors.New("Invalid parameter were bound. the Protocol must be FTP, FTPS or SFTP")
return
}
sftps.protocol = proto
sftps.state = OFFLINE
return
}
func (this *Sftps) Connect() (res []*FtpResponse, err error) {
if this.protocol == FTP || this.protocol == FTPS {
var r *FtpResponse
if r, err = this.recv.(*Ftp).connect(); err != nil {
return
}
res = []*FtpResponse{}
res = append(res, r)
var rs []*FtpResponse
if rs, err = this.recv.(*Ftp).auth(); err != nil {
return
}
res = append(res, rs...)
if rs, err = this.recv.(*Ftp).options(); err != nil {
return
}
res = append(res, rs...)
} else
if this.protocol == SFTP {
if err = this.recv.(*SecureFtp).connect(); err != nil {
return
}
}
this.state = ONLINE
return
}
func (this *Sftps) Quit() (res *FtpResponse, err error) {
if this.protocol == FTP || this.protocol == FTPS {
if res, err = this.recv.(*Ftp).quit(); err != nil {
return
}
} else
if this.protocol == SFTP {
if err = this.recv.(*SecureFtp).quit(); err != nil {
return
}
}
this.state = OFFLINE
return
}
func (this *Sftps) StringToEntities(raw string) (ents []*Entity, err error) {
ents, err = stringToEntities(raw)
return
}
func (this *Sftps) List(baseDir string) (res []*FtpResponse, list string, err error) {
if this.state == OFFLINE {
err = errors.New("Connection is not established.")
return
}
if this.protocol == FTP || this.protocol == FTPS {
var ftp *Ftp
if recv, ok := this.recv.(*Ftp); ok {
ftp = recv
}
if res, list, err = ftp.list(baseDir); err != nil {
return
} else {
var r *FtpResponse
if !this.keepalive {
if r, err = ftp.quit(); err != nil {
return
}
}
res = append(res, r)
}
} else
if this.protocol == SFTP {
var sftp *SecureFtp
if recv, ok := this.recv.(*SecureFtp); ok {
sftp = recv
}
if list, err = sftp.list(baseDir); err != nil {
return
}
if !this.keepalive {
if err = sftp.quit(); err != nil {
return
}
}
}
return
}
func (this *Sftps) Mkdir(p string) (res []*FtpResponse, err error) {
if this.state == OFFLINE {
err = errors.New("Connection is not established.")
return
}
if this.protocol == FTP || this.protocol == FTPS {
var ftp *Ftp
var r *FtpResponse
res = new([]*FtpResponse)
if recv, ok := this.recv.(*Ftp); ok {
ftp = recv
}
if r, err = ftp.mkdir(p); err != nil {
return
}
res = append(res, r)
if !this.keepalive {
if r, err = ftp.quit(); err != nil {
return
}
res = append(res, r)
}
} else
if this.protocol == SFTP {
var sftp *SecureFtp
if recv, ok := this.recv.(*SecureFtp); ok {
sftp = recv
}
if err = sftp.mkdir(p); err != nil {
return
}
if !this.keepalive {
if err = sftp.quit(); err != nil {
return
}
}
}
return
}
func (this *Sftps) Rmdir(p string) (res []*FtpResponse, err error) {
if this.state == OFFLINE {
err = errors.New("Connection is not established.")
return
}
if this.protocol == FTP || this.protocol == FTPS {
res = new([]*FtpResponse)
var r *FtpResponse
var ftp *Ftp
if recv, ok := this.recv.(*Ftp); ok {
ftp = recv
}
if r, err = ftp.rmdir(p); err != nil {
return
}
res = append(res, r)
if !this.keepalive {
if r, err = ftp.quit(); err != nil {
return
}
res = append(res, r)
}
} else
if this.protocol == SFTP {
var sftp *SecureFtp
if recv, ok := this.recv.(*SecureFtp); ok {
sftp = recv
}
if err = sftp.remove(p); err != nil {
return
}
if !this.keepalive {
if err = sftp.quit(); err != nil {
return
}
}
}
return
}
func (this *Sftps) Rename(old string, new string) (res []*FtpResponse, err error) {
if this.state == OFFLINE {
err = errors.New("Connection is not established")
return
}
if this.protocol == FTP || this.protocol == FTPS {
var ftp *Ftp
if recv, ok := this.recv.(*Ftp); ok {
ftp = recv
}
if res, err = ftp.rename(old, new); err != nil {
return
}
if !this.keepalive {
var r *FtpResponse
if r, err = ftp.quit(); err != nil {
return
}
res = append(res, r)
}
} else
if this.protocol == SFTP {
var sftp *SecureFtp
if recv, ok := this.recv.(*SecureFtp); ok {
sftp = recv
}
if err = sftp.rename(old, new); err != nil {
return
}
if !this.keepalive {
if err = sftp.quit(); err != nil {
return
}
}
}
return
}
/**
parameter's explain. local is the local path for the file, whether remote.
*/
func (this *Sftps) Upload(local string, remote string) (res []*FtpResponse, len int64, err error) {
if this.state == OFFLINE {
err = errors.New("Connection is not established")
return
}
if this.protocol == FTP || this.protocol == FTPS {
var ftp *Ftp
var r *FtpResponse
if recv, ok := this.recv.(*Ftp); ok {
ftp = recv
}
if res, len, err = ftp.upload(local, remote); err != nil {
return
}
if !this.keepalive {
if r, err = ftp.quit(); err != nil {
return
}
res = append(res, r)
}
} else
if this.protocol == SFTP {
var sftp *SecureFtp
if recv, ok := this.recv.(*SecureFtp); ok {
sftp = recv
}
if len, err = sftp.upload(local, remote); err != nil {
return
}
if !this.keepalive {
if err = sftp.quit(); err != nil {
return
}
}
}
return
}
func (this *Sftps) Download(local string, remote string) (res []*FtpResponse, len int64, err error) {
if this.state == OFFLINE {
err = errors.New("Connection is not established")
return
}
if this.protocol == FTP || this.protocol == FTPS {
var ftp *Ftp
var r *FtpResponse
if recv, ok := this.recv.(*Ftp); ok {
ftp = recv
}
if res, len, err = ftp.download(local, remote); err != nil {
return
}
if !this.keepalive {
if r, err = ftp.quit(); err != nil {
return
}
res = append(res, r)
}
} else
if this.protocol == SFTP {
var sftp *SecureFtp
if recv, ok := this.recv.(*SecureFtp); ok {
sftp = recv
}
if len, err = sftp.download(local, remote); err != nil {
return
}
if !this.keepalive {
if err = sftp.quit(); err != nil {
return
}
}
}
return
}