-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandlerFeed.go
More file actions
52 lines (43 loc) · 1.17 KB
/
handlerFeed.go
File metadata and controls
52 lines (43 loc) · 1.17 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
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/google/uuid"
"github.com/szwtron/rss_aggregator/internal/db"
)
func (apiCfg *apiConfig)handlerCreateFeed(w http.ResponseWriter, r *http.Request, user db.User) {
type parameters struct {
Name string `json:name`
URL string `json:url`
}
decoder := json.NewDecoder(r.Body)
params := ¶meters{}
err := decoder.Decode(params)
if err != nil {
respondWithError(w, http.StatusBadRequest, "Error parsing JSON")
return
}
feed, err := apiCfg.DB.CreateFeed(r.Context(), db.CreateFeedParams{
ID: uuid.New(),
Name: params.Name,
Url: params.URL,
UserID: user.ID,
CreatedAt: time.Now(),
UpdatedAt: time.Now(),
})
if err != nil {
respondWithError(w, http.StatusInternalServerError, fmt.Sprintf("Error creating feed: %v", err))
return
}
respondWithJSON(w, 201, dbFeedtoFeed(feed))
}
func (apiCfg *apiConfig)handlerGetFeeds(w http.ResponseWriter, r *http.Request) {
feeds, err := apiCfg.DB.SelectAllFeeds(r.Context())
if err != nil {
respondWithError(w, http.StatusInternalServerError, fmt.Sprintf("Can not get feeds: %v", err))
return
}
respondWithJSON(w, 200, dbFeedstoFeeds(feeds))
}