2015-04-04 10:54:43 -04:00
|
|
|
package httputils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"mime"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2015-08-02 21:45:05 -04:00
|
|
|
// MimeTypes stores the MIME content type.
|
2015-04-04 10:54:43 -04:00
|
|
|
var MimeTypes = struct {
|
|
|
|
TextPlain string
|
|
|
|
Tar string
|
|
|
|
OctetStream string
|
|
|
|
}{"text/plain", "application/tar", "application/octet-stream"}
|
|
|
|
|
|
|
|
// DetectContentType returns a best guess representation of the MIME
|
|
|
|
// content type for the bytes at c. The value detected by
|
|
|
|
// http.DetectContentType is guaranteed not be nil, defaulting to
|
|
|
|
// application/octet-stream when a better guess cannot be made. The
|
|
|
|
// result of this detection is then run through mime.ParseMediaType()
|
2015-07-02 07:17:11 -04:00
|
|
|
// which separates the actual MIME string from any parameters.
|
2015-04-04 10:54:43 -04:00
|
|
|
func DetectContentType(c []byte) (string, map[string]string, error) {
|
|
|
|
|
|
|
|
ct := http.DetectContentType(c)
|
|
|
|
contentType, args, err := mime.ParseMediaType(ct)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return contentType, args, nil
|
|
|
|
}
|