-
Notifications
You must be signed in to change notification settings - Fork 0
/
mux.go
44 lines (41 loc) · 1.29 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
40
41
42
43
44
package main
import (
"context"
"net/http"
"github.com/go-chi/chi/v5"
"github.com/go-playground/validator/v10"
"github.com/kawasaki124529/go_todo_app/clock"
"github.com/kawasaki124529/go_todo_app/config"
"github.com/kawasaki124529/go_todo_app/handler"
"github.com/kawasaki124529/go_todo_app/service"
"github.com/kawasaki124529/go_todo_app/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)
ru := &handler.RegisterUser{
Service: &service.RegisterUser{DB: db, Repo: &r},
Validator: v,
}
mux.Post("/register", ru.ServeHTTP)
return mux, cleanup, nil
}