-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgow.go
413 lines (362 loc) · 9.84 KB
/
gow.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
package gow
import (
"fmt"
"github.com/gkzy/gow/render"
"html/template"
"net/http"
"path"
"strings"
"sync"
)
var (
default404Body = []byte("404 page not found")
default405Body = []byte("405 method not allowed")
)
//HandlerFunc handler func
type HandlerFunc func(*Context)
type HandlersChain []HandlerFunc
//Last last handler
func (c HandlersChain) Last() HandlerFunc {
if length := len(c); length > 0 {
return c[length-1]
}
return nil
}
// RouteInfo represents a request route's specification which contains method and path and its handler.
type RouteInfo struct {
Method string
Path string
Handler string
HandlerFunc HandlerFunc
}
// RoutesInfo defines a RouteInfo array.
type RoutesInfo []RouteInfo
const (
defaultMode = "dev"
devMode = "dev"
prodMode = "prod"
defaultViews = "views"
defaultStatic = "static"
defaultMultipartMemory = 32 << 20
)
type Engine struct {
AppName string
RunMode string
AppPath string //程序的运行地址
*RouterGroup
//template
HTMLRender render.Render
FuncMap template.FuncMap
delims render.Delims
AutoRender bool //是否渲染模板
HandleMethodNotAllowed bool
UseRawPath bool
UnescapePathValues bool
RemoveExtraSlash bool
RedirectTrailingSlash bool
RedirectFixedPath bool
MaxMultipartMemory int64
//views template directory
viewsPath string
staticPath string
httpAddr string
trees methodTrees
allNoRoute HandlersChain
allNoMethod HandlersChain
noRoute HandlersChain
noMethod HandlersChain
pool sync.Pool
// session switch
SessionOn bool
}
func New() *Engine {
engine := &Engine{
RouterGroup: &RouterGroup{
Handlers: nil,
basePath: "/",
root: true,
},
FuncMap: template.FuncMap{},
delims: render.Delims{Left: "{{", Right: "}}"},
AutoRender: false,
RedirectTrailingSlash: true,
RedirectFixedPath: false,
HandleMethodNotAllowed: false,
AppName: "gow",
UseRawPath: false,
RemoveExtraSlash: false,
UnescapePathValues: true,
MaxMultipartMemory: defaultMultipartMemory,
trees: make(methodTrees, 0, 9),
viewsPath: defaultViews,
staticPath: defaultStatic,
httpAddr: ":8080", //default http Addr
RunMode: defaultMode,
AppPath: getCurrentDirectory(),
}
engine.RouterGroup.engine = engine
engine.pool.New = func() interface{} {
ctx := &Context{engine: engine}
return ctx
}
return engine
}
// Default get default engine
// use Recovery()
// use Logger()
func Default() *Engine {
engine := New()
engine.Use(Recovery())
engine.Use(Logger())
return engine
}
//Use use middleware
func (engine *Engine) Use(middleware ...HandlerFunc) {
engine.RouterGroup.Use(middleware...)
engine.engine.rebuild404Handlers()
engine.engine.rebuild405Handlers()
}
// ServeHTTP implement the http.handler interface
func (engine *Engine) ServeHTTP(w http.ResponseWriter, req *http.Request) {
c := engine.pool.Get().(*Context)
c.responseWriter.reset(w)
c.Req = req
c.reset()
c.Data = make(map[interface{}]interface{},0)
engine.handleHTTPRequest(c)
engine.pool.Put(c)
}
// SetAppConfig 统一配置入口
// 可使用此方法统一配置,也可以使用其他方法单独设置
func (engine *Engine) SetAppConfig(app *AppConfig) {
if app != nil {
debugPrint("[%s] Load the configuration using the SetAppConfig method", app.AppName)
engine.AppName = app.AppName
engine.RunMode = app.RunMode
engine.viewsPath = app.Views
engine.delims = render.Delims{Left: app.TemplateLeft, Right: app.TemplateRight}
engine.AutoRender = app.AutoRender
engine.httpAddr = app.HttpAddr
}
}
// Run
func (engine *Engine) Run(addr ...string) (err error) {
defer func() {
debugPrintError(err)
}()
if engine.AutoRender {
//builder template
err = render.AddViewPath(engine.viewsPath)
}
address := engine.resolveAddress(addr)
if engine.RunMode == devMode {
fmt.Println(logo)
debugPrint("package: %s", pkg)
debugPrint("website: %s", site)
}
debugPrint("[%s] [%s] Listening and serving HTTP on %s", engine.AppName, engine.RunMode, address)
err = http.ListenAndServe(address, engine)
return
}
// RunTLS
func (engine *Engine) RunTLS(certFile, keyFile string, addr ...string) (err error) {
defer func() {
debugPrintError(err)
}()
if engine.AutoRender {
//builder template
err = render.AddViewPath(engine.viewsPath)
}
address := engine.resolveAddress(addr)
if engine.RunMode == devMode {
fmt.Println(logo)
debugPrint("package: %s", pkg)
debugPrint("website: %s", site)
}
debugPrint("[%s] [%s] Listening and serving HTTP on %s", engine.AppName, engine.RunMode, address)
err = http.ListenAndServeTLS(address, certFile, keyFile, engine)
return
}
// SetSessionOn SetSessionOn
func (engine *Engine) SetSessionOn(on bool) {
engine.SessionOn = on
}
// NoRoute adds handlers for NoRoute. It return a 404 code by default.
func (engine *Engine) NoRoute(handlers ...HandlerFunc) {
engine.noRoute = handlers
engine.rebuild404Handlers()
}
// NoMethod sets the handlers called when...
// TODO:
func (engine *Engine) NoMethod(handlers ...HandlerFunc) {
engine.noMethod = handlers
engine.rebuild405Handlers()
}
func (engine *Engine) rebuild404Handlers() {
engine.allNoRoute = engine.combineHandlers(engine.noRoute)
}
func (engine *Engine) rebuild405Handlers() {
engine.allNoMethod = engine.combineHandlers(engine.noMethod)
}
// AddFuncMap add fn func to template func map
func (engine *Engine) AddFuncMap(key string, fn interface{}) {
engine.FuncMap[key] = fn
}
// Delims set Delims
func (engine *Engine) Delims(left, right string) {
engine.delims = render.Delims{Left: left, Right: right}
}
// SetView set views path
// 模板目录为 views 时,可不用设置此值
func (engine *Engine) SetView(path ...string) {
dir := defaultViews
if len(path) > 0 {
dir = path[0]
}
engine.viewsPath = dir
}
// RoutesMap get all router map
func (engine *Engine) RouterMap() (routes RoutesInfo) {
for _, tree := range engine.trees {
routes = iterate("", tree.method, routes, tree.root)
}
return routes
}
// ==========================private func=======================
func iterate(path, method string, routes RoutesInfo, root *node) RoutesInfo {
path += root.path
if len(root.handlers) > 0 {
handlerFunc := root.handlers.Last()
routes = append(routes, RouteInfo{
Method: method,
Path: path,
Handler: nameOfFunction(handlerFunc),
HandlerFunc: handlerFunc,
})
}
for _, child := range root.children {
routes = iterate(path, method, routes, child)
}
return routes
}
func (engine *Engine) handleHTTPRequest(c *Context) {
httpMethod := c.Req.Method
rPath := c.Req.URL.Path
unescape := false
if engine.UseRawPath && len(c.Req.URL.RawPath) > 0 {
rPath = c.Req.URL.RawPath
unescape = engine.UnescapePathValues
}
if engine.RemoveExtraSlash {
rPath = cleanPath(rPath)
}
// Find root of the tree for the given HTTP method
t := engine.trees
for i, tl := 0, len(t); i < tl; i++ {
if t[i].method != httpMethod {
continue
}
root := t[i].root
// Find route in tree
value := root.getValue(rPath, c.Params, unescape)
if value.handlers != nil {
c.handlers = value.handlers
c.Params = value.params
c.fullPath = strings.ToLower(value.fullPath)
c.Method = httpMethod
c.Path = rPath
c.Next()
c.responseWriter.WriteHeaderNow()
return
}
if httpMethod != "CONNECT" && rPath != "/" {
if value.tsr && engine.RedirectTrailingSlash {
redirectTrailingSlash(c)
return
}
if engine.RedirectFixedPath && redirectFixedPath(c, root, engine.RedirectFixedPath) {
return
}
}
break
}
if engine.HandleMethodNotAllowed {
for _, tree := range engine.trees {
if tree.method == httpMethod {
continue
}
if value := tree.root.getValue(rPath, nil, unescape); value.handlers != nil {
c.handlers = engine.allNoMethod
serveError(c, http.StatusMethodNotAllowed, default405Body)
return
}
}
}
c.handlers = engine.allNoRoute
serveError(c, http.StatusNotFound, default404Body)
}
func redirectTrailingSlash(c *Context) {
req := c.Req
p := req.URL.Path
if prefix := path.Clean(c.Req.Header.Get("X-Forwarded-Prefix")); prefix != "." {
p = prefix + "/" + req.URL.Path
}
req.URL.Path = p + "/"
if length := len(p); length > 1 && p[length-1] == '/' {
req.URL.Path = p[:length-1]
}
redirectRequest(c)
}
func redirectFixedPath(c *Context, root *node, trailingSlash bool) bool {
req := c.Req
rPath := req.URL.Path
if fixedPath, ok := root.findCaseInsensitivePath(cleanPath(rPath), trailingSlash); ok {
req.URL.Path = BytesToString(fixedPath)
redirectRequest(c)
return true
}
return false
}
func redirectRequest(c *Context) {
req := c.Req
rPath := req.URL.Path
rURL := req.URL.String()
code := http.StatusMovedPermanently // Permanent redirect, request with GET method
if req.Method != http.MethodGet {
code = http.StatusTemporaryRedirect
}
debugPrint("redirecting request %d: %s --> %s", code, rPath, rURL)
http.Redirect(c.Writer, req, rURL, code)
c.Writer.WriteHeaderNow()
}
var mimePlain = []string{"text/plain"}
func serveError(c *Context, code int, defaultMessage []byte) {
c.responseWriter.status = code
c.Next()
if c.responseWriter.Written() {
return
}
if c.responseWriter.Status() == code {
c.responseWriter.Header()["Content-Type"] = mimePlain
_, err := c.Writer.Write(defaultMessage)
if err != nil {
debugPrint("cannot write message to writer during serve error: %v", err)
}
return
}
c.responseWriter.WriteHeaderNow()
}
func (engine *Engine) reuseContext(ctx *Context) {
engine.pool.Put(ctx)
}
// resolveAddress
func (engine *Engine) resolveAddress(addr []string) string {
switch len(addr) {
case 0:
return engine.httpAddr
case 1:
return addr[0]
default:
panic("too many parameters")
}
}