-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_feed_follows.go
100 lines (88 loc) · 3.36 KB
/
handler_feed_follows.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
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/go-chi/chi"
"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
// NOTE:: will have a middleware for authenticated users
for follow there will be a user to feed relationship
*/
func (apiCfg *apiConfig) handlerCreateFeedFollow(w http.ResponseWriter, r *http.Request, user database.User) {
// Accept the request body as JSON
type parameters struct{
FeedID uuid.UUID `json:"feed_id"`
}
// 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 to feed follow using the Go code generated by sqlc
feedFollow, err := apiCfg.DB.CreateFeedFollow(r.Context(), database.CreateFeedFollowParams{
ID: uuid.New(),
CreatedAt: time.Now().UTC(),
UpdatedAt: time.Now().UTC(),
UserID: user.ID,
FeedID: params.FeedID,
})
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't create feed follow: %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, databaseFeedFollowToFeedFollow(feedFollow))
}
/*
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:: will have a middleware for authenticated users
to get feed followed by an authenticated user
*/
func (apiCfg *apiConfig) handlerGetFeedFollows(w http.ResponseWriter, r *http.Request, user database.User) {
// Access the DB to create the user to feed follow using the Go code generated by sqlc
feedFollows, err := apiCfg.DB.GetFeedFollows(r.Context(), user.ID)
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't retrieve feed follow: %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, 200, databaseFeedsFollowToFeedFollows(feedFollows))
}
/*
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:: will have a middleware for authenticated users
to unfollow feed followed by an authenticated user
*/
func (apiCfg *apiConfig) handlerDeleteFeedFollow(w http.ResponseWriter, r *http.Request, user database.User) {
feedFollowIDStr := chi.URLParam(r,"feedFollowID") // Get key from URL Path Variable
feedFollowID, err := uuid.Parse(feedFollowIDStr) // Parse to a UUID
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't parse feed follow id: %v",err))
return
}
err = apiCfg.DB.DeleteFeedFollows(r.Context(), database.DeleteFeedFollowsParams{
ID: feedFollowID,
UserID: user.ID,
})
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't delete feed follow id: %v",err))
return
}
respondWithJSON(w, 200, struct{}{})
}