-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.go
427 lines (350 loc) · 11 KB
/
app.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
package xun
import (
"errors"
"io/fs"
"log/slog"
"net/http"
"strings"
"sync"
"github.com/yaitoo/xun/fsnotify"
)
// HandleFunc defines a function type that takes a Context pointer as an argument
// and returns an error. It is used to handle requests within the application.
type HandleFunc func(c *Context) error
// Middleware is a function type that takes a HandleFunc as an argument and returns a HandleFunc.
// It is used to wrap or decorate an existing HandleFunc with additional functionality.
type Middleware func(next HandleFunc) HandleFunc
// App is the main struct of the framework.
//
// It is used to register routes, middleware, and view engines.
//
// The application instance is initialized with a new http.ServeMux,
// and a handler that serves files from the current working directory
// is registered.
//
// The application instance is ready to be used with the standard
// http.Server type.
type App struct {
mu sync.RWMutex
mux *http.ServeMux
middlewares []Middleware
viewers map[string]Viewer
routes map[string]*Routing
handlerViewers []Viewer
engines []ViewEngine
logger *slog.Logger
fsys fs.FS
watch bool
watcher *fsnotify.Watcher
interceptor Interceptor
compressors []Compressor
}
// New allocates an App instance and loads all view engines.
//
// All view engines are loaded from root directory of given fs.FS.
// If watch is true, it will watch all file changes and reload all view engines if any files are changed.
// If watch is false, it won't watch any file changes.
func New(opts ...Option) *App {
app := &App{
routes: make(map[string]*Routing),
viewers: make(map[string]Viewer),
handlerViewers: []Viewer{&JsonViewer{}},
}
for _, o := range opts {
o(app)
}
if app.logger == nil {
app.logger = slog.Default()
}
if app.mux == nil {
app.mux = http.DefaultServeMux
}
if app.engines == nil {
app.engines = []ViewEngine{
&StaticViewEngine{},
&HtmlViewEngine{},
&TextViewEngine{},
}
}
if app.fsys != nil {
for _, ve := range app.engines {
err := ve.Load(app.fsys, app)
if err != nil {
app.logger.Error("xun: load views", slog.Any("err", err))
}
}
if app.watch {
app.watcher = fsnotify.NewWatcher(app.fsys)
if err := app.watcher.Add("."); err != nil {
app.logger.Error("xun: watcher add", slog.Any("err", err))
} else {
go app.enableHotReload()
}
}
}
return app
}
// Group creates a new router group with the specified prefix.
// It returns a Router interface that can be used to define routes
// within the group.
func (app *App) Group(prefix string) Router {
return &group{
prefix: prefix,
app: app,
}
}
// Start initializes and starts the application by locking the mutex,
// iterating through the routes, and logging the pattern and viewers
// for each route. It ensures thread safety by using a mutex lock.
func (app *App) Start() {
app.mu.Lock()
defer app.mu.Unlock()
for _, r := range app.routes {
keys := make([]string, 0, len(r.Viewers))
for _, v := range r.Viewers {
keys = append(keys, v.MimeType().String())
}
app.logger.Info(r.Pattern, slog.String("viewer", strings.Join(keys, ",")))
}
}
// Close safely locks the App instance, ensuring that no other
// goroutines can access it until the lock is released. This method
// should be called when the App instance is no longer needed to
// prevent any further operations on it.
func (app *App) Close() {
app.mu.Lock()
defer app.mu.Unlock()
}
// Use registers one or more Middleware functions to be executed
// before any route handler. Middleware functions are useful for
// creating reusable pieces of code that can be composed together
// to create complex behavior. For example, a middleware function
// might be used to log each request, or to check if a user is
// authenticated before allowing access to a page.
//
// The order of middleware functions matters. The first middleware
// function that is registered will be executed first, and the last
// middleware function that is registered will be executed last.
//
// Middleware functions are executed in the order they are registered.
func (app *App) Use(middleware ...Middleware) {
app.middlewares = append(app.middlewares, middleware...)
}
// Get registers a route handler for the given HTTP GET request pattern.
func (app *App) Get(pattern string, hf HandleFunc, opts ...RoutingOption) {
app.HandleFunc(http.MethodGet+" "+pattern, hf, opts...)
}
// Post registers a route handler for the given HTTP POST request pattern.
func (app *App) Post(pattern string, hf HandleFunc, opts ...RoutingOption) {
app.HandleFunc(http.MethodPost+" "+pattern, hf, opts...)
}
// Put registers a route handler for the given HTTP PUT request pattern.
func (app *App) Put(pattern string, hf HandleFunc, opts ...RoutingOption) {
app.HandleFunc(http.MethodPut+" "+pattern, hf, opts...)
}
// Delete registers a route handler for the given HTTP DELETE request pattern.
func (app *App) Delete(pattern string, hf HandleFunc, opts ...RoutingOption) {
app.HandleFunc(http.MethodDelete+" "+pattern, hf, opts...)
}
// Next applies the middlewares in the app to the given HandleFunc in reverse order.
// It returns the final HandleFunc after all middlewares have been applied.
func (app *App) Next(hf HandleFunc) HandleFunc {
next := hf
for i := len(app.middlewares); i > 0; i-- {
next = app.middlewares[i-1](next)
}
return next
}
// HandleFile registers a route handler for serving a file.
//
// This function associates a FileViewer with a given file name
// and registers the route in the application's routing table.
// If a route with the same pattern already exists, it returns immediately
// without making any changes.
func (app *App) HandleFile(name string, v *FileViewer) {
ro := &RoutingOptions{}
_, _, pat := splitFile(name)
r, ok := app.routes[pat]
if ok {
return
}
ro.viewers = []Viewer{v}
app.viewers[name] = v
hf := func(c *Context) error {
return v.Render(c.rw, c.req, nil)
}
r = &Routing{
Options: ro,
Pattern: pat,
Handle: hf,
chain: app,
}
app.routes[pat] = r
r.Viewers = append(r.Viewers, v)
app.mux.HandleFunc(pat, func(w http.ResponseWriter, req *http.Request) {
rw := app.createWriter(req, w)
defer rw.Close()
ctx := &Context{
req: req,
rw: rw,
Routing: *r,
app: app,
}
err := r.Next(ctx)
if err == nil || errors.Is(err, ErrCancelled) {
return
}
logID := nextLogID()
ctx.WriteHeader("X-Log-Id", logID)
ctx.WriteStatus(http.StatusInternalServerError)
app.logger.Error("xun: file", slog.Any("err", err), slog.String("logid", logID))
})
}
// HandlePage registers a route handler for a page view.
//
// This function associates a Viewer with a given route pattern
// and registers the route in the application's routing table.
// If a route with the same pattern already exists, it updates
// the existing route with the new Viewer.
func (app *App) HandlePage(pattern string, viewName string, v Viewer) {
ro := &RoutingOptions{
viewers: []Viewer{v},
}
r, ok := app.routes[pattern]
if ok {
r.Viewers = append(r.Viewers, v)
return
}
app.viewers[viewName] = v
hf := func(c *Context) error {
return v.Render(c.rw, c.req, nil)
}
r = &Routing{
Options: ro,
Pattern: pattern,
Handle: hf,
chain: app,
}
r.Viewers = append(r.Viewers, v)
app.routes[pattern] = r
app.mux.HandleFunc(pattern, func(w http.ResponseWriter, req *http.Request) {
rw := app.createWriter(req, w)
defer rw.Close()
ctx := &Context{
req: req,
rw: rw,
Routing: *r,
app: app,
}
err := r.Next(ctx)
if err == nil || errors.Is(err, ErrCancelled) {
return
}
logID := nextLogID()
ctx.WriteHeader("X-Log-Id", logID)
ctx.WriteStatus(http.StatusInternalServerError)
app.logger.Error("xun: view", slog.Any("err", err), slog.String("logid", logID))
})
}
// HandleFunc registers a route handler for the given HTTP request pattern.
//
// The pattern is expected to be in the format "METHOD PATTERN", where
// METHOD is the HTTP method (e.g. "GET", "POST", etc.) and PATTERN is
// the URL path pattern.
//
// The opts parameter is a list of RoutingOption functions that can be
// used to customize the route. See the RoutingOption type for more
// information.
func (app *App) HandleFunc(pattern string, hf HandleFunc, opts ...RoutingOption) {
app.createHandler(pattern, hf, opts, app)
}
// createWriter creates a ResponseWriter that supports compression based on the
// "Accept-Encoding" header in the HTTP request. If the header contains a
// supported encoding or a wildcard "*", it returns a compressed ResponseWriter.
// Otherwise, it returns a standard ResponseWriter.
func (app *App) createWriter(req *http.Request, w http.ResponseWriter) ResponseWriter {
acceptEncoding := req.Header.Get("Accept-Encoding")
stars := strings.ContainsAny(acceptEncoding, "*")
for _, compressor := range app.compressors {
if stars || strings.Contains(acceptEncoding, compressor.AcceptEncoding()) {
return compressor.New(w)
}
}
return &stdResponseWriter{ResponseWriter: w}
}
// createHandler registers a new route with the given pattern, handler function, routing options, and middleware chain.
// It updates the route if it already exists or creates a new one if it doesn't.
// The function also sets up the HTTP handler for the route and manages the viewers for different MIME types.
func (app *App) createHandler(pattern string, hf HandleFunc, opts []RoutingOption, c chain) {
ro := &RoutingOptions{
viewers: app.handlerViewers,
}
for _, o := range opts {
o(ro)
}
r, ok := app.routes[pattern]
if ok {
// overwrite existing page route
r.Options = ro
r.Handle = hf
r.chain = c
if len(ro.viewers) > 0 {
// append current handler's viewer to existing viewers
r.Viewers = append(r.Viewers, ro.viewers...)
}
return
}
r = &Routing{
Options: ro,
Pattern: pattern,
Handle: hf,
chain: c,
}
if len(ro.viewers) > 0 {
// append current handler's viewer to first viewer
r.Viewers = append(r.Viewers, ro.viewers...)
}
app.routes[pattern] = r
app.mux.HandleFunc(pattern, func(w http.ResponseWriter, req *http.Request) {
rw := app.createWriter(req, w)
defer rw.Close()
ctx := &Context{
req: req,
rw: rw,
Routing: *r,
app: app,
}
err := r.Next(ctx)
if err == nil || errors.Is(err, ErrCancelled) {
return
}
logID := nextLogID()
ctx.WriteHeader("X-Log-Id", logID)
ctx.WriteStatus(http.StatusInternalServerError)
app.logger.Error("xun: handle", slog.Any("err", err), slog.String("logid", logID))
})
}
func (app *App) enableHotReload() {
defer app.watcher.Stop()
go app.watcher.Start()
for {
select {
case event, ok := <-app.watcher.Events:
if !ok {
return
}
var err error
for _, ve := range app.engines {
err = ve.FileChanged(app.fsys, app, event)
if err != nil {
app.logger.Error("xun: on file changed", slog.Any("err", err))
}
}
case err, ok := <-app.watcher.Errors:
if !ok {
return
}
app.logger.Error("xun: watcher", slog.Any("err", err))
}
}
}