-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMimeType.php
More file actions
390 lines (375 loc) · 14.9 KB
/
MimeType.php
File metadata and controls
390 lines (375 loc) · 14.9 KB
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
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 5.2.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http;
use finfo;
/**
* MimeType Class
*
* Handles MIME type operations and provides functionality for working with
* Multipurpose Internet Mail Extensions (MIME) types in the application.
* This class is responsible for MIME type detection and mapping file extensions
* to their corresponding MIME types.
*/
class MimeType
{
/**
* Array of MIME type mappings.
*
* Associates file extensions with their corresponding MIME type(s).
* Each key is a file extension (without the dot) and the value is an array
* of one or more valid MIME types for that extension.
*
* Common MIME types included:
* - Web formats (html, json, xml)
* - Image formats (webp)
* - Feed formats (rss)
* - Application formats (ai, bin, csv, etc.)
*
* Some extensions may map to multiple MIME types, with the first type in the array
* being the preferred/default type.
*
* @var array<string, array<string>>
*/
protected static array $mimeTypes = [
'html' => ['text/html', '*/*'],
'json' => ['application/json'],
'xml' => ['application/xml', 'text/xml'],
'xhtml' => ['application/xhtml+xml', 'application/xhtml', 'text/xhtml'],
'webp' => ['image/webp'],
'rss' => ['application/rss+xml'],
'ai' => ['application/postscript'],
'bcpio' => ['application/x-bcpio'],
'bin' => ['application/octet-stream'],
'ccad' => ['application/clariscad'],
'cdf' => ['application/x-netcdf'],
'class' => ['application/octet-stream'],
'cpio' => ['application/x-cpio'],
'cpt' => ['application/mac-compactpro'],
'csh' => ['application/x-csh'],
'csv' => ['text/csv', 'application/vnd.ms-excel'],
'dcr' => ['application/x-director'],
'dir' => ['application/x-director'],
'dms' => ['application/octet-stream'],
'doc' => ['application/msword'],
'docx' => ['application/vnd.openxmlformats-officedocument.wordprocessingml.document'],
'drw' => ['application/drafting'],
'dvi' => ['application/x-dvi'],
'dwg' => ['application/acad'],
'dxf' => ['application/dxf'],
'dxr' => ['application/x-director'],
'eot' => ['application/vnd.ms-fontobject'],
'eps' => ['application/postscript'],
'exe' => ['application/octet-stream'],
'ez' => ['application/andrew-inset'],
'flv' => ['video/x-flv'],
'gtar' => ['application/x-gtar'],
'gz' => ['application/x-gzip'],
'bz2' => ['application/x-bzip'],
'7z' => ['application/x-7z-compressed'],
'hal' => ['application/hal+xml', 'application/vnd.hal+xml'],
'haljson' => ['application/hal+json', 'application/vnd.hal+json'],
'halxml' => ['application/hal+xml', 'application/vnd.hal+xml'],
'hdf' => ['application/x-hdf'],
'hqx' => ['application/mac-binhex40'],
'ico' => ['image/x-icon'],
'ips' => ['application/x-ipscript'],
'ipx' => ['application/x-ipix'],
'js' => ['application/javascript'],
'cjs' => ['application/javascript'],
'mjs' => ['application/javascript'],
'jsonapi' => ['application/vnd.api+json'],
'latex' => ['application/x-latex'],
'jsonld' => ['application/ld+json'],
'kml' => ['application/vnd.google-earth.kml+xml'],
'kmz' => ['application/vnd.google-earth.kmz'],
'lha' => ['application/octet-stream'],
'lsp' => ['application/x-lisp'],
'lzh' => ['application/octet-stream'],
'man' => ['application/x-troff-man'],
'me' => ['application/x-troff-me'],
'mif' => ['application/vnd.mif'],
'ms' => ['application/x-troff-ms'],
'nc' => ['application/x-netcdf'],
'oda' => ['application/oda'],
'otf' => ['font/otf'],
'pdf' => ['application/pdf'],
'pgn' => ['application/x-chess-pgn'],
'pot' => ['application/vnd.ms-powerpoint'],
'pps' => ['application/vnd.ms-powerpoint'],
'ppt' => ['application/vnd.ms-powerpoint'],
'pptx' => ['application/vnd.openxmlformats-officedocument.presentationml.presentation'],
'ppz' => ['application/vnd.ms-powerpoint'],
'pre' => ['application/x-freelance'],
'prt' => ['application/pro_eng'],
'ps' => ['application/postscript'],
'roff' => ['application/x-troff'],
'scm' => ['application/x-lotusscreencam'],
'set' => ['application/set'],
'sh' => ['application/x-sh'],
'shar' => ['application/x-shar'],
'sit' => ['application/x-stuffit'],
'skd' => ['application/x-koan'],
'skm' => ['application/x-koan'],
'skp' => ['application/x-koan'],
'skt' => ['application/x-koan'],
'smi' => ['application/smil'],
'smil' => ['application/smil'],
'sol' => ['application/solids'],
'spl' => ['application/x-futuresplash'],
'src' => ['application/x-wais-source'],
'step' => ['application/STEP'],
'stl' => ['application/SLA'],
'stp' => ['application/STEP'],
'sv4cpio' => ['application/x-sv4cpio'],
'sv4crc' => ['application/x-sv4crc'],
'svg' => ['image/svg+xml'],
'svgz' => ['image/svg+xml'],
'swf' => ['application/x-shockwave-flash'],
't' => ['application/x-troff'],
'tar' => ['application/x-tar'],
'tcl' => ['application/x-tcl'],
'tex' => ['application/x-tex'],
'texi' => ['application/x-texinfo'],
'texinfo' => ['application/x-texinfo'],
'tr' => ['application/x-troff'],
'tsp' => ['application/dsptype'],
'ttc' => ['font/ttf'],
'ttf' => ['font/ttf'],
'unv' => ['application/i-deas'],
'ustar' => ['application/x-ustar'],
'vcd' => ['application/x-cdlink'],
'vda' => ['application/vda'],
'xlc' => ['application/vnd.ms-excel'],
'xll' => ['application/vnd.ms-excel'],
'xlm' => ['application/vnd.ms-excel'],
'xls' => ['application/vnd.ms-excel'],
'xlsx' => ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'],
'xlsm' => ['application/vnd.ms-excel.sheet.macroEnabled.12'],
'xlw' => ['application/vnd.ms-excel'],
'zip' => ['application/zip'],
'aif' => ['audio/x-aiff'],
'aifc' => ['audio/x-aiff'],
'aiff' => ['audio/x-aiff'],
'au' => ['audio/basic'],
'kar' => ['audio/midi'],
'mid' => ['audio/midi'],
'midi' => ['audio/midi'],
'mp2' => ['audio/mpeg'],
'mp3' => ['audio/mpeg'],
'mpga' => ['audio/mpeg'],
'ogg' => ['audio/ogg'],
'oga' => ['audio/ogg'],
'spx' => ['audio/ogg'],
'ra' => ['audio/x-realaudio'],
'ram' => ['audio/x-pn-realaudio'],
'rm' => ['audio/x-pn-realaudio'],
'rpm' => ['audio/x-pn-realaudio-plugin'],
'snd' => ['audio/basic'],
'tsi' => ['audio/TSP-audio'],
'wav' => ['audio/x-wav'],
'aac' => ['audio/aac'],
'asc' => ['text/plain'],
'c' => ['text/plain'],
'cc' => ['text/plain'],
'css' => ['text/css'],
'etx' => ['text/x-setext'],
'f' => ['text/plain'],
'f90' => ['text/plain'],
'h' => ['text/plain'],
'hh' => ['text/plain'],
'htm' => ['text/html', '*/*'],
'ics' => ['text/calendar'],
'm' => ['text/plain'],
'rtf' => ['text/rtf'],
'rtx' => ['text/richtext'],
'sgm' => ['text/sgml'],
'sgml' => ['text/sgml'],
'tsv' => ['text/tab-separated-values'],
'tpl' => ['text/template'],
'txt' => ['text/plain'],
'text' => ['text/plain'],
'avi' => ['video/x-msvideo'],
'fli' => ['video/x-fli'],
'mov' => ['video/quicktime'],
'movie' => ['video/x-sgi-movie'],
'mpe' => ['video/mpeg'],
'mpeg' => ['video/mpeg'],
'mpg' => ['video/mpeg'],
'qt' => ['video/quicktime'],
'viv' => ['video/vnd.vivo'],
'vivo' => ['video/vnd.vivo'],
'ogv' => ['video/ogg'],
'webm' => ['video/webm'],
'mp4' => ['video/mp4'],
'm4v' => ['video/mp4'],
'f4v' => ['video/mp4'],
'f4p' => ['video/mp4'],
'm4a' => ['audio/mp4'],
'f4a' => ['audio/mp4'],
'f4b' => ['audio/mp4'],
'gif' => ['image/gif'],
'ief' => ['image/ief'],
'jpg' => ['image/jpeg'],
'jpeg' => ['image/jpeg'],
'jpe' => ['image/jpeg'],
'pbm' => ['image/x-portable-bitmap'],
'pgm' => ['image/x-portable-graymap'],
'png' => ['image/png'],
'pnm' => ['image/x-portable-anymap'],
'ppm' => ['image/x-portable-pixmap'],
'ras' => ['image/cmu-raster'],
'rgb' => ['image/x-rgb'],
'tif' => ['image/tiff'],
'tiff' => ['image/tiff'],
'xbm' => ['image/x-xbitmap'],
'xpm' => ['image/x-xpixmap'],
'xwd' => ['image/x-xwindowdump'],
'psd' => [
'application/photoshop',
'application/psd',
'image/psd',
'image/x-photoshop',
'image/photoshop',
'zz-application/zz-winassoc-psd',
],
'ice' => ['x-conference/x-cooltalk'],
'iges' => ['model/iges'],
'igs' => ['model/iges'],
'mesh' => ['model/mesh'],
'msh' => ['model/mesh'],
'silo' => ['model/mesh'],
'vrml' => ['model/vrml'],
'wrl' => ['model/vrml'],
'mime' => ['www/mime'],
'pdb' => ['chemical/x-pdb'],
'xyz' => ['chemical/x-pdb'],
'javascript' => ['application/javascript'],
'form' => ['application/x-www-form-urlencoded'],
'file' => ['multipart/form-data'],
'xhtml-mobile' => ['application/vnd.wap.xhtml+xml'],
'atom' => ['application/atom+xml'],
'amf' => ['application/x-amf'],
'wap' => ['text/vnd.wap.wml', 'text/vnd.wap.wmlscript', 'image/vnd.wap.wbmp'],
'wml' => ['text/vnd.wap.wml'],
'wmlscript' => ['text/vnd.wap.wmlscript'],
'wbmp' => ['image/vnd.wap.wbmp'],
'woff' => ['application/x-font-woff'],
'appcache' => ['text/cache-manifest'],
'manifest' => ['text/cache-manifest'],
'htc' => ['text/x-component'],
'rdf' => ['application/xml'],
'crx' => ['application/x-chrome-extension'],
'oex' => ['application/x-opera-extension'],
'xpi' => ['application/x-xpinstall'],
'safariextz' => ['application/octet-stream'],
'webapp' => ['application/x-web-app-manifest+json'],
'vcf' => ['text/x-vcard'],
'vtt' => ['text/vtt'],
'mkv' => ['video/x-matroska'],
'pkpass' => ['application/vnd.apple.pkpass'],
'ajax' => ['text/html'],
'bmp' => ['image/bmp'],
];
/**
* Get the MIME types associated with a given file extension.
*
* @param string|null $ext The file extension to look up. Use null to return the full list.
* @return array|null An array of MIME types if found, or null if no MIME types are associated with the extension.
*/
public static function getMimeTypes(?string $ext = null): ?array
{
if ($ext === null) {
return static::$mimeTypes;
}
return static::$mimeTypes[$ext] ?? null;
}
/**
* Get the MIME type based on the file extension.
*
* @param string $ext The file extension.
* @param string|null $default The default MIME type to return if the extension is not found. Defaults to null.
* @return string|null The MIME type corresponding to the file extension, or the default MIME type if not found.
*/
public static function getMimeType(string $ext, ?string $default = null): ?string
{
return isset(static::$mimeTypes[$ext]) ? static::$mimeTypes[$ext][0] : $default;
}
/**
* Add new mime types for a given file extension.
*
* If the file extension already exists, the new mime types will be merged with the existing ones.
*
* @param string $ext The file extension to associate with the mime types.
* @param array|string $mimeTypes The mime types to associate with the file extension.
* @return void
*/
public static function addMimeTypes(string $ext, array|string $mimeTypes): void
{
if (isset(static::$mimeTypes[$ext])) {
static::$mimeTypes[$ext] = array_merge(static::$mimeTypes[$ext], (array)$mimeTypes);
return;
}
static::$mimeTypes[$ext] = (array)$mimeTypes;
}
/**
* Set MIME types for a given file extension.
*
* This will overwrite any existing MIME types for the file extension.
*
* @param string $ext The file extension.
* @param array|string $mimeTypes The MIME types to associate with the file extension.
* @return void
*/
public static function setMimeTypes(string $ext, array|string $mimeTypes): void
{
static::$mimeTypes[$ext] = (array)$mimeTypes;
}
/**
* Get the file extension associated with a given MIME type.
*
* @param string $mimeType The MIME type for which to get the file extension.
* @return string|null The file extension associated with the MIME type, or null if no association is found.
*/
public static function getExtension(string $mimeType): ?string
{
foreach (static::$mimeTypes as $ext => $types) {
if (in_array($mimeType, $types, true)) {
return $ext;
}
}
return null;
}
/**
* Get the MIME type for a given file path.
*
* If the MIME type is not mapped to an extension then it will attempt to determine the MIME type of the file using
* the fileinfo extension.
*
* @param string $path The file path for which to get the MIME type.
* @param string $default The default MIME type to return if the MIME type cannot be determined.
* @return string The MIME type of the file, or the default MIME type if it cannot be determined.
*/
public static function getMimeTypeForFile(string $path, string $default = 'application/octet-stream'): string
{
$ext = strtolower(pathinfo($path, PATHINFO_EXTENSION));
if (isset(static::$mimeTypes[$ext])) {
return static::$mimeTypes[$ext][0];
}
$finfo = new finfo(FILEINFO_MIME);
$mimeType = $finfo->file($path);
return $mimeType === false ? $default : $mimeType;
}
}