forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate_mime_type_map.php
More file actions
executable file
·100 lines (81 loc) · 3.3 KB
/
generate_mime_type_map.php
File metadata and controls
executable file
·100 lines (81 loc) · 3.3 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
#!/usr/bin/env php
<?php
// Check if we are being given a mime.types file or if we should use the
// default URL.
$source = count($argv) > 1 ? $argv[1] : 'https://cdn.jsdelivr.net/gh/jshttp/mime-db@v1.52.0/db.json';
// See if we can actually load it.
$data = @file_get_contents($source);
if ($data === false) {
fprintf(STDERR, "Error: unable to read $source\n");
exit(1);
}
// Source preference from lowest to highest
$prefs = ['nginx' => 1, 'apache' => 2, 'custom' => 3, 'iana' => 4];
$extensions = [];
$types = json_decode($data, true);
foreach ($types as $mime => $info) {
$source = $info['source'] ?? 'custom';
$pref = $prefs[$source];
foreach ($info['extensions'] ?? [] as $extension) {
if (isset($extensions[$extension])) {
// Use same preference rules as jshttp/mime-types
[$oldMime, $oldPref] = $extensions[$extension];
if ($oldMime !== 'application/octet-stream'
&& ($oldPref > $pref
|| ($oldPref === $pref && substr($oldMime, 0, 12) === 'application/'))) {
continue;
}
}
$extensions[$extension] = [$mime, $pref];
}
}
// Only keep the MIME type.
$extensions = array_map(function($x) { return $x[0]; }, $extensions);
$additional_mime_maps = [
"jsm" => "application/javascript",
];
foreach($additional_mime_maps as $ext => $mime) {
if (!isset($extensions[$ext])) {
$extensions[$ext] = $mime;
} else {
fprintf(STDERR, "Ignored exist mime type: $ext => $mime\n");
}
}
uksort($extensions, function($ext1, $ext2) {
return strcmp($ext1, $ext2);
});
echo <<<HEADER
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Moriyoshi Koizumi <moriyoshi@php.net> |
+----------------------------------------------------------------------+
*/
/* This is a generated file. Rather than modifying it, please run
* "php generate_mime_type_map.php > mime_type_map.h" to regenerate the file. */
#ifndef PHP_CLI_SERVER_MIME_TYPE_MAP_H
#define PHP_CLI_SERVER_MIME_TYPE_MAP_H
typedef struct php_cli_server_ext_mime_type_pair {
\tconst char *ext;
\tconst char *mime_type;
} php_cli_server_ext_mime_type_pair;
static const php_cli_server_ext_mime_type_pair mime_type_map[] = {
HEADER;
foreach ($extensions as $extension => $mime) {
echo "\t{ \"" .addcslashes($extension, "\0..\37!@\@\177..\377") . "\", \""
. addcslashes($mime, "\0..\37!@\@\177..\377") . "\" },\n";
}
echo <<<FOOTER
\t{ NULL, NULL }
};
#endif /* PHP_CLI_SERVER_MIME_TYPE_MAP_H */
FOOTER;