-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
93 lines (75 loc) · 2.44 KB
/
main.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
package main
import (
"github.com/gin-contrib/multitemplate"
"github.com/gouef/diago"
"github.com/gouef/diago/extensions"
"github.com/gouef/finder"
"github.com/gouef/router"
extensions2 "github.com/gouef/router/extensions"
"path/filepath"
//web_bootstrap "github.com/gouef/web-bootstrap"
"github.com/gouef/web-project/app"
"github.com/gouef/web-project/controllers"
"github.com/gouef/web-project/handlers"
)
func boot() *router.Router {
/*b := web_bootstrap.NewBootstrap()
b.Boot()*/
r := router.NewRouter()
n := r.GetNativeRouter() /*
n.Use(func(c *gin.Context) {
c.Writer.Header().Del("Purpose")
c.Writer.Header().Set("Purpose", "prefetch")
c.Writer.Header().Set("X-DNS-Prefetch-Control", "on")
c.Next()
})*/
if !r.IsRelease() {
d := diago.NewDiago()
d.AddExtension(extensions.NewLatencyExtension())
d.AddExtension(extensions2.NewDiagoRouteExtension(r))
n.Use(diago.Middleware(r, d))
}
templateHandler := &handlers.TemplateHandler{Router: r}
// Inicializace šablon
templateHandler.Initialize()
n.SetTrustedProxies([]string{"127.0.0.1"})
//n.LoadHTMLGlob("views/templates/**/*")
n.HTMLRender = loadTemplates("./views/templates", templateHandler)
n.Static("/static", "./static")
n.Static("/assets", "./static/assets")
rl := app.RouterFactory()
r.SetErrorHandler(404, controllers.Error404)
r.SetErrorHandler(500, controllers.Error500)
r.SetDefaultErrorHandler(controllers.Error404)
r.AddRouteList(rl)
return r
}
func main() {
r := boot()
r.Run(":8080")
}
func loadTemplates(templatesDir string, templateHandler *handlers.TemplateHandler) multitemplate.Renderer {
r := multitemplate.NewRenderer()
funcMap := templateHandler.GetFuncMap()
find := finder.FindFiles("*.gohtml").In(templatesDir)
layouts := map[string]finder.Info{}
var layoutsList []string
includes := map[string]finder.Info{}
var includesList []string
layouts = find.Match("layout.gohtml", "base.gohtml")
includes = find.Exclude("layout.gohtml", "@layout.gohtml", "base.gohtml").Get()
for p, _ := range layouts {
layoutsList = append(layoutsList, p)
}
for p, _ := range includes {
includesList = append(includesList, p)
}
// Generate our templates map from our layouts/ and includes/ directories
for _, include := range includesList {
layoutCopy := make([]string, len(layoutsList))
copy(layoutCopy, layoutsList)
files := append(layoutCopy, includesList...)
r.AddFromFilesFuncs(filepath.Base(include), funcMap, files...)
}
return r
}