2017-11-20 06:10:04 +01: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-08-25 06:51:50 +02:00
|
|
|
package api // import "miniflux.app/api"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
2021-01-04 22:49:28 +01:00
|
|
|
json_parser "encoding/json"
|
2018-04-30 01:35:04 +02:00
|
|
|
"net/http"
|
2020-11-25 20:46:05 +01:00
|
|
|
"time"
|
2017-11-26 01:53:51 +01:00
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/http/request"
|
|
|
|
"miniflux.app/http/response/json"
|
2021-01-04 22:49:28 +01:00
|
|
|
"miniflux.app/model"
|
2021-01-03 01:33:41 +01:00
|
|
|
feedHandler "miniflux.app/reader/handler"
|
2021-01-04 22:49:28 +01:00
|
|
|
"miniflux.app/validator"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
func (h *handler) createFeed(w http.ResponseWriter, r *http.Request) {
|
2018-09-03 23:26:40 +02:00
|
|
|
userID := request.UserID(r)
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
var feedCreationRequest model.FeedCreationRequest
|
|
|
|
if err := json_parser.NewDecoder(r.Body).Decode(&feedCreationRequest); err != nil {
|
|
|
|
json.BadRequest(w, r, err)
|
2017-12-25 03:04:34 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
if validationErr := validator.ValidateFeedCreation(h.store, userID, &feedCreationRequest); validationErr != nil {
|
|
|
|
json.BadRequest(w, r, validationErr.Error())
|
2017-12-25 03:04:34 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
feed, err := feedHandler.CreateFeed(h.store, userID, &feedCreationRequest)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.ServerError(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-14 05:31:19 +01:00
|
|
|
json.Created(w, r, &feedCreationResponse{FeedID: feed.ID})
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
func (h *handler) refreshFeed(w http.ResponseWriter, r *http.Request) {
|
2018-09-24 06:02:26 +02:00
|
|
|
feedID := request.RouteInt64Param(r, "feedID")
|
2018-09-03 23:26:40 +02:00
|
|
|
userID := request.UserID(r)
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
if !h.store.FeedExists(userID, feedID) {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NotFound(w, r)
|
2017-12-25 03:04:34 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-03 01:33:41 +01:00
|
|
|
err := feedHandler.RefreshFeed(h.store, userID, feedID)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.ServerError(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NoContent(w, r)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2020-02-26 22:32:18 +01:00
|
|
|
func (h *handler) refreshAllFeeds(w http.ResponseWriter, r *http.Request) {
|
|
|
|
userID := request.UserID(r)
|
|
|
|
jobs, err := h.store.NewUserBatch(userID, h.store.CountFeeds(userID))
|
|
|
|
if err != nil {
|
|
|
|
json.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
h.pool.Push(jobs)
|
|
|
|
}()
|
|
|
|
|
|
|
|
json.NoContent(w, r)
|
|
|
|
}
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
func (h *handler) updateFeed(w http.ResponseWriter, r *http.Request) {
|
2021-01-04 22:49:28 +01:00
|
|
|
var feedModificationRequest model.FeedModificationRequest
|
|
|
|
if err := json_parser.NewDecoder(r.Body).Decode(&feedModificationRequest); err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.BadRequest(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-03 23:26:40 +02:00
|
|
|
userID := request.UserID(r)
|
2021-01-04 22:49:28 +01:00
|
|
|
feedID := request.RouteInt64Param(r, "feedID")
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
originalFeed, err := h.store.FeedByID(userID, feedID)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NotFound(w, r)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if originalFeed == nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NotFound(w, r)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
if validationErr := validator.ValidateFeedModification(h.store, userID, &feedModificationRequest); validationErr != nil {
|
|
|
|
json.BadRequest(w, r, validationErr.Error())
|
2018-06-24 01:16:54 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
feedModificationRequest.Patch(originalFeed)
|
2018-11-11 19:22:47 +01:00
|
|
|
if err := h.store.UpdateFeed(originalFeed); err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.ServerError(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
originalFeed, err = h.store.FeedByID(userID, feedID)
|
2017-12-25 03:04:34 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.ServerError(w, r, err)
|
2017-12-25 03:04:34 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
json.Created(w, r, originalFeed)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2020-11-25 20:46:05 +01:00
|
|
|
func (h *handler) markFeedAsRead(w http.ResponseWriter, r *http.Request) {
|
|
|
|
feedID := request.RouteInt64Param(r, "feedID")
|
|
|
|
userID := request.UserID(r)
|
|
|
|
|
|
|
|
feed, err := h.store.FeedByID(userID, feedID)
|
|
|
|
if err != nil {
|
|
|
|
json.NotFound(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if feed == nil {
|
|
|
|
json.NotFound(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := h.store.MarkFeedAsRead(userID, feedID, time.Now()); err != nil {
|
|
|
|
json.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
json.NoContent(w, r)
|
|
|
|
}
|
|
|
|
|
2021-01-19 04:44:02 +01:00
|
|
|
func (h *handler) getCategoryFeeds(w http.ResponseWriter, r *http.Request) {
|
|
|
|
userID := request.UserID(r)
|
|
|
|
categoryID := request.RouteInt64Param(r, "categoryID")
|
|
|
|
|
|
|
|
category, err := h.store.Category(userID, categoryID)
|
|
|
|
if err != nil {
|
|
|
|
json.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if category == nil {
|
|
|
|
json.NotFound(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
feeds, err := h.store.FeedsByCategoryWithCounters(userID, categoryID)
|
|
|
|
if err != nil {
|
|
|
|
json.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
json.OK(w, r, feeds)
|
|
|
|
}
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
func (h *handler) getFeeds(w http.ResponseWriter, r *http.Request) {
|
|
|
|
feeds, err := h.store.Feeds(request.UserID(r))
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.ServerError(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-20 04:27:05 +02:00
|
|
|
json.OK(w, r, feeds)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
func (h *handler) getFeed(w http.ResponseWriter, r *http.Request) {
|
2018-09-24 06:02:26 +02:00
|
|
|
feedID := request.RouteInt64Param(r, "feedID")
|
2018-11-11 19:22:47 +01:00
|
|
|
feed, err := h.store.FeedByID(request.UserID(r), feedID)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.ServerError(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if feed == nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NotFound(w, r)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-20 04:27:05 +02:00
|
|
|
json.OK(w, r, feed)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
func (h *handler) removeFeed(w http.ResponseWriter, r *http.Request) {
|
2018-09-24 06:02:26 +02:00
|
|
|
feedID := request.RouteInt64Param(r, "feedID")
|
2018-09-03 23:26:40 +02:00
|
|
|
userID := request.UserID(r)
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
if !h.store.FeedExists(userID, feedID) {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NotFound(w, r)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 19:22:47 +01:00
|
|
|
if err := h.store.RemoveFeed(userID, feedID); err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.ServerError(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NoContent(w, r)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|