-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_user.go
95 lines (81 loc) · 3.02 KB
/
handler_user.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
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
// "github.com/SyedAanif/rss-feed-aggregator/internal/auth"
"github.com/SyedAanif/rss-feed-aggregator/internal/database"
"github.com/google/uuid"
)
/*
HTTP Handler to deal with operations related to DB in GO
// NOTE:: function signature can't change, so to get apiConfig here, we pass a pointer
*/
func (apiCfg *apiConfig) handlerCreateUser(w http.ResponseWriter, r *http.Request) {
// Accept the request body as JSON
type parameters struct{
Name string `json:"name"`
}
// Decode the request body
decoder := json.NewDecoder(r.Body)
params := parameters{} // create an empty struct
err := decoder.Decode(¶ms) // decode into parameters
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Error parsing JSON: %v", err))
return
}
// Access the DB to create the user using the Go code generated by sqlc
user, err := apiCfg.DB.CreateUser(r.Context(), database.CreateUserParams{
ID: uuid.New(),
CreatedAt: time.Now().UTC(),
UpdatedAt: time.Now().UTC(),
Name: params.Name,
})
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't create user: %v", err))
return
}
// NOTE:: Fields with capital starts are exported and can be marshaled to JSON,
// exactly as capital letters of functions
// so we can build custom DTO converter
respondWithJSON(w, 201, databaseUserToUser(user))
}
/*
HTTP Handler to deal with operations related to DB in GO
// NOTE:: function signature can't change, so to get apiConfig here, we pass a pointer
// NOTE:: we can pass in an authenticated user and then convert it to standard HTTP handler
*/
func (apiCfg *apiConfig) handlerGetUser(w http.ResponseWriter, r *http.Request, user database.User) {
// NOTE:: This code can be copied for every feeds operation because we need authenticated
// users existing in DB to create feeds. So we create a middle ware for abstraction and re-use
// apiKey, err := auth.GetAPIKey(r.Header)
// if err != nil {
// respondWithError(w, 403, fmt.Sprintf("Authorization Error: %v",err))
// return
// }
// // Context in GO has track of multiple routines running across. We can track, cancel etc for a context
// // using current context
// user, err := apiCfg.DB.GetUserByAPIKey(r.Context(), apiKey)
// if err != nil{
// respondWithError(w, 400, fmt.Sprintf("Couldn't get user: %v",err))
// return
// }
respondWithJSON(w, 200, databaseUserToUser(user))
}
/*
HTTP Handler to deal with operations related to DB in GO
// NOTE:: function signature can't change, so to get apiConfig here, we pass a pointer
// NOTE:: we can pass in an authenticated user and then convert it to standard HTTP handler
*/
func (apiCfg *apiConfig) handlerGetPostsForUser(w http.ResponseWriter, r *http.Request, user database.User) {
posts, err := apiCfg.DB.GetPostsForUser(r.Context(), database.GetPostsForUserParams{
UserID: user.ID,
Limit: 10,
})
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't retrieve posts: %v", err))
return
}
respondWithJSON(w, 200, databasePostsToPosts(posts))
}