mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 03:36:33 +03:00
Refactor mime type detection by using path/filepath package
This commit is contained in:
parent
338df85549
commit
b6d1b2502e
16
api.go
16
api.go
@ -4,6 +4,7 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/gin-gonic/gin"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
@ -12,19 +13,16 @@ type Error struct {
|
||||
}
|
||||
|
||||
func assetContentType(name string) string {
|
||||
if strings.Contains(name, ".css") {
|
||||
switch filepath.Ext(name) {
|
||||
case ".css":
|
||||
return "text/css"
|
||||
}
|
||||
|
||||
if strings.Contains(name, ".js") {
|
||||
case ".js":
|
||||
return "application/javascript"
|
||||
}
|
||||
|
||||
if strings.Contains(name, ".icon") {
|
||||
case ".icon":
|
||||
return "image/x-icon"
|
||||
default:
|
||||
return "text/plain"
|
||||
}
|
||||
|
||||
return "text/plain"
|
||||
}
|
||||
|
||||
func API_Home(c *gin.Context) {
|
||||
|
Loading…
Reference in New Issue
Block a user