forked from SWI-Prolog/packages-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mimetype.pl
185 lines (162 loc) · 6.02 KB
/
mimetype.pl
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
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (C): 1985-2013, University of Amsterdam
VU University Amsterdam
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
As a special exception, if you link this library with other files,
compiled with a Free Software compiler, to produce an executable, this
library does not by itself cause the resulting executable to be covered
by the GNU General Public License. This exception does not however
invalidate any other reasons why the executable file might be covered by
the GNU General Public License.
*/
:- module(mimetype,
[ file_mime_type/2 % +Path, -Type
]).
/** <module> Determine mime-type for a file
@ingroup http
Simple library to guess the mime-type from the extension of a file. As
various applications need to do this type ofinferencing it seems
worthwhile to place this functionality in an extensible library.
@tbd Consider content handling (using the Unix file command)
@tbd Allow parameters? (e.g. text/html; charset=UTF-8)
*/
%% file_mime_type(+FileName, -MimeType) is semidet.
%
% True when MimeType is the mime-type to be used for sending
% FileName. The default rules can be overridden and extended using
% the hook mime:mime_extension/2.
%
% @param MimeType is a compound term of the form Type/SubType.
file_mime_type(File, MimeType) :-
file_name_extension(_, Ext, File),
( current_prolog_flag(windows, true)
-> downcase_atom(Ext, Lower),
mime_extension(Lower, MimeType)
; mime_extension(Ext, M0)
-> MimeType = M0
; downcase_atom(Ext, Lower),
mime_extension(Lower, MimeType)
), !.
file_mime_type(File, MimeType) :-
file_base_name(File, Base),
downcase_atom(Base, Lower),
name_mimetype(Lower, Mime), !,
MimeType = Mime.
file_mime_type(_, MimeType) :-
default_mimetype(MimeType).
%% mime:mime_extension(+Ext, -MimeType) is semidet.
%
% Hook that is called by file_mime_type/2 before the default table
% is examined.
:- multifile
mime:mime_extension/2.
mime_extension(Ext, MimeType) :-
( mime:mime_extension(Ext, Mime)
-> MimeType = Mime
; ext_mimetype(Ext, Mime)
-> MimeType = Mime
).
%% default_mimetype(-MimeType) is semidet.
%
% If the mime-type cannot be determined from the file extension,
% this predicate is used as fallback. It takes the value from the
% Prolog flag =default_mimetype=. To change the default, use e.g.,
%
% ==
% :- set_prolog_flag(default_mimetype, text/plain).
% ==
%
% The initial default mime-type is =|application/unknown|=. Use
% the value =|-|= to denote there is no default.
:- create_prolog_flag(default_mimetype, application/unknown, []).
default_mimetype(MimeType) :-
current_prolog_flag(default_mimetype, MimeType),
MimeType = _/_.
%% ext_mimetype(+Extension, -MimeType) is semidet.
%
% Built-in table of file-name extension to mime-type mappings.
%
% @tbd Update this list, e.g., from
% http://www.webmaster-toolkit.com/mime-types.shtml
% plain text
ext_mimetype(txt, text/plain).
% markup
ext_mimetype(htm, text/html).
ext_mimetype(html, text/html).
ext_mimetype(xhtml, application/'xhtml+xml').
ext_mimetype(sgml, text/'x-sgml').
ext_mimetype(sgm, text/'x-sgml').
ext_mimetype(xml, text/xml).
ext_mimetype(css, text/css).
ext_mimetype(xsl, text/xml). % Unclear what this should be.
ext_mimetype(md, text/'x-markdown').
% semantic web stuff
ext_mimetype(rdf, application/'rdf+xml').
ext_mimetype(rdfs, application/'rdf+xml').
ext_mimetype(owl, application/'rdf+xml').
ext_mimetype(ttl, text/turtle).
% Prolog source
ext_mimetype(pl, text/plain).
% Other languages
ext_mimetype(c, text/'x-c').
ext_mimetype(h, text/'x-c').
ext_mimetype(cc, text/'x-c').
ext_mimetype(py, text/'x-python').
ext_mimetype(java, text/'x-java').
ext_mimetype(sh, text/plain).
% Packaged formats
ext_mimetype(gz, application/'x-gzip').
ext_mimetype(zip, application/zip).
ext_mimetype(tgz, application/'x-gtar').
% Some document formats
ext_mimetype(pdf, application/pdf).
ext_mimetype(doc, application/msword).
% Java classes
ext_mimetype(class, application/'octet-stream').
ext_mimetype(jar, application/'x-java-archive').
% JavaScript
ext_mimetype(js, text/javascript).
% Visual Basic Script :-(
ext_mimetype(vbs, text/vbscript).
% Some image formats
ext_mimetype(jpg, image/jpeg).
ext_mimetype(jpeg, image/jpeg).
ext_mimetype(gif, image/gif).
ext_mimetype(png, image/png).
ext_mimetype(tif, image/tiff).
ext_mimetype(tiff, image/tiff).
ext_mimetype(xpm, image/'x-xpixmap').
ext_mimetype(ico, image/'x-ico').
ext_mimetype(svg, image/'svg+xml').
% Google earth
ext_mimetype(kml, application/'vnd.google-earth.kml+xml').
ext_mimetype(kmz, application/'vnd.google-earth.kmz').
% Flash
ext_mimetype(swf, application/'x-shockwave-flash').
ext_mimetype(flv, video/'x-flv').
% MP3
ext_mimetype(mp3, audio/mpeg).
% Downloads
ext_mimetype(rpm, application/'x-rpm').
ext_mimetype(exe, application/'x-executable').
%% name_mimetype(+DownCaseFileName, -MimeType) is semidet.
%
% Determine the mime-type of files based on the entire filename.
name_mimetype(makefile, text/plain).
name_mimetype(configure, text/plain).
name_mimetype('configure.in', text/plain).
name_mimetype('makefile.in', text/plain).
name_mimetype('readme.in', text/plain).