-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler_feed.go
More file actions
51 lines (41 loc) · 1.06 KB
/
handler_feed.go
File metadata and controls
51 lines (41 loc) · 1.06 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
package main
import (
"net/http"
"time"
"fmt"
"encoding/json"
db "github.com/eyop23/rssagg/internal/database"
"github.com/google/uuid"
)
func(config *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:=parameters{};
err:=decoder.Decode(¶ms)
if err != nil {
respondWithJSON(w,400,fmt.Sprintf("error parsing json %v",err))
return
}
feed,err:=config.DB.CreateFeed(r.Context(),db.CreateFeedParams{
ID:uuid.New(),
Name:params.Name,
CreatedAt:time.Now().UTC(),
UpdatedAt:time.Now().UTC(),
Url:params.Url,
UserID:user.ID,
})
if err != nil{
respondWithError(w,400,fmt.Sprintf("failed to create user %v",err))
}
respondWithJSON(w,201,feed)
}
func(config *apiConfig) handlerGetFeeds(w http.ResponseWriter,r *http.Request){
feeds,err:=config.DB.GetFeeds(r.Context())
if err != nil{
respondWithError(w,400,fmt.Sprintf("failed to load feeds %v",err))
}
respondWithJSON(w,201,feeds)
}