-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandlerFeedFollows.go
More file actions
70 lines (59 loc) · 1.85 KB
/
handlerFeedFollows.go
File metadata and controls
70 lines (59 loc) · 1.85 KB
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
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/go-chi/chi"
"github.com/google/uuid"
"github.com/szwtron/rss_aggregator/internal/db"
)
func (apiCfg *apiConfig)handlerCreateFeedFollow(w http.ResponseWriter, r *http.Request, user db.User) {
type parameters struct {
FeedID uuid.UUID `json:"feed_id"`
}
decoder := json.NewDecoder(r.Body)
params := ¶meters{}
err := decoder.Decode(params)
if err != nil {
respondWithError(w, http.StatusBadRequest, "Error parsing JSON")
return
}
feedFollow, err := apiCfg.DB.CreateFeedFollow(r.Context(), db.CreateFeedFollowParams{
ID: uuid.New(),
CreatedAt: time.Now(),
UpdatedAt: time.Now(),
UserID: user.ID,
FeedID: params.FeedID,
})
if err != nil {
respondWithError(w, http.StatusInternalServerError, fmt.Sprintf("Error creating feed follow: %v", err))
return
}
respondWithJSON(w, 201, dbFeedFollowtoFeedFollow(feedFollow))
}
func (apiCfg *apiConfig)handlerGetFeedFollow(w http.ResponseWriter, r *http.Request, user db.User) {
feedFollow, err := apiCfg.DB.GetFeedFollow(r.Context(), user.ID)
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Error getting feed follow: %v", err))
return
}
respondWithJSON(w, 201, dbFeedFollowstoFeedFollows(feedFollow))
}
func (apiCfg *apiConfig)handlerDeleteFeedFollow(w http.ResponseWriter, r *http.Request, user db.User) {
feedFollowIDStr := chi.URLParam(r, "feedFollowID")
feedFollowID, err := uuid.Parse(feedFollowIDStr)
if err != nil {
respondWithError(w, http.StatusBadRequest, fmt.Sprintf("Could not parse feed follow ID: %v", err))
return
}
err = apiCfg.DB.DeleteFeedFollow(r.Context(), db.DeleteFeedFollowParams{
ID: feedFollowID,
UserID: user.ID,
})
if err != nil {
respondWithError(w, http.StatusBadRequest, fmt.Sprintf("Could not delete feed follow: %v", err))
return
}
respondWithJSON(w, 200, nil)
}