miniflux-v2/api/entry.go

230 lines
5.7 KiB
Go
Raw Normal View History

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 (
"errors"
"net/http"
"time"
2017-11-25 07:29:20 +01:00
2018-08-25 06:51:50 +02:00
"miniflux.app/http/request"
"miniflux.app/http/response/json"
"miniflux.app/model"
"miniflux.app/storage"
2017-11-20 06:10:04 +01:00
)
2017-12-22 20:33:01 +01:00
// GetFeedEntry is the API handler to get a single feed entry.
func (c *Controller) GetFeedEntry(w http.ResponseWriter, r *http.Request) {
feedID := request.RouteInt64Param(r, "feedID")
entryID := request.RouteInt64Param(r, "entryID")
2017-11-20 06:10:04 +01:00
2018-09-03 23:26:40 +02:00
builder := c.store.NewEntryQueryBuilder(request.UserID(r))
2017-11-20 06:10:04 +01:00
builder.WithFeedID(feedID)
builder.WithEntryID(entryID)
entry, err := builder.GetEntry()
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 entry == nil {
2018-10-08 03:42:43 +02:00
json.NotFound(w, r)
2017-11-20 06:10:04 +01:00
return
}
json.OK(w, r, entry)
2017-11-20 06:10:04 +01:00
}
2017-12-22 20:33:01 +01:00
// GetEntry is the API handler to get a single entry.
func (c *Controller) GetEntry(w http.ResponseWriter, r *http.Request) {
entryID := request.RouteInt64Param(r, "entryID")
2018-09-03 23:26:40 +02:00
builder := c.store.NewEntryQueryBuilder(request.UserID(r))
2017-12-22 20:33:01 +01:00
builder.WithEntryID(entryID)
entry, err := builder.GetEntry()
if err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-12-22 20:33:01 +01:00
return
}
if entry == nil {
2018-10-08 03:42:43 +02:00
json.NotFound(w, r)
2017-12-22 20:33:01 +01:00
return
}
json.OK(w, r, entry)
2017-12-22 20:33:01 +01:00
}
2017-11-20 06:10:04 +01:00
// GetFeedEntries is the API handler to get all feed entries.
func (c *Controller) GetFeedEntries(w http.ResponseWriter, r *http.Request) {
feedID := request.RouteInt64Param(r, "feedID")
2017-11-20 06:10:04 +01:00
status := request.QueryStringParam(r, "status", "")
2017-11-20 06:10:04 +01:00
if status != "" {
if err := model.ValidateEntryStatus(status); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
}
order := request.QueryStringParam(r, "order", model.DefaultSortingOrder)
2017-11-20 06:10:04 +01:00
if err := model.ValidateEntryOrder(order); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
direction := request.QueryStringParam(r, "direction", model.DefaultSortingDirection)
2017-11-20 06:10:04 +01:00
if err := model.ValidateDirection(direction); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
limit := request.QueryIntParam(r, "limit", 100)
offset := request.QueryIntParam(r, "offset", 0)
2017-11-27 00:07:59 +01:00
if err := model.ValidateRange(offset, limit); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-27 00:07:59 +01:00
return
}
2017-11-20 06:10:04 +01:00
2018-09-03 23:26:40 +02:00
builder := c.store.NewEntryQueryBuilder(request.UserID(r))
2017-11-20 06:10:04 +01:00
builder.WithFeedID(feedID)
builder.WithStatus(status)
2017-11-27 00:07:59 +01:00
builder.WithOrder(order)
builder.WithDirection(direction)
builder.WithOffset(offset)
builder.WithLimit(limit)
configureFilters(builder, r)
2017-11-27 00:07:59 +01:00
entries, err := builder.GetEntries()
if err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-11-27 00:07:59 +01:00
return
}
count, err := builder.CountEntries()
if err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-11-27 00:07:59 +01:00
return
}
json.OK(w, r, &entriesResponse{Total: count, Entries: entries})
2017-11-27 00:07:59 +01:00
}
// GetEntries is the API handler to fetch entries.
func (c *Controller) GetEntries(w http.ResponseWriter, r *http.Request) {
status := request.QueryStringParam(r, "status", "")
2017-11-27 00:07:59 +01:00
if status != "" {
if err := model.ValidateEntryStatus(status); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-27 00:07:59 +01:00
return
}
}
order := request.QueryStringParam(r, "order", model.DefaultSortingOrder)
2017-11-27 00:07:59 +01:00
if err := model.ValidateEntryOrder(order); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-27 00:07:59 +01:00
return
}
direction := request.QueryStringParam(r, "direction", model.DefaultSortingDirection)
2017-11-27 00:07:59 +01:00
if err := model.ValidateDirection(direction); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-27 00:07:59 +01:00
return
}
limit := request.QueryIntParam(r, "limit", 100)
offset := request.QueryIntParam(r, "offset", 0)
2017-11-27 00:07:59 +01:00
if err := model.ValidateRange(offset, limit); err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w, r, err)
2017-11-27 00:07:59 +01:00
return
}
2018-09-03 23:26:40 +02:00
builder := c.store.NewEntryQueryBuilder(request.UserID(r))
2017-11-27 00:07:59 +01:00
builder.WithStatus(status)
builder.WithOrder(order)
builder.WithDirection(direction)
2017-11-20 06:10:04 +01:00
builder.WithOffset(offset)
builder.WithLimit(limit)
configureFilters(builder, r)
2017-11-20 06:10:04 +01:00
entries, err := builder.GetEntries()
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
}
count, err := builder.CountEntries()
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
}
json.OK(w, r, &entriesResponse{Total: count, Entries: entries})
2017-11-20 06:10:04 +01:00
}
2017-11-25 07:29:20 +01:00
// SetEntryStatus is the API handler to change the status of entries.
func (c *Controller) SetEntryStatus(w http.ResponseWriter, r *http.Request) {
entryIDs, status, err := decodeEntryStatusPayload(r.Body)
2017-11-20 06:10:04 +01:00
if err != nil {
2018-10-08 03:42:43 +02:00
json.BadRequest(w , r, errors.New("Invalid JSON payload"))
2017-11-20 06:10:04 +01:00
return
}
if err := model.ValidateEntryStatus(status); 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
if err := c.store.SetEntriesStatus(request.UserID(r), entryIDs, status); 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
}
2017-12-22 20:33:01 +01:00
// ToggleBookmark is the API handler to toggle bookmark status.
func (c *Controller) ToggleBookmark(w http.ResponseWriter, r *http.Request) {
entryID := request.RouteInt64Param(r, "entryID")
2018-09-03 23:26:40 +02:00
if err := c.store.ToggleBookmark(request.UserID(r), entryID); err != nil {
2018-10-08 03:42:43 +02:00
json.ServerError(w, r, err)
2017-12-22 20:33:01 +01:00
return
}
2018-10-08 03:42:43 +02:00
json.NoContent(w, r)
2017-12-22 20:33:01 +01:00
}
func configureFilters(builder *storage.EntryQueryBuilder, r *http.Request) {
beforeEntryID := request.QueryInt64Param(r, "before_entry_id", 0)
if beforeEntryID != 0 {
builder.BeforeEntryID(beforeEntryID)
}
afterEntryID := request.QueryInt64Param(r, "after_entry_id", 0)
if afterEntryID != 0 {
builder.AfterEntryID(afterEntryID)
}
beforeTimestamp := request.QueryInt64Param(r, "before", 0)
if beforeTimestamp != 0 {
builder.BeforeDate(time.Unix(beforeTimestamp, 0))
}
afterTimestamp := request.QueryInt64Param(r, "after", 0)
if afterTimestamp != 0 {
builder.AfterDate(time.Unix(afterTimestamp, 0))
}
if request.HasQueryParam(r, "starred") {
builder.WithStarred()
}
searchQuery := request.QueryStringParam(r, "search", "")
if searchQuery != "" {
builder.WithSearchQuery(searchQuery)
}
}