2018-04-29 19:35:04 -04: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 17:26:40 -04:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-29 19:35:04 -04:00
|
|
|
|
|
|
|
import (
|
2021-01-04 18:32:32 -05:00
|
|
|
json_parser "encoding/json"
|
2018-04-29 19:35:04 -04:00
|
|
|
"net/http"
|
|
|
|
|
2018-09-03 17:26:40 -04:00
|
|
|
"miniflux.app/http/request"
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/http/response/json"
|
2021-01-04 18:32:32 -05:00
|
|
|
"miniflux.app/model"
|
|
|
|
"miniflux.app/validator"
|
2018-04-29 19:35:04 -04:00
|
|
|
)
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
func (h *handler) updateEntriesStatus(w http.ResponseWriter, r *http.Request) {
|
2021-01-04 18:32:32 -05:00
|
|
|
var entriesStatusUpdateRequest model.EntriesStatusUpdateRequest
|
|
|
|
if err := json_parser.NewDecoder(r.Body).Decode(&entriesStatusUpdateRequest); err != nil {
|
2018-10-07 21:42:43 -04:00
|
|
|
json.BadRequest(w, r, err)
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 18:32:32 -05:00
|
|
|
if err := validator.ValidateEntriesStatusUpdateRequest(&entriesStatusUpdateRequest); err != nil {
|
|
|
|
json.BadRequest(w, r, err)
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 18:32:32 -05:00
|
|
|
if err := h.store.SetEntriesStatus(request.UserID(r), entriesStatusUpdateRequest.EntryIDs, entriesStatusUpdateRequest.Status); err != nil {
|
2018-10-07 21:42:43 -04:00
|
|
|
json.ServerError(w, r, err)
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-19 22:27:05 -04:00
|
|
|
json.OK(w, r, "OK")
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|