This repository has been archived by the owner on Oct 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmod.ts
180 lines (151 loc) · 4.94 KB
/
mod.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
/*!
* Ported from: https://github.com/jshttp/mime-types and licensed as:
*
* (The MIT License)
*
* Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
* Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
* Copyright (c) 2020 the Deno authors
* Copyright (c) 2020-2022 the oak authors
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* 'Software'), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import { extname } from "https://deno.land/std@0.140.0/path/mod.ts";
import db from "https://raw.githubusercontent.com/jshttp/mime-db/v1.52.0/db.json" assert {
type: "json",
};
interface DBEntry {
source: string;
compressible?: boolean;
charset?: string;
extensions?: string[];
}
type KeyOfDb = keyof typeof db;
const EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/;
const TEXT_TYPE_REGEXP = /^text\//i;
/** A map of extensions for a given media type.
*
* @deprecated use Deno std/media_types instead
*/
export const extensions = new Map<string, string[]>();
/** A map of the media type for a given extension
*
* @deprecated use Deno std/media_types instead
*/
export const types = new Map<string, KeyOfDb>();
/** Internal function to populate the maps based on the Mime DB. */
function populateMaps(
extensions: Map<string, string[]>,
types: Map<string, KeyOfDb>,
): void {
const preference = ["nginx", "apache", undefined, "iana"];
for (const type of Object.keys(db)) {
const mime = db[type as KeyOfDb] as DBEntry;
const exts = mime.extensions;
if (!exts || !exts.length) {
continue;
}
extensions.set(type, exts);
for (const ext of exts) {
const current = types.get(ext);
if (current) {
const from = preference.indexOf((db[current] as DBEntry).source);
const to = preference.indexOf(mime.source);
if (
current !== "application/octet-stream" &&
(from > to ||
// @ts-ignore work around denoland/dnt#148
(from === to && current.startsWith("application/")))
) {
continue;
}
}
types.set(ext, type as KeyOfDb);
}
}
}
// Populate the maps upon module load
populateMaps(extensions, types);
/** Given a media type return any default charset string. Returns `undefined`
* if not resolvable.
*
* @deprecated use Deno std/media_types instead
*/
export function charset(type: string): string | undefined {
const m = EXTRACT_TYPE_REGEXP.exec(type);
if (!m) {
return undefined;
}
const [match] = m;
const mime = db[match.toLowerCase() as KeyOfDb] as DBEntry;
if (mime && mime.charset) {
return mime.charset;
}
if (TEXT_TYPE_REGEXP.test(match)) {
return "UTF-8";
}
return undefined;
}
/** Given an extension, lookup the appropriate media type for that extension.
* Likely you should be using `contentType()` though instead.
*
* @deprecated use Deno std/media_types instead
*/
export function lookup(path: string): string | undefined {
const extension = extname(`x.${path}`)
.toLowerCase()
.substring(1);
// @ts-ignore workaround around denoland/dnt#148
return types.get(extension);
}
/** Given an extension or media type, return the full `Content-Type` header
* string. Returns `undefined` if not resolvable.
*
* @deprecated use Deno std/media_types instead
*/
export function contentType(str: string): string | undefined {
let mime = str.includes("/") ? str : lookup(str);
if (!mime) {
return undefined;
}
if (!mime.includes("charset")) {
const cs = charset(mime);
if (cs) {
mime += `; charset=${cs.toLowerCase()}`;
}
}
return mime;
}
/** Given a media type, return the most appropriate extension or return
* `undefined` if there is none.
*
* @deprecated use Deno std/media_types instead
*/
export function extension(type: string): string | undefined {
const match = EXTRACT_TYPE_REGEXP.exec(type);
if (!match) {
return undefined;
}
const exts = extensions.get(match[1].toLowerCase());
if (!exts || !exts.length) {
return undefined;
}
return exts[0];
}