blossom: GetExtension()

This commit is contained in:
fiatjaf
2026-01-12 15:45:53 -03:00
parent 5efcbbfddb
commit 14acd4b740
4 changed files with 39 additions and 35 deletions

View File

@@ -1,7 +1,6 @@
package blossom
import (
"mime"
"net/http"
)
@@ -9,31 +8,3 @@ func blossomError(w http.ResponseWriter, msg string, code int) {
w.Header().Add("X-Reason", msg)
w.WriteHeader(code)
}
func getExtension(mimetype string) string {
if mimetype == "" {
return ""
}
switch mimetype {
case "image/jpeg":
return ".jpg"
case "image/gif":
return ".gif"
case "image/png":
return ".png"
case "image/webp":
return ".webp"
case "video/mp4":
return ".mp4"
case "application/vnd.android.package-archive":
return ".apk"
}
exts, _ := mime.ExtensionsByType(mimetype)
if len(exts) > 0 {
return exts[0]
}
return ""
}