forked from prymitive/karma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassets.go
101 lines (88 loc) · 2.22 KB
/
assets.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package main
import (
"errors"
"fmt"
"html/template"
"net/http"
"os"
"strings"
"time"
assetfs "github.com/elazarl/go-bindata-assetfs"
"github.com/gin-gonic/gin"
log "github.com/sirupsen/logrus"
)
type binaryFileSystem struct {
fs http.FileSystem
}
func (b *binaryFileSystem) Open(name string) (http.File, error) {
return b.fs.Open(name)
}
func (b *binaryFileSystem) Exists(prefix string, filepath string) bool {
if p := strings.TrimPrefix(filepath, prefix); len(p) < len(filepath) {
if _, err := b.fs.Open(p); err != nil {
// file does not exist
return false
}
// file exist
return true
}
// file path doesn't start with fs prefix, so this file isn't stored here
return false
}
func newBinaryFileSystem(root string) *binaryFileSystem {
fs := &assetfs.AssetFS{
Asset: Asset,
// Don't render directory index, return 404 for /static/ requests)
AssetDir: func(path string) ([]string, error) {
return nil, errors.New("not found")
},
Prefix: root,
}
return &binaryFileSystem{fs}
}
// load a template from binary asset resource
func loadTemplate(t *template.Template, path string) *template.Template {
templateContent, err := Asset(path)
if err != nil {
log.Fatal(err)
}
var tmpl *template.Template
if t == nil {
// if template wasn't yet initialized do it here
t = template.New(path)
}
if path == t.Name() {
tmpl = t
} else {
// if we already have an instance of template.Template then
// add a new file to it
tmpl = t.New(path)
}
_, err = tmpl.Parse(string(templateContent))
if err != nil {
log.Fatal(err)
return nil
}
return t
}
func serveFileOr404(path string, contentType string, c *gin.Context) {
c.Header("Cache-Control", "no-cache, no-store, must-revalidate")
if path == "" {
c.Data(200, contentType, nil)
return
}
if _, err := os.Stat(path); os.IsNotExist(err) {
c.Data(404, contentType, []byte(fmt.Sprintf("%s not found", path)))
return
}
c.File(path)
}
func staticHeaders(prefix string) gin.HandlerFunc {
return func(c *gin.Context) {
if strings.HasPrefix(c.Request.URL.Path, prefix) {
c.Header("Cache-Control", "public, max-age=2592000")
expiresTime := time.Now().AddDate(0, 0, 30).Format(http.TimeFormat)
c.Header("Expires", expiresTime)
}
}
}