2018-04-29 16:35:04 -07:00
|
|
|
// Copyright 2018 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-09-03 14:26:40 -07:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-29 16:35:04 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-03 14:26:40 -07:00
|
|
|
"miniflux.app/http/request"
|
2018-08-24 21:51:50 -07:00
|
|
|
"miniflux.app/http/response/json"
|
2018-04-29 16:35:04 -07:00
|
|
|
)
|
|
|
|
|
2018-11-11 11:28:29 -08:00
|
|
|
func (h *handler) updateEntriesStatus(w http.ResponseWriter, r *http.Request) {
|
2018-04-29 16:35:04 -07:00
|
|
|
entryIDs, status, err := decodeEntryStatusPayload(r.Body)
|
|
|
|
if err != nil {
|
2018-10-07 18:42:43 -07:00
|
|
|
json.BadRequest(w, r, err)
|
2018-04-29 16:35:04 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(entryIDs) == 0 {
|
2018-10-07 18:42:43 -07:00
|
|
|
json.BadRequest(w, r, errors.New("The list of entry IDs is empty"))
|
2018-04-29 16:35:04 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 11:28:29 -08:00
|
|
|
err = h.store.SetEntriesStatus(request.UserID(r), entryIDs, status)
|
2018-04-29 16:35:04 -07:00
|
|
|
if err != nil {
|
2018-10-07 18:42:43 -07:00
|
|
|
json.ServerError(w, r, err)
|
2018-04-29 16:35:04 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-19 19:27:05 -07:00
|
|
|
json.OK(w, r, "OK")
|
2018-04-29 16:35:04 -07:00
|
|
|
}
|