-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmux.go
73 lines (64 loc) · 2 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
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
package main
import (
"context"
"go_todo_app/auth"
"go_todo_app/service"
"net/http"
"github.com/go-chi/chi/v5"
"github.com/go-playground/validator"
"go_todo_app/clock"
"go_todo_app/config"
"go_todo_app/handler"
"go_todo_app/store"
)
// 파라미터와 리턴값 둘다 변경
func NewMux(ctx context.Context, cfg *config.Config) (http.Handler, func(), error) {
mux := chi.NewRouter() // 새로운 라우터 인스턴스 생성
// /health 경로에 대한 핸들러를 추가하여 애플리케이션 상태를 확인
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"}`)) // JSON 형식의 상태 응답을 반환
})
v := validator.New()
db, cleanup, err := store.New(ctx, cfg) // 데이터베이스 연결을 위한 New 함수 호출
if err != nil {
return nil, cleanup, err
}
clocker := clock.RealClocker{}
r := store.Repository{Clocker: clock.RealClocker{}}
rcli, err := store.NewKVS(ctx, cfg) // 키-값 저장소 연결을 위한 NewKVS 함수 호출
if err != nil {
return nil, cleanup, err
}
jwter, err := auth.NewJWTer(rcli, clocker) // JWTer 인스턴스 생성
if err != nil {
return nil, cleanup, err
}
l := &handler.Login{
Service: &service.Login{
DB: db,
Repo: &r,
TokenGenerator: jwter,
},
Validator: v,
}
mux.Post("/login", l.ServeHTTP)
// POST /tasks 요청을 처리하는 핸들러
at := &handler.AddTask{
Service: &service.AddTask{DB: db, Repo: &r},
Validator: v,
}
// GET /tasks 요청 처리하는 핸들러
lt := &handler.ListTask{
Service: &service.ListTask{DB: db, Repo: &r},
}
mux.Post("/tasks", at.ServeHTTP)
mux.Get("/tasks", lt.ServeHTTP)
ru := &handler.RegisterUser{
Service: &service.RegisterUser{DB: db, Repo: &r},
Validator: v,
}
// /register 경로에 대한 POST 요청을 RegisterUser 핸들러로 라우팅
mux.Post("/register", ru.ServeHTTP)
return mux, cleanup, nil
}