1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
12 // The algorithm uses at most sniffLen bytes to make its decision.
15 // DetectContentType implements the algorithm described
16 // at http://mimesniff.spec.whatwg.org/ to determine the
17 // Content-Type of the given data. It considers at most the
18 // first 512 bytes of data. DetectContentType always returns
19 // a valid MIME type: if it cannot determine a more specific one, it
20 // returns "application/octet-stream".
21 func DetectContentType(data
[]byte) string {
22 if len(data
) > sniffLen
{
23 data
= data
[:sniffLen
]
26 // Index of the first non-whitespace byte in data.
28 for ; firstNonWS
< len(data
) && isWS(data
[firstNonWS
]); firstNonWS
++ {
31 for _
, sig
:= range sniffSignatures
{
32 if ct
:= sig
.match(data
, firstNonWS
); ct
!= "" {
37 return "application/octet-stream" // fallback
40 func isWS(b
byte) bool {
42 case '\t', '\n', '\x0c', '\r', ' ':
48 type sniffSig
interface {
49 // match returns the MIME type of the data, or "" if unknown.
50 match(data
[]byte, firstNonWS
int) string
53 // Data matching the table in section 6.
54 var sniffSignatures
= []sniffSig
{
55 htmlSig("<!DOCTYPE HTML"),
73 &maskedSig
{mask
: []byte("\xFF\xFF\xFF\xFF\xFF"), pat
: []byte("<?xml"), skipWS
: true, ct
: "text/xml; charset=utf-8"},
75 &exactSig
{[]byte("%PDF-"), "application/pdf"},
76 &exactSig
{[]byte("%!PS-Adobe-"), "application/postscript"},
79 &maskedSig
{mask
: []byte("\xFF\xFF\x00\x00"), pat
: []byte("\xFE\xFF\x00\x00"), ct
: "text/plain; charset=utf-16be"},
80 &maskedSig
{mask
: []byte("\xFF\xFF\x00\x00"), pat
: []byte("\xFF\xFE\x00\x00"), ct
: "text/plain; charset=utf-16le"},
81 &maskedSig
{mask
: []byte("\xFF\xFF\xFF\x00"), pat
: []byte("\xEF\xBB\xBF\x00"), ct
: "text/plain; charset=utf-8"},
83 &exactSig
{[]byte("GIF87a"), "image/gif"},
84 &exactSig
{[]byte("GIF89a"), "image/gif"},
85 &exactSig
{[]byte("\x89\x50\x4E\x47\x0D\x0A\x1A\x0A"), "image/png"},
86 &exactSig
{[]byte("\xFF\xD8\xFF"), "image/jpeg"},
87 &exactSig
{[]byte("BM"), "image/bmp"},
89 mask
: []byte("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF\xFF\xFF"),
90 pat
: []byte("RIFF\x00\x00\x00\x00WEBPVP"),
93 &exactSig
{[]byte("\x00\x00\x01\x00"), "image/vnd.microsoft.icon"},
95 mask
: []byte("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF"),
96 pat
: []byte("RIFF\x00\x00\x00\x00WAVE"),
100 mask
: []byte("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF"),
101 pat
: []byte("FORM\x00\x00\x00\x00AIFF"),
105 mask
: []byte("\xFF\xFF\xFF\xFF"),
110 mask
: []byte("\xFF\xFF\xFF\xFF\xFF"),
111 pat
: []byte("OggS\x00"),
112 ct
: "application/ogg",
115 mask
: []byte("\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF"),
116 pat
: []byte("MThd\x00\x00\x00\x06"),
120 mask
: []byte("\xFF\xFF\xFF"),
125 mask
: []byte("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF"),
126 pat
: []byte("RIFF\x00\x00\x00\x00AVI "),
129 &exactSig
{[]byte("\x1A\x45\xDF\xA3"), "video/webm"},
130 &exactSig
{[]byte("\x52\x61\x72\x20\x1A\x07\x00"), "application/x-rar-compressed"},
131 &exactSig
{[]byte("\x50\x4B\x03\x04"), "application/zip"},
132 &exactSig
{[]byte("\x1F\x8B\x08"), "application/x-gzip"},
136 textSig
{}, // should be last
139 type exactSig
struct {
144 func (e
*exactSig
) match(data
[]byte, firstNonWS
int) string {
145 if bytes
.HasPrefix(data
, e
.sig
) {
151 type maskedSig
struct {
157 func (m
*maskedSig
) match(data
[]byte, firstNonWS
int) string {
158 // pattern matching algorithm section 6
159 // https://mimesniff.spec.whatwg.org/#pattern-matching-algorithm
162 data
= data
[firstNonWS
:]
164 if len(m
.pat
) != len(m
.mask
) {
167 if len(data
) < len(m
.mask
) {
170 for i
, mask
:= range m
.mask
{
181 func (h htmlSig
) match(data
[]byte, firstNonWS
int) string {
182 data
= data
[firstNonWS
:]
183 if len(data
) < len(h
)+1 {
186 for i
, b
:= range h
{
188 if 'A' <= b
&& b
<= 'Z' {
195 // Next byte must be space or right angle bracket.
196 if db
:= data
[len(h
)]; db
!= ' ' && db
!= '>' {
199 return "text/html; charset=utf-8"
202 var mp4ftype
= []byte("ftyp")
203 var mp4
= []byte("mp4")
207 func (mp4Sig
) match(data
[]byte, firstNonWS
int) string {
208 // https://mimesniff.spec.whatwg.org/#signature-for-mp4
209 // c.f. section 6.2.1
213 boxSize
:= int(binary
.BigEndian
.Uint32(data
[:4]))
214 if boxSize%4
!= 0 ||
len(data
) < boxSize
{
217 if !bytes
.Equal(data
[4:8], mp4ftype
) {
220 for st
:= 8; st
< boxSize
; st
+= 4 {
222 // minor version number
225 if bytes
.Equal(data
[st
:st
+3], mp4
) {
232 type textSig
struct{}
234 func (textSig
) match(data
[]byte, firstNonWS
int) string {
235 // c.f. section 5, step 4.
236 for _
, b
:= range data
[firstNonWS
:] {
240 0x0E <= b
&& b
<= 0x1A,
241 0x1C <= b
&& b
<= 0x1F:
245 return "text/plain; charset=utf-8"