-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler_feed_create.go
61 lines (53 loc) · 1.45 KB
/
handler_feed_create.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
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/google/uuid"
"github.com/jscmurph/blog_aggregator/internal/database"
)
func (cfg *apiConfig) handlerCreateFeed(w http.ResponseWriter, r *http.Request, user database.User) {
type parameters struct {
Name string `json:"name"`
Url string `json:"url"`
}
decoder := json.NewDecoder(r.Body)
params := parameters{}
err := decoder.Decode(¶ms)
if err != nil {
respondWithError(w, http.StatusInternalServerError, "Couldn't decode parameters for handlerCreateFeed")
return
}
feed, err := cfg.DB.CreateFeed(r.Context(), database.CreateFeedParams{
ID: uuid.New(),
CreatedAt: time.Now().UTC(),
UpdatedAt: time.Now().UTC(),
Name: user.Name,
Url: params.Url,
UserID: user.ID,
})
if err != nil {
respondWithError(w, http.StatusInternalServerError, "Could not create feed")
fmt.Println(err)
return
}
feedFollow, err := cfg.DB.CreateFeedFollow(r.Context(), database.CreateFeedFollowParams{
ID: uuid.New(),
CreatedAt: time.Now().UTC(),
UpdatedAt: time.Now().UTC(),
UserID: user.ID,
FeedID: feed.ID,
})
if err != nil {
respondWithError(w, http.StatusInternalServerError, "Was unable to follow feed as requested")
return
}
respondWithJSON(w, http.StatusCreated, struct {
feed RssFeed
feedFollow RssFeedFollow
}{
feed: databaseFeedToFeed(feed),
feedFollow: databaseFeedFollowToFeedFollow(feedFollow),
})
}