-
-
Notifications
You must be signed in to change notification settings - Fork 586
/
filepath.ts
60 lines (47 loc) · 1.33 KB
/
filepath.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
/**
* @module
* FilePath utility.
*/
type FilePathOptions = {
filename: string
root?: string
defaultDocument?: string
}
export const getFilePath = (options: FilePathOptions): string | undefined => {
let filename = options.filename
const defaultDocument = options.defaultDocument || 'index.html'
if (filename.endsWith('/')) {
// /top/ => /top/index.html
filename = filename.concat(defaultDocument)
} else if (!filename.match(/\.[a-zA-Z0-9_-]+$/)) {
// /top => /top/index.html
filename = filename.concat('/' + defaultDocument)
}
const path = getFilePathWithoutDefaultDocument({
root: options.root,
filename,
})
return path
}
export const getFilePathWithoutDefaultDocument = (
options: Omit<FilePathOptions, 'defaultDocument'>
): string | undefined => {
let root = options.root || ''
let filename = options.filename
if (/(?:^|[\/\\])\.\.(?:$|[\/\\])/.test(filename)) {
return
}
// /foo.html => foo.html
filename = filename.replace(/^\.?[\/\\]/, '')
// foo\bar.txt => foo/bar.txt
filename = filename.replace(/\\/, '/')
// assets/ => assets
root = root.replace(/\/$/, '')
// ./assets/foo.html => assets/foo.html
let path = root ? root + '/' + filename : filename
path = path.replace(/^\.?\//, '')
if (root[0] !== '/' && path[0] === '/') {
return
}
return path
}