1234567891011121314151617181920212223242526272829 |
- package httputils
- import (
- "mime"
- "net/http"
- )
- // MimeTypes stores the MIME content type.
- var MimeTypes = struct {
- TextPlain string
- OctetStream string
- }{"text/plain", "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()
- // which separates the actual MIME string from any parameters.
- 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
- }
|