catch the subreddit criteria

This commit is contained in:
Andre Medeiros 2021-10-13 10:44:47 -04:00
parent 0674ddf730
commit db3268b0d0

View file

@ -13,6 +13,7 @@ import (
type watcherCriteria struct { type watcherCriteria struct {
Author string Author string
Subreddit string
Upvotes int64 Upvotes int64
Keyword string Keyword string
Flair string Flair string
@ -35,12 +36,7 @@ func (a *api) createWatcherHandler(w http.ResponseWriter, r *http.Request) {
redditID := vars["redditID"] redditID := vars["redditID"]
cwr := &createWatcherRequest{ cwr := &createWatcherRequest{
Criteria: watcherCriteria{ Criteria: watcherCriteria{},
Upvotes: 0,
Keyword: "",
Flair: "",
Domain: "",
},
} }
if err := json.NewDecoder(r.Body).Decode(cwr); err != nil { if err := json.NewDecoder(r.Body).Decode(cwr); err != nil {
a.errorResponse(w, r, 500, err.Error()) a.errorResponse(w, r, 500, err.Error())
@ -80,6 +76,7 @@ func (a *api) createWatcherHandler(w http.ResponseWriter, r *http.Request) {
DeviceID: dev.ID, DeviceID: dev.ID,
AccountID: account.ID, AccountID: account.ID,
Author: strings.ToLower(cwr.Criteria.Author), Author: strings.ToLower(cwr.Criteria.Author),
Subreddit: strings.ToLower(cwr.Criteria.Subreddit),
Upvotes: cwr.Criteria.Upvotes, Upvotes: cwr.Criteria.Upvotes,
Keyword: strings.ToLower(cwr.Criteria.Keyword), Keyword: strings.ToLower(cwr.Criteria.Keyword),
Flair: strings.ToLower(cwr.Criteria.Flair), Flair: strings.ToLower(cwr.Criteria.Flair),