-
Notifications
You must be signed in to change notification settings - Fork 85
/
FileInfo.ts
101 lines (91 loc) · 2.74 KB
/
FileInfo.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
export enum FileType {
Unknown = 0,
File,
Directory,
SymbolicLink
}
export interface UnixPermissions {
readonly user: number
readonly group: number
readonly world: number
}
/**
* Describes a file, directory or symbolic link.
*/
export class FileInfo {
static UnixPermission = {
Read: 4,
Write: 2,
Execute: 1
}
type = FileType.Unknown
size = 0
/**
* Unparsed, raw modification date as a string.
*
* If `modifiedAt` is undefined, the FTP server you're connected to doesn't support the more modern
* MLSD command for machine-readable directory listings. The older command LIST is then used returning
* results that vary a lot between servers as the format hasn't been standardized. Here, directory listings
* and especially modification dates were meant to be human-readable first.
*
* Be careful when still trying to parse this by yourself. Parsing dates from listings using LIST is
* unreliable. This library decides to offer parsed dates only when they're absolutely reliable and safe to
* use e.g. for comparisons.
*/
rawModifiedAt = ""
/**
* Parsed modification date.
*
* Available if the FTP server supports the MLSD command. Only MLSD guarantees dates than can be reliably
* parsed with the correct timezone and a resolution down to seconds. See `rawModifiedAt` property for the unparsed
* date that is always available.
*/
modifiedAt?: Date = undefined
/**
* Unix permissions if present. If the underlying FTP server is not running on Unix this will be undefined.
* If set, you might be able to edit permissions with the FTP command `SITE CHMOD`.
*/
permissions?: UnixPermissions = undefined
/**
* Hard link count if available.
*/
hardLinkCount?: number = undefined
/**
* Link name for symbolic links if available.
*/
link?: string = undefined
/**
* Unix group if available.
*/
group?: string = undefined
/**
* Unix user if available.
*/
user?: string = undefined
/**
* Unique ID if available.
*/
uniqueID?: string = undefined
constructor(public name: string) {
this.name = name
}
get isDirectory(): boolean {
return this.type === FileType.Directory
}
get isSymbolicLink(): boolean {
return this.type === FileType.SymbolicLink
}
get isFile(): boolean {
return this.type === FileType.File
}
/**
* Deprecated, legacy API. Use `rawModifiedAt` instead.
* @deprecated
*/
get date(): string {
return this.rawModifiedAt
}
set date(rawModifiedAt: string) {
this.rawModifiedAt = rawModifiedAt
}
}