aboutsummaryrefslogtreecommitdiff
path: root/api/payload.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/payload.go')
-rw-r--r--api/payload.go101
1 files changed, 101 insertions, 0 deletions
diff --git a/api/payload.go b/api/payload.go
new file mode 100644
index 00000000..46c3b044
--- /dev/null
+++ b/api/payload.go
@@ -0,0 +1,101 @@
+// Copyright 2017 Frédéric Guillot. All rights reserved.
+// Use of this source code is governed by the Apache 2.0
+// license that can be found in the LICENSE file.
+
+package api
+
+import (
+ "encoding/json"
+ "fmt"
+ "io"
+
+ "github.com/miniflux/miniflux/model"
+)
+
+type feedIcon struct {
+ ID int64 `json:"id"`
+ MimeType string `json:"mime_type"`
+ Data string `json:"data"`
+}
+
+type entriesResponse struct {
+ Total int `json:"total"`
+ Entries model.Entries `json:"entries"`
+}
+
+func decodeUserPayload(data io.Reader) (*model.User, error) {
+ var user model.User
+
+ decoder := json.NewDecoder(data)
+ if err := decoder.Decode(&user); err != nil {
+ return nil, fmt.Errorf("Unable to decode user JSON object: %v", err)
+ }
+
+ return &user, nil
+}
+
+func decodeURLPayload(data io.Reader) (string, error) {
+ type payload struct {
+ URL string `json:"url"`
+ }
+
+ var p payload
+ decoder := json.NewDecoder(data)
+ if err := decoder.Decode(&p); err != nil {
+ return "", fmt.Errorf("invalid JSON payload: %v", err)
+ }
+
+ return p.URL, nil
+}
+
+func decodeEntryStatusPayload(data io.Reader) ([]int64, string, error) {
+ type payload struct {
+ EntryIDs []int64 `json:"entry_ids"`
+ Status string `json:"status"`
+ }
+
+ var p payload
+ decoder := json.NewDecoder(data)
+ if err := decoder.Decode(&p); err != nil {
+ return nil, "", fmt.Errorf("invalid JSON payload: %v", err)
+ }
+
+ return p.EntryIDs, p.Status, nil
+}
+
+func decodeFeedCreationPayload(data io.Reader) (string, int64, error) {
+ type payload struct {
+ FeedURL string `json:"feed_url"`
+ CategoryID int64 `json:"category_id"`
+ }
+
+ var p payload
+ decoder := json.NewDecoder(data)
+ if err := decoder.Decode(&p); err != nil {
+ return "", 0, fmt.Errorf("invalid JSON payload: %v", err)
+ }
+
+ return p.FeedURL, p.CategoryID, nil
+}
+
+func decodeFeedModificationPayload(data io.Reader) (*model.Feed, error) {
+ var feed model.Feed
+
+ decoder := json.NewDecoder(data)
+ if err := decoder.Decode(&feed); err != nil {
+ return nil, fmt.Errorf("Unable to decode feed JSON object: %v", err)
+ }
+
+ return &feed, nil
+}
+
+func decodeCategoryPayload(data io.Reader) (*model.Category, error) {
+ var category model.Category
+
+ decoder := json.NewDecoder(data)
+ if err := decoder.Decode(&category); err != nil {
+ return nil, fmt.Errorf("Unable to decode category JSON object: %v", err)
+ }
+
+ return &category, nil
+}