2017-11-20 00:10:04 -05:00
|
|
|
// 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.
|
|
|
|
|
2018-01-03 01:04:48 -05:00
|
|
|
package ui
|
2017-11-20 00:10:04 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2017-11-28 00:30:04 -05:00
|
|
|
|
2017-12-13 00:48:13 -05:00
|
|
|
"github.com/miniflux/miniflux/model"
|
2017-11-20 00:10:04 -05:00
|
|
|
)
|
|
|
|
|
2018-04-29 19:35:04 -04:00
|
|
|
func decodeEntryStatusPayload(r io.ReadCloser) (entryIDs []int64, status string, err error) {
|
2017-11-20 00:10:04 -05:00
|
|
|
type payload struct {
|
|
|
|
EntryIDs []int64 `json:"entry_ids"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|
|
|
|
|
|
|
|
var p payload
|
2018-04-29 19:35:04 -04:00
|
|
|
decoder := json.NewDecoder(r)
|
|
|
|
defer r.Close()
|
2017-11-20 00:10:04 -05:00
|
|
|
if err = decoder.Decode(&p); err != nil {
|
|
|
|
return nil, "", fmt.Errorf("invalid JSON payload: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := model.ValidateEntryStatus(p.Status); err != nil {
|
|
|
|
return nil, "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return p.EntryIDs, p.Status, nil
|
|
|
|
}
|