Refactor mime-types configuration

This commit is contained in:
Deluan 2021-07-08 11:38:29 -04:00
parent b34d77f85a
commit 334068c8bf

View file

@ -1,43 +1,59 @@
package consts package consts
import "mime" import (
"mime"
"sort"
"strings"
)
var LosslessFormats = []string{ type format struct {
"flac", "wav", "alac", "ape", "dsf", "wav", "shn", "wv", "wvp", typ string
lossless bool
} }
func init() { var audioFormats = map[string]format{
mt := map[string]string{ ".mp3": {typ: "audio/mpeg"},
".mp3": "audio/mpeg", ".ogg": {typ: "audio/ogg"},
".ogg": "audio/ogg", ".oga": {typ: "audio/ogg"},
".oga": "audio/ogg", ".opus": {typ: "audio/ogg"},
".opus": "audio/ogg", ".aac": {typ: "audio/mp4"},
".aac": "audio/mp4", ".alac": {typ: "audio/mp4", lossless: true},
".alac": "audio/mp4", ".m4a": {typ: "audio/mp4"},
".m4a": "audio/mp4", ".m4b": {typ: "audio/mp4"},
".m4b": "audio/mp4", ".flac": {typ: "audio/flac", lossless: true},
".flac": "audio/flac", ".wav": {typ: "audio/x-wav", lossless: true},
".wav": "audio/x-wav", ".wma": {typ: "audio/x-ms-wma"},
".wma": "audio/x-ms-wma", ".ape": {typ: "audio/x-monkeys-audio", lossless: true},
".ape": "audio/x-monkeys-audio", ".mpc": {typ: "audio/x-musepack"},
".mpc": "audio/x-musepack", ".shn": {typ: "audio/x-shn", lossless: true},
".shn": "audio/x-shn", ".aif": {typ: "audio/x-aiff"},
".aif": "audio/x-aiff", ".aiff": {typ: "audio/x-aiff"},
".aiff": "audio/x-aiff", ".m3u": {typ: "audio/x-mpegurl"},
".m3u": "audio/x-mpegurl", ".pls": {typ: "audio/x-scpls"},
".pls": "audio/x-scpls", ".dsf": {typ: "audio/dsd", lossless: true},
".dsf": "audio/dsd", ".wv": {typ: "audio/x-wavpack", lossless: true},
".wv": "audio/x-wavpack", ".wvp": {typ: "audio/x-wavpack", lossless: true},
".wvp": "audio/x-wavpack", }
var imageFormats = map[string]string{
".gif": "image/gif", ".gif": "image/gif",
".jpg": "image/jpeg", ".jpg": "image/jpeg",
".jpeg": "image/jpeg", ".jpeg": "image/jpeg",
".webp": "image/webp", ".webp": "image/webp",
".png": "image/png", ".png": "image/png",
".bmp": "image/bmp", ".bmp": "image/bmp",
} }
for ext, typ := range mt { var LosslessFormats []string
func init() {
for ext, fmt := range audioFormats {
_ = mime.AddExtensionType(ext, fmt.typ)
if fmt.lossless {
LosslessFormats = append(LosslessFormats, strings.TrimPrefix(ext, "."))
}
}
sort.Strings(LosslessFormats)
for ext, typ := range imageFormats {
_ = mime.AddExtensionType(ext, typ) _ = mime.AddExtensionType(ext, typ)
} }
} }