deno.land / x / hono@v4.2.5 / utils / 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
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'>) => { 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(/^\.?\//, '')
return path}
hono

Version Info

Tagged at
a month ago