-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmux.go
39 lines (35 loc) · 1.02 KB
/
mux.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
package main
import (
"context"
"net/http"
"github.com/hiroto22/go-webapp/service"
"github.com/go-chi/chi/v5"
"github.com/go-playground/validator/v10"
"github.com/hiroto22/go-webapp/clock"
"github.com/hiroto22/go-webapp/config"
"github.com/hiroto22/go-webapp/handler"
"github.com/hiroto22/go-webapp/store"
)
func NewMux(ctx context.Context, cfg *config.Config) (http.Handler, func(), error) {
mux := chi.NewRouter()
mux.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json; charset=utf-8")
_, _ = w.Write([]byte(`{"status": "ok"}`))
})
v := validator.New()
db, cleanup, err := store.New(ctx, cfg)
if err != nil {
return nil, cleanup, err
}
r := store.Repository{Clocker: clock.RealClocker{}}
at := &handler.AddTask{
Service: &service.AddTask{DB: db, Repo: &r},
Validator: v,
}
mux.Post("/tasks", at.ServeHTTP)
lt := &handler.ListTask{
Service: &service.ListTask{DB: db, Repo: &r},
}
mux.Get("/tasks", lt.ServeHTTP)
return mux, cleanup, nil
}