-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbooks.go
153 lines (138 loc) · 4.48 KB
/
books.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
package handlers
import (
"context"
"errors"
"net/http"
"github.com/danielgtaylor/huma/v2"
"github.com/enchant97/note-mark/backend/db"
"github.com/enchant97/note-mark/backend/middleware"
"github.com/enchant97/note-mark/backend/services"
"github.com/google/uuid"
)
func SetupBooksHandler(
api huma.API,
authProvider middleware.AuthDetailsProvider,
) {
booksHandler := BooksHandler{}
huma.Register(api, huma.Operation{
Method: http.MethodPost,
Path: "/api/books",
Middlewares: huma.Middlewares{authProvider.AuthRequiredMiddleware},
DefaultStatus: http.StatusCreated,
}, booksHandler.PostBook)
huma.Get(api, "/api/books/{bookID}", booksHandler.GetBookByID)
huma.Get(api, "/api/slug/{username}/books/{bookSlug}", booksHandler.GetBookBySlug)
huma.Register(api, huma.Operation{
Method: http.MethodPatch,
Path: "/api/books/{bookID}",
Middlewares: huma.Middlewares{authProvider.AuthRequiredMiddleware},
}, booksHandler.PatchBookByID)
huma.Register(api, huma.Operation{
Method: http.MethodDelete,
Path: "/api/books/{bookID}",
Middlewares: huma.Middlewares{authProvider.AuthRequiredMiddleware},
}, booksHandler.DeleteBookByID)
}
type PostBookInput struct {
Body db.CreateBook
}
type BookOutput struct {
Body db.Book
}
type GetBookByIDInput struct {
BookID uuid.UUID `path:"bookID" format:"uuid"`
}
type GetBookBySlugInput struct {
Username string `path:"username"`
BookSlug string `path:"bookSlug"`
Include string `query:"include" enum:"notes"`
}
type PatchBookByIDInput struct {
BookID uuid.UUID `path:"bookID" format:"uuid"`
Body db.UpdateBook
}
type DeleteBookByIDInput struct {
BookID uuid.UUID `path:"bookID" format:"uuid"`
}
type BooksHandler struct {
BooksService services.BooksService
AuthProvider middleware.AuthDetailsProvider
}
func (h BooksHandler) PostBook(ctx context.Context, input *PostBookInput) (*BookOutput, error) {
authDetails, _ := h.AuthProvider.TryGetAuthDetails(ctx)
userID := authDetails.GetAuthenticatedUser().UserID
if book, err := h.BooksService.CreateBook(userID, input.Body); err != nil {
if errors.Is(err, services.NotFoundError) {
return nil, huma.Error404NotFound("book does not exist or you do not have access")
} else if errors.Is(err, services.ConflictError) {
return nil, huma.Error409Conflict("book with that slug already exists")
} else {
return nil, err
}
} else {
return &BookOutput{
Body: book,
}, nil
}
}
func (h BooksHandler) GetBookByID(ctx context.Context, input *GetBookByIDInput) (*BookOutput, error) {
authDetails, _ := h.AuthProvider.TryGetAuthDetails(ctx)
optionalUserID := authDetails.GetOptionalUserID()
if book, err := h.BooksService.GetBookByID(optionalUserID, input.BookID); err != nil {
if errors.Is(err, services.NotFoundError) {
return nil, huma.Error404NotFound("book does not exist or you do not have access")
} else {
return nil, err
}
} else {
return &BookOutput{
Body: book,
}, nil
}
}
func (h BooksHandler) GetBookBySlug(ctx context.Context, input *GetBookBySlugInput) (*BookOutput, error) {
authDetails, _ := h.AuthProvider.TryGetAuthDetails(ctx)
optionalUserID := authDetails.GetOptionalUserID()
if book, err := h.BooksService.GetBookBySlug(
optionalUserID,
input.Username,
input.BookSlug,
input.Include == "notes",
); err != nil {
if errors.Is(err, services.NotFoundError) {
return nil, huma.Error404NotFound("book does not exist or you do not have access")
} else {
return nil, err
}
} else {
return &BookOutput{
Body: book,
}, nil
}
}
func (h BooksHandler) PatchBookByID(ctx context.Context, input *PatchBookByIDInput) (*struct{}, error) {
authDetails, _ := h.AuthProvider.TryGetAuthDetails(ctx)
userID := authDetails.GetAuthenticatedUser().UserID
if err := h.BooksService.UpdateBookByID(userID, input.BookID, input.Body); err != nil {
if errors.Is(err, services.NotFoundError) {
return nil, huma.Error404NotFound("book does not exist or you do not have access")
} else {
return nil, err
}
} else {
return nil, nil
}
}
func (h BooksHandler) DeleteBookByID(ctx context.Context, input *DeleteBookByIDInput) (*struct{}, error) {
authDetails, _ := h.AuthProvider.TryGetAuthDetails(ctx)
userID := authDetails.GetAuthenticatedUser().UserID
if err := h.BooksService.DeleteBookByID(userID, input.BookID); err != nil {
if errors.Is(err, services.NotFoundError) {
return nil, huma.Error404NotFound("book does not exist or you do not have access")
} else {
return nil, err
}
} else {
return nil, nil
}
}