-
Notifications
You must be signed in to change notification settings - Fork 89
/
Client.ts
859 lines (802 loc) · 33.4 KB
/
Client.ts
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
import { createReadStream, createWriteStream, mkdir, readdir, stat, open, close, unlink } from "fs"
import { join } from "path"
import { Readable, Writable } from "stream"
import { connect as connectTLS, ConnectionOptions as TLSConnectionOptions } from "tls"
import { promisify } from "util"
import { FileInfo } from "./FileInfo"
import { FTPContext, FTPError, FTPResponse } from "./FtpContext"
import { parseList as parseListAutoDetect } from "./parseList"
import { ProgressHandler, ProgressTracker } from "./ProgressTracker"
import { StringWriter } from "./StringWriter"
import { parseMLSxDate } from "./parseListMLSD"
import { describeAddress, describeTLS, upgradeSocket } from "./netUtils"
import { uploadFrom, downloadTo, enterPassiveModeIPv6, enterPassiveModeIPv4, UploadCommand } from "./transfer"
import { isMultiline, positiveCompletion } from "./parseControlResponse"
// Use promisify to keep the library compatible with Node 8.
const fsReadDir = promisify(readdir)
const fsMkDir = promisify(mkdir)
const fsStat = promisify(stat)
const fsOpen = promisify(open)
const fsClose = promisify(close)
const fsUnlink = promisify(unlink)
export interface AccessOptions {
/** Host the client should connect to. Optional, default is "localhost". */
readonly host?: string
/** Port the client should connect to. Optional, default is 21. */
readonly port?: number
/** Username to use for login. Optional, default is "anonymous". */
readonly user?: string
/** Password to use for login. Optional, default is "guest". */
readonly password?: string
/** Use FTPS over TLS. Optional, default is false. True is preferred explicit TLS, "implicit" supports legacy, non-standardized implicit TLS. */
readonly secure?: boolean | "implicit"
/** TLS options as in [tls.connect(options)](https://nodejs.org/api/tls.html#tls_tls_connect_options_callback), optional. */
readonly secureOptions?: TLSConnectionOptions
}
/** Prepares a data connection for transfer. */
export type TransferStrategy = (ftp: FTPContext) => Promise<FTPResponse>
/** Parses raw directoy listing data. */
export type RawListParser = (rawList: string) => FileInfo[]
export interface UploadOptions {
/** Offset in the local file to start uploading from. */
localStart?: number
/** Final byte position to include in upload from the local file. */
localEndInclusive?: number
}
const LIST_COMMANDS_DEFAULT = () => ["LIST -a", "LIST"]
const LIST_COMMANDS_MLSD = () => ["MLSD", "LIST -a", "LIST"]
/**
* High-level API to interact with an FTP server.
*/
export class Client {
prepareTransfer: TransferStrategy
parseList: RawListParser
availableListCommands = LIST_COMMANDS_DEFAULT()
/** Low-level API to interact with FTP server. */
readonly ftp: FTPContext
/** Tracks progress of data transfers. */
protected _progressTracker: ProgressTracker
/**
* Instantiate an FTP client.
*
* @param timeout Timeout in milliseconds, use 0 for no timeout. Optional, default is 30 seconds.
*/
constructor(timeout = 30000) {
this.ftp = new FTPContext(timeout)
this.prepareTransfer = this._enterFirstCompatibleMode([enterPassiveModeIPv6, enterPassiveModeIPv4])
this.parseList = parseListAutoDetect
this._progressTracker = new ProgressTracker()
}
/**
* Close the client and all open socket connections.
*
* Close the client and all open socket connections. The client can’t be used anymore after calling this method,
* you have to either reconnect with `access` or `connect` or instantiate a new instance to continue any work.
* A client is also closed automatically if any timeout or connection error occurs.
*/
close() {
this.ftp.close()
this._progressTracker.stop()
}
/**
* Returns true if the client is closed and can't be used anymore.
*/
get closed(): boolean {
return this.ftp.closed
}
/**
* Connect (or reconnect) to an FTP server.
*
* This is an instance method and thus can be called multiple times during the lifecycle of a `Client`
* instance. Whenever you do, the client is reset with a new control connection. This also implies that
* you can reopen a `Client` instance that has been closed due to an error when reconnecting with this
* method. In fact, reconnecting is the only way to continue using a closed `Client`.
*
* @param host Host the client should connect to. Optional, default is "localhost".
* @param port Port the client should connect to. Optional, default is 21.
*/
connect(host = "localhost", port = 21): Promise<FTPResponse> {
this.ftp.reset()
this.ftp.socket.connect({
host,
port,
family: this.ftp.ipFamily
}, () => this.ftp.log(`Connected to ${describeAddress(this.ftp.socket)} (${describeTLS(this.ftp.socket)})`))
return this._handleConnectResponse()
}
/**
* As `connect` but using implicit TLS. Implicit TLS is not an FTP standard and has been replaced by
* explicit TLS. There are still FTP servers that support only implicit TLS, though.
*/
connectImplicitTLS(host = "localhost", port = 21, tlsOptions: TLSConnectionOptions = {}): Promise<FTPResponse> {
this.ftp.reset()
this.ftp.socket = connectTLS(
port,
host,
tlsOptions,
() => this.ftp.log(`Connected to ${describeAddress(this.ftp.socket)} (${describeTLS(this.ftp.socket)})`)
)
this.ftp.tlsOptions = tlsOptions
return this._handleConnectResponse()
}
/**
* Handles the first reponse by an FTP server after the socket connection has been established.
*/
private _handleConnectResponse(): Promise<FTPResponse> {
return this.ftp.handle(undefined, (res, task) => {
if (res instanceof Error) {
// The connection has been destroyed by the FTPContext at this point.
task.reject(res)
}
else if (positiveCompletion(res.code)) {
task.resolve(res)
}
// Reject all other codes, including 120 "Service ready in nnn minutes".
else {
// Don't stay connected but don't replace the socket yet by using reset()
// so the user can inspect properties of this instance.
task.reject(new FTPError(res))
}
})
}
/**
* Send an FTP command and handle the first response.
*/
send(command: string, ignoreErrorCodesDEPRECATED = false): Promise<FTPResponse> {
if (ignoreErrorCodesDEPRECATED) { // Deprecated starting from 3.9.0
this.ftp.log("Deprecated call using send(command, flag) with boolean flag to ignore errors. Use sendIgnoringError(command).")
return this.sendIgnoringError(command)
}
return this.ftp.request(command)
}
/**
* Send an FTP command and ignore an FTP error response. Any other kind of error or timeout will still reject the Promise.
*
* @param command
*/
sendIgnoringError(command: string): Promise<FTPResponse> {
return this.ftp.handle(command, (res, task) => {
if (res instanceof FTPError) {
task.resolve({code: res.code, message: res.message})
}
else if (res instanceof Error) {
task.reject(res)
}
else {
task.resolve(res)
}
})
}
/**
* Upgrade the current socket connection to TLS.
*
* @param options TLS options as in `tls.connect(options)`, optional.
* @param command Set the authentication command. Optional, default is "AUTH TLS".
*/
async useTLS(options: TLSConnectionOptions = {}, command = "AUTH TLS"): Promise<FTPResponse> {
const ret = await this.send(command)
this.ftp.socket = await upgradeSocket(this.ftp.socket, options)
this.ftp.tlsOptions = options // Keep the TLS options for later data connections that should use the same options.
this.ftp.log(`Control socket is using: ${describeTLS(this.ftp.socket)}`)
return ret
}
/**
* Login a user with a password.
*
* @param user Username to use for login. Optional, default is "anonymous".
* @param password Password to use for login. Optional, default is "guest".
*/
login(user = "anonymous", password = "guest"): Promise<FTPResponse> {
this.ftp.log(`Login security: ${describeTLS(this.ftp.socket)}`)
return this.ftp.handle("USER " + user, (res, task) => {
if (res instanceof Error) {
task.reject(res)
}
else if (positiveCompletion(res.code)) { // User logged in proceed OR Command superfluous
task.resolve(res)
}
else if (res.code === 331) { // User name okay, need password
this.ftp.send("PASS " + password)
}
else { // Also report error on 332 (Need account)
task.reject(new FTPError(res))
}
})
}
/**
* Set the usual default settings.
*
* Settings used:
* * Binary mode (TYPE I)
* * File structure (STRU F)
* * Additional settings for FTPS (PBSZ 0, PROT P)
*/
async useDefaultSettings(): Promise<void> {
const features = await this.features()
// Use MLSD directory listing if possible. See https://tools.ietf.org/html/rfc3659#section-7.8:
// "The presence of the MLST feature indicates that both MLST and MLSD are supported."
const supportsMLSD = features.has("MLST")
this.availableListCommands = supportsMLSD ? LIST_COMMANDS_MLSD() : LIST_COMMANDS_DEFAULT()
await this.send("TYPE I") // Binary mode
await this.sendIgnoringError("STRU F") // Use file structure
await this.sendIgnoringError("OPTS UTF8 ON") // Some servers expect UTF-8 to be enabled explicitly and setting before login might not have worked.
if (supportsMLSD) {
await this.sendIgnoringError("OPTS MLST type;size;modify;unique;unix.mode;unix.owner;unix.group;unix.ownername;unix.groupname;") // Make sure MLSD listings include all we can parse
}
if (this.ftp.hasTLS) {
await this.sendIgnoringError("PBSZ 0") // Set to 0 for TLS
await this.sendIgnoringError("PROT P") // Protect channel (also for data connections)
}
}
/**
* Convenience method that calls `connect`, `useTLS`, `login` and `useDefaultSettings`.
*
* This is an instance method and thus can be called multiple times during the lifecycle of a `Client`
* instance. Whenever you do, the client is reset with a new control connection. This also implies that
* you can reopen a `Client` instance that has been closed due to an error when reconnecting with this
* method. In fact, reconnecting is the only way to continue using a closed `Client`.
*/
async access(options: AccessOptions = {}): Promise<FTPResponse> {
const useExplicitTLS = options.secure === true
const useImplicitTLS = options.secure === "implicit"
let welcome
if (useImplicitTLS) {
welcome = await this.connectImplicitTLS(options.host, options.port, options.secureOptions)
}
else {
welcome = await this.connect(options.host, options.port)
}
if (useExplicitTLS) {
// Fixes https://github.com/patrickjuchli/basic-ftp/issues/166 by making sure
// host is set for any future data connection as well.
const secureOptions = options.secureOptions ?? {}
secureOptions.host = secureOptions.host ?? options.host
await this.useTLS(secureOptions)
}
// Set UTF-8 on before login in case there are non-ascii characters in user or password.
// Note that this might not work before login depending on server.
await this.sendIgnoringError("OPTS UTF8 ON")
await this.login(options.user, options.password)
await this.useDefaultSettings()
return welcome
}
/**
* Get the current working directory.
*/
async pwd(): Promise<string> {
const res = await this.send("PWD")
// The directory is part of the return message, for example:
// 257 "/this/that" is current directory.
const parsed = res.message.match(/"(.+)"/)
if (parsed === null || parsed[1] === undefined) {
throw new Error(`Can't parse response to command 'PWD': ${res.message}`)
}
return parsed[1]
}
/**
* Get a description of supported features.
*
* This sends the FEAT command and parses the result into a Map where keys correspond to available commands
* and values hold further information. Be aware that your FTP servers might not support this
* command in which case this method will not throw an exception but just return an empty Map.
*/
async features(): Promise<Map<string, string>> {
const res = await this.sendIgnoringError("FEAT")
const features = new Map()
// Not supporting any special features will be reported with a single line.
if (res.code < 400 && isMultiline(res.message)) {
// The first and last line wrap the multiline response, ignore them.
res.message.split("\n").slice(1, -1).forEach(line => {
// A typical lines looks like: " REST STREAM" or " MDTM".
// Servers might not use an indentation though.
const entry = line.trim().split(" ")
features.set(entry[0], entry[1] || "")
})
}
return features
}
/**
* Set the working directory.
*/
async cd(path: string): Promise<FTPResponse> {
const validPath = await this.protectWhitespace(path)
return this.send("CWD " + validPath)
}
/**
* Switch to the parent directory of the working directory.
*/
async cdup(): Promise<FTPResponse> {
return this.send("CDUP")
}
/**
* Get the last modified time of a file. This is not supported by every FTP server, in which case
* calling this method will throw an exception.
*/
async lastMod(path: string): Promise<Date> {
const validPath = await this.protectWhitespace(path)
const res = await this.send(`MDTM ${validPath}`)
const date = res.message.slice(4)
return parseMLSxDate(date)
}
/**
* Get the size of a file.
*/
async size(path: string): Promise<number> {
const validPath = await this.protectWhitespace(path)
const command = `SIZE ${validPath}`
const res = await this.send(command)
// The size is part of the response message, for example: "213 555555". It's
// possible that there is a commmentary appended like "213 5555, some commentary".
const size = parseInt(res.message.slice(4), 10)
if (Number.isNaN(size)) {
throw new Error(`Can't parse response to command '${command}' as a numerical value: ${res.message}`)
}
return size
}
/**
* Rename a file.
*
* Depending on the FTP server this might also be used to move a file from one
* directory to another by providing full paths.
*/
async rename(srcPath: string, destPath: string): Promise<FTPResponse> {
const validSrc = await this.protectWhitespace(srcPath)
const validDest = await this.protectWhitespace(destPath)
await this.send("RNFR " + validSrc)
return this.send("RNTO " + validDest)
}
/**
* Remove a file from the current working directory.
*
* You can ignore FTP error return codes which won't throw an exception if e.g.
* the file doesn't exist.
*/
async remove(path: string, ignoreErrorCodes = false): Promise<FTPResponse> {
const validPath = await this.protectWhitespace(path)
if (ignoreErrorCodes) {
return this.sendIgnoringError(`DELE ${validPath}`)
}
return this.send(`DELE ${validPath}`)
}
/**
* Report transfer progress for any upload or download to a given handler.
*
* This will also reset the overall transfer counter that can be used for multiple transfers. You can
* also call the function without a handler to stop reporting to an earlier one.
*
* @param handler Handler function to call on transfer progress.
*/
trackProgress(handler?: ProgressHandler) {
this._progressTracker.bytesOverall = 0
this._progressTracker.reportTo(handler)
}
/**
* Upload data from a readable stream or a local file to a remote file.
*
* @param source Readable stream or path to a local file.
* @param toRemotePath Path to a remote file to write to.
*/
async uploadFrom(source: Readable | string, toRemotePath: string, options: UploadOptions = {}): Promise<FTPResponse> {
return this._uploadWithCommand(source, toRemotePath, "STOR", options)
}
/**
* Upload data from a readable stream or a local file by appending it to an existing file. If the file doesn't
* exist the FTP server should create it.
*
* @param source Readable stream or path to a local file.
* @param toRemotePath Path to a remote file to write to.
*/
async appendFrom(source: Readable | string, toRemotePath: string, options: UploadOptions = {}): Promise<FTPResponse> {
return this._uploadWithCommand(source, toRemotePath, "APPE", options)
}
/**
* @protected
*/
protected async _uploadWithCommand(source: Readable | string, remotePath: string, command: UploadCommand, options: UploadOptions): Promise<FTPResponse> {
if (typeof source === "string") {
return this._uploadLocalFile(source, remotePath, command, options)
}
return this._uploadFromStream(source, remotePath, command)
}
/**
* @protected
*/
protected async _uploadLocalFile(localPath: string, remotePath: string, command: UploadCommand, options: UploadOptions): Promise<FTPResponse> {
const fd = await fsOpen(localPath, "r")
const source = createReadStream("", {
fd,
start: options.localStart,
end: options.localEndInclusive,
autoClose: false
})
try {
return await this._uploadFromStream(source, remotePath, command)
}
finally {
await ignoreError(() => fsClose(fd))
}
}
/**
* @protected
*/
protected async _uploadFromStream(source: Readable, remotePath: string, command: UploadCommand): Promise<FTPResponse> {
const onError = (err: Error) => this.ftp.closeWithError(err)
source.once("error", onError)
try {
const validPath = await this.protectWhitespace(remotePath)
await this.prepareTransfer(this.ftp)
// Keep the keyword `await` or the `finally` clause below runs too early
// and removes the event listener for the source stream too early.
return await uploadFrom(source, {
ftp: this.ftp,
tracker: this._progressTracker,
command,
remotePath: validPath,
type: "upload"
})
}
finally {
source.removeListener("error", onError)
}
}
/**
* Download a remote file and pipe its data to a writable stream or to a local file.
*
* You can optionally define at which position of the remote file you'd like to start
* downloading. If the destination you provide is a file, the offset will be applied
* to it as well. For example: To resume a failed download, you'd request the size of
* the local, partially downloaded file and use that as the offset. Assuming the size
* is 23, you'd download the rest using `downloadTo("local.txt", "remote.txt", 23)`.
*
* @param destination Stream or path for a local file to write to.
* @param fromRemotePath Path of the remote file to read from.
* @param startAt Position within the remote file to start downloading at. If the destination is a file, this offset is also applied to it.
*/
async downloadTo(destination: Writable | string, fromRemotePath: string, startAt = 0) {
if (typeof destination === "string") {
return this._downloadToFile(destination, fromRemotePath, startAt)
}
return this._downloadToStream(destination, fromRemotePath, startAt)
}
/**
* @protected
*/
protected async _downloadToFile(localPath: string, remotePath: string, startAt: number) {
const appendingToLocalFile = startAt > 0
const fileSystemFlags = appendingToLocalFile ? "r+" : "w"
const fd = await fsOpen(localPath, fileSystemFlags)
const destination = createWriteStream("", {
fd,
start: startAt,
autoClose: false
})
try {
return await this._downloadToStream(destination, remotePath, startAt)
}
catch(err) {
const localFileStats = await ignoreError(() => fsStat(localPath))
const hasDownloadedData = localFileStats && localFileStats.size > 0
const shouldRemoveLocalFile = !appendingToLocalFile && !hasDownloadedData
if (shouldRemoveLocalFile) {
await ignoreError(() => fsUnlink(localPath))
}
throw err
}
finally {
await ignoreError(() => fsClose(fd))
}
}
/**
* @protected
*/
protected async _downloadToStream(destination: Writable, remotePath: string, startAt: number): Promise<FTPResponse> {
const onError = (err: Error) => this.ftp.closeWithError(err)
destination.once("error", onError)
try {
const validPath = await this.protectWhitespace(remotePath)
await this.prepareTransfer(this.ftp)
// Keep the keyword `await` or the `finally` clause below runs too early
// and removes the event listener for the source stream too early.
return await downloadTo(destination, {
ftp: this.ftp,
tracker: this._progressTracker,
command: startAt > 0 ? `REST ${startAt}` : `RETR ${validPath}`,
remotePath: validPath,
type: "download"
})
}
finally {
destination.removeListener("error", onError)
destination.end()
}
}
/**
* List files and directories in the current working directory, or from `path` if specified.
*
* @param [path] Path to remote file or directory.
*/
async list(path = ""): Promise<FileInfo[]> {
const validPath = await this.protectWhitespace(path)
let lastError: any
for (const candidate of this.availableListCommands) {
const command = validPath === "" ? candidate : `${candidate} ${validPath}`
await this.prepareTransfer(this.ftp)
try {
const parsedList = await this._requestListWithCommand(command)
// Use successful candidate for all subsequent requests.
this.availableListCommands = [ candidate ]
return parsedList
}
catch (err) {
const shouldTryNext = err instanceof FTPError
if (!shouldTryNext) {
throw err
}
lastError = err
}
}
throw lastError
}
/**
* @protected
*/
protected async _requestListWithCommand(command: string): Promise<FileInfo[]> {
const buffer = new StringWriter()
await downloadTo(buffer, {
ftp: this.ftp,
tracker: this._progressTracker,
command,
remotePath: "",
type: "list"
})
const text = buffer.getText(this.ftp.encoding)
this.ftp.log(text)
return this.parseList(text)
}
/**
* Remove a directory and all of its content.
*
* @param remoteDirPath The path of the remote directory to delete.
* @example client.removeDir("foo") // Remove directory 'foo' using a relative path.
* @example client.removeDir("foo/bar") // Remove directory 'bar' using a relative path.
* @example client.removeDir("/foo/bar") // Remove directory 'bar' using an absolute path.
* @example client.removeDir("/") // Remove everything.
*/
async removeDir(remoteDirPath: string): Promise<void> {
return this._exitAtCurrentDirectory(async () => {
await this.cd(remoteDirPath)
// Get the absolute path of the target because remoteDirPath might be a relative path, even `../` is possible.
const absoluteDirPath = await this.pwd()
await this.clearWorkingDir()
const dirIsRoot = absoluteDirPath === "/"
if (!dirIsRoot) {
await this.cdup()
await this.removeEmptyDir(absoluteDirPath)
}
})
}
/**
* Remove all files and directories in the working directory without removing
* the working directory itself.
*/
async clearWorkingDir(): Promise<void> {
for (const file of await this.list()) {
if (file.isDirectory) {
await this.cd(file.name)
await this.clearWorkingDir()
await this.cdup()
await this.removeEmptyDir(file.name)
}
else {
await this.remove(file.name)
}
}
}
/**
* Upload the contents of a local directory to the remote working directory.
*
* This will overwrite existing files with the same names and reuse existing directories.
* Unrelated files and directories will remain untouched. You can optionally provide a `remoteDirPath`
* to put the contents inside a directory which will be created if necessary including all
* intermediate directories. If you did provide a remoteDirPath the working directory will stay
* the same as before calling this method.
*
* @param localDirPath Local path, e.g. "foo/bar" or "../test"
* @param [remoteDirPath] Remote path of a directory to upload to. Working directory if undefined.
*/
async uploadFromDir(localDirPath: string, remoteDirPath?: string): Promise<void> {
return this._exitAtCurrentDirectory(async () => {
if (remoteDirPath) {
await this.ensureDir(remoteDirPath)
}
return await this._uploadToWorkingDir(localDirPath)
})
}
/**
* @protected
*/
protected async _uploadToWorkingDir(localDirPath: string): Promise<void> {
const files = await fsReadDir(localDirPath)
for (const file of files) {
const fullPath = join(localDirPath, file)
const stats = await fsStat(fullPath)
if (stats.isFile()) {
await this.uploadFrom(fullPath, file)
}
else if (stats.isDirectory()) {
await this._openDir(file)
await this._uploadToWorkingDir(fullPath)
await this.cdup()
}
}
}
/**
* Download all files and directories of the working directory to a local directory.
*
* @param localDirPath The local directory to download to.
* @param remoteDirPath Remote directory to download. Current working directory if not specified.
*/
async downloadToDir(localDirPath: string, remoteDirPath?: string): Promise<void> {
return this._exitAtCurrentDirectory(async () => {
if (remoteDirPath) {
await this.cd(remoteDirPath)
}
return await this._downloadFromWorkingDir(localDirPath)
})
}
/**
* @protected
*/
protected async _downloadFromWorkingDir(localDirPath: string): Promise<void> {
await ensureLocalDirectory(localDirPath)
for (const file of await this.list()) {
const localPath = join(localDirPath, file.name)
if (file.isDirectory) {
await this.cd(file.name)
await this._downloadFromWorkingDir(localPath)
await this.cdup()
}
else if (file.isFile) {
await this.downloadTo(localPath, file.name)
}
}
}
/**
* Make sure a given remote path exists, creating all directories as necessary.
* This function also changes the current working directory to the given path.
*/
async ensureDir(remoteDirPath: string): Promise<void> {
// If the remoteDirPath was absolute go to root directory.
if (remoteDirPath.startsWith("/")) {
await this.cd("/")
}
const names = remoteDirPath.split("/").filter(name => name !== "")
for (const name of names) {
await this._openDir(name)
}
}
/**
* Try to create a directory and enter it. This will not raise an exception if the directory
* couldn't be created if for example it already exists.
* @protected
*/
protected async _openDir(dirName: string) {
await this.sendIgnoringError("MKD " + dirName)
await this.cd(dirName)
}
/**
* Remove an empty directory, will fail if not empty.
*/
async removeEmptyDir(path: string): Promise<FTPResponse> {
const validPath = await this.protectWhitespace(path)
return this.send(`RMD ${validPath}`)
}
/**
* FTP servers can't handle filenames that have leading whitespace. This method transforms
* a given path to fix that issue for most cases.
*/
async protectWhitespace(path: string): Promise<string> {
if (!path.startsWith(" ")) {
return path
}
// Handle leading whitespace by prepending the absolute path:
// " test.txt" while being in the root directory becomes "/ test.txt".
const pwd = await this.pwd()
const absolutePathPrefix = pwd.endsWith("/") ? pwd : pwd + "/"
return absolutePathPrefix + path
}
protected async _exitAtCurrentDirectory<T>(func: () => Promise<T>): Promise<T> {
const userDir = await this.pwd()
try {
return await func()
}
finally {
if (!this.closed) {
await ignoreError(() => this.cd(userDir))
}
}
}
/**
* Try all available transfer strategies and pick the first one that works. Update `client` to
* use the working strategy for all successive transfer requests.
*
* @returns a function that will try the provided strategies.
*/
protected _enterFirstCompatibleMode(strategies: TransferStrategy[]): TransferStrategy {
return async (ftp: FTPContext) => {
ftp.log("Trying to find optimal transfer strategy...")
let lastError: Error | undefined = undefined
for (const strategy of strategies) {
try {
const res = await strategy(ftp)
ftp.log("Optimal transfer strategy found.")
this.prepareTransfer = strategy // eslint-disable-line require-atomic-updates
return res
}
catch(err: any) {
// Try the next candidate no matter the exact error. It's possible that a server
// answered incorrectly to a strategy, for example a PASV answer to an EPSV.
lastError = err
}
}
throw new Error(`None of the available transfer strategies work. Last error response was '${lastError}'.`)
}
}
/**
* DEPRECATED, use `uploadFrom`.
* @deprecated
*/
async upload(source: Readable | string, toRemotePath: string, options: UploadOptions = {}): Promise<FTPResponse> {
this.ftp.log("Warning: upload() has been deprecated, use uploadFrom().")
return this.uploadFrom(source, toRemotePath, options)
}
/**
* DEPRECATED, use `appendFrom`.
* @deprecated
*/
async append(source: Readable | string, toRemotePath: string, options: UploadOptions = {}): Promise<FTPResponse> {
this.ftp.log("Warning: append() has been deprecated, use appendFrom().")
return this.appendFrom(source, toRemotePath, options)
}
/**
* DEPRECATED, use `downloadTo`.
* @deprecated
*/
async download(destination: Writable | string, fromRemotePath: string, startAt = 0) {
this.ftp.log("Warning: download() has been deprecated, use downloadTo().")
return this.downloadTo(destination, fromRemotePath, startAt)
}
/**
* DEPRECATED, use `uploadFromDir`.
* @deprecated
*/
async uploadDir(localDirPath: string, remoteDirPath?: string): Promise<void> {
this.ftp.log("Warning: uploadDir() has been deprecated, use uploadFromDir().")
return this.uploadFromDir(localDirPath, remoteDirPath)
}
/**
* DEPRECATED, use `downloadToDir`.
* @deprecated
*/
async downloadDir(localDirPath: string): Promise<void> {
this.ftp.log("Warning: downloadDir() has been deprecated, use downloadToDir().")
return this.downloadToDir(localDirPath)
}
}
async function ensureLocalDirectory(path: string) {
try {
await fsStat(path)
}
catch(err) {
await fsMkDir(path, { recursive: true })
}
}
async function ignoreError<T>(func: () => Promise<T | undefined>) {
try {
return await func()
}
catch(err) {
// Ignore
return undefined
}
}