-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler_feed.go
55 lines (49 loc) · 1.4 KB
/
handler_feed.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
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/google/uuid"
"github.com/nguyenanhhao221/go-rss/internal/database"
)
func (apiCfg *apiConfig) handlerGetFeeds(w http.ResponseWriter, r *http.Request) {
feeds, error := apiCfg.DB.GetFeeds(r.Context())
if error != nil {
responseWithError(w, 400, fmt.Sprintf("Cannot get feeds: %v", error))
return
} else {
convertedFeeds := databaseFeedsToFeeds(feeds)
responseWithJSON(w, 200, convertedFeeds)
}
}
// handlerFeed a method and pass it to the pointer of the apiConfig struct.
// This way it have access to our database
func (apiCfg *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 {
responseWithError(w, 400, fmt.Sprintf("Error parsing JSON: %v", err))
return
}
feed, err := apiCfg.DB.CreateFeed(r.Context(), database.CreateFeedParams{
ID: uuid.New(),
CreateAt: time.Now().UTC(),
UpdatedAt: time.Now().UTC(),
Name: params.Name,
Url: params.Url,
UserID: user.ID,
})
if err != nil {
responseWithError(w, 400, fmt.Sprintf("Cannot create feed: %v", err))
return
} else {
convertedFeed := databaseFeedToFeed(feed)
responseWithJSON(w, 201, convertedFeed)
}
}