aboutsummaryrefslogtreecommitdiff
path: root/pkg/ext/router.go
blob: 96da1c9399992e589bbd4fefdb0bfc78b5e59b80 (plain)
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
package ext

import (
	"errors"
	"fmt"
	"net/http"

	"git.gabrielgio.me/cerrado/pkg/service"
	"git.gabrielgio.me/cerrado/templates"
)

type (
	Router struct {
		middlewares []Middleware
		router      *http.ServeMux
	}
	Middleware          func(next http.HandlerFunc) http.HandlerFunc
	ErrorRequestHandler func(w http.ResponseWriter, r *http.Request) error
)

func NewRouter() *Router {
	return &Router{
		router: http.NewServeMux(),
	}
}
func (r *Router) Handler() http.Handler {
	return r.router
}

func (r *Router) AddMiddleware(middleware Middleware) {
	r.middlewares = append(r.middlewares, middleware)
}

func wrapError(next ErrorRequestHandler) http.HandlerFunc {
	return func(w http.ResponseWriter, r *http.Request) {
		if err := next(w, r); err != nil {
			if errors.Is(err, service.ErrRepositoryNotFound) {
				NotFound(w)
			} else {
				InternalServerError(w, err)
			}
		}
	}
}

func (r *Router) run(next ErrorRequestHandler) http.HandlerFunc {
	return func(w http.ResponseWriter, re *http.Request) {
		req := wrapError(next)
		for _, r := range r.middlewares {
			req = r(req)
		}
		req(w, re)
	}
}

func (r *Router) HandleFunc(path string, handler ErrorRequestHandler) {
	r.router.HandleFunc(path, r.run(handler))
}

func NotFound(w http.ResponseWriter) {
	w.WriteHeader(http.StatusNotFound)
	templates.WritePageTemplate(w, &templates.ErrorPage{
		Message: "Not Found",
	})
}

func InternalServerError(w http.ResponseWriter, err error) {
	w.WriteHeader(http.StatusInternalServerError)
	templates.WritePageTemplate(w, &templates.ErrorPage{
		Message: fmt.Sprintf("Internal Server Error:\n%s", err.Error()),
	})
}