-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers_feeds.go
50 lines (45 loc) · 1.05 KB
/
handlers_feeds.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
package main
import (
"encoding/json"
"log"
"net/http"
"rss/internal/database"
"time"
"github.com/google/uuid"
)
func (cfg *apiConfig) handlerPostFeed(w http.ResponseWriter, r *http.Request) {
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 {
log.Print(err)
respondWithError(w, 500, "Something went wrong!")
return
}
feed, err := cfg.DB.CreateFeed(r.Context(), database.CreateFeedParams{
ID: uuid.New(),
CreatedAt: time.Now().UTC(),
UpdatedAt: time.Now().UTC(),
Name: params.Name,
Url: params.URL,
})
if err != nil {
log.Print(err)
respondWithError(w, 500, "Something went wrong!")
return
}
respondWithJSON(w, 200, feed)
}
func (cfg *apiConfig) handlerGetFeeds(w http.ResponseWriter, r *http.Request) {
feeds, err := cfg.DB.GetFeeds(r.Context())
if err != nil {
log.Print(err)
respondWithError(w, 500, "Something went wrong!")
return
}
respondWithJSON(w, 200, feeds)
}