mirror of
https://github.com/miniflux/v2.git
synced 2025-07-02 16:38:37 +00:00
Avoid duplication between get feed entries and get entries API endpoints
This commit is contained in:
parent
debbf5a5b0
commit
55fad7ea27
2 changed files with 13 additions and 51 deletions
62
api/entry.go
62
api/entry.go
|
@ -58,59 +58,14 @@ func (h *handler) getEntry(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
func (h *handler) getFeedEntries(w http.ResponseWriter, r *http.Request) {
|
func (h *handler) getFeedEntries(w http.ResponseWriter, r *http.Request) {
|
||||||
feedID := request.RouteInt64Param(r, "feedID")
|
feedID := request.RouteInt64Param(r, "feedID")
|
||||||
|
h.findEntries(w, r, feedID)
|
||||||
status := request.QueryStringParam(r, "status", "")
|
|
||||||
if status != "" {
|
|
||||||
if err := model.ValidateEntryStatus(status); err != nil {
|
|
||||||
json.BadRequest(w, r, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
order := request.QueryStringParam(r, "order", model.DefaultSortingOrder)
|
|
||||||
if err := model.ValidateEntryOrder(order); err != nil {
|
|
||||||
json.BadRequest(w, r, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
direction := request.QueryStringParam(r, "direction", model.DefaultSortingDirection)
|
|
||||||
if err := model.ValidateDirection(direction); err != nil {
|
|
||||||
json.BadRequest(w, r, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
limit := request.QueryIntParam(r, "limit", 100)
|
|
||||||
offset := request.QueryIntParam(r, "offset", 0)
|
|
||||||
if err := model.ValidateRange(offset, limit); err != nil {
|
|
||||||
json.BadRequest(w, r, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
builder := h.store.NewEntryQueryBuilder(request.UserID(r))
|
|
||||||
builder.WithFeedID(feedID)
|
|
||||||
builder.WithStatus(status)
|
|
||||||
builder.WithOrder(order)
|
|
||||||
builder.WithDirection(direction)
|
|
||||||
builder.WithOffset(offset)
|
|
||||||
builder.WithLimit(limit)
|
|
||||||
configureFilters(builder, r)
|
|
||||||
|
|
||||||
entries, err := builder.GetEntries()
|
|
||||||
if err != nil {
|
|
||||||
json.ServerError(w, r, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
count, err := builder.CountEntries()
|
|
||||||
if err != nil {
|
|
||||||
json.ServerError(w, r, err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
json.OK(w, r, &entriesResponse{Total: count, Entries: entries})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *handler) getEntries(w http.ResponseWriter, r *http.Request) {
|
func (h *handler) getEntries(w http.ResponseWriter, r *http.Request) {
|
||||||
|
h.findEntries(w, r, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *handler) findEntries(w http.ResponseWriter, r *http.Request, feedID int64) {
|
||||||
statuses := request.QueryStringParamList(r, "status")
|
statuses := request.QueryStringParamList(r, "status")
|
||||||
for _, status := range statuses {
|
for _, status := range statuses {
|
||||||
if err := model.ValidateEntryStatus(status); err != nil {
|
if err := model.ValidateEntryStatus(status); err != nil {
|
||||||
|
@ -145,7 +100,14 @@ func (h *handler) getEntries(w http.ResponseWriter, r *http.Request) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
feedID = request.QueryInt64Param(r, "feed_id", feedID)
|
||||||
|
if feedID > 0 && !h.store.FeedExists(userID, feedID) {
|
||||||
|
json.BadRequest(w, r, errors.New("Invalid feed ID"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
builder := h.store.NewEntryQueryBuilder(userID)
|
builder := h.store.NewEntryQueryBuilder(userID)
|
||||||
|
builder.WithFeedID(feedID)
|
||||||
builder.WithCategoryID(categoryID)
|
builder.WithCategoryID(categoryID)
|
||||||
builder.WithStatuses(statuses)
|
builder.WithStatuses(statuses)
|
||||||
builder.WithOrder(order)
|
builder.WithOrder(order)
|
||||||
|
|
|
@ -96,7 +96,7 @@ func (e *EntryQueryBuilder) WithEntryID(entryID int64) *EntryQueryBuilder {
|
||||||
|
|
||||||
// WithFeedID filter by feed ID.
|
// WithFeedID filter by feed ID.
|
||||||
func (e *EntryQueryBuilder) WithFeedID(feedID int64) *EntryQueryBuilder {
|
func (e *EntryQueryBuilder) WithFeedID(feedID int64) *EntryQueryBuilder {
|
||||||
if feedID != 0 {
|
if feedID > 0 {
|
||||||
e.conditions = append(e.conditions, fmt.Sprintf("e.feed_id = $%d", len(e.args)+1))
|
e.conditions = append(e.conditions, fmt.Sprintf("e.feed_id = $%d", len(e.args)+1))
|
||||||
e.args = append(e.args, feedID)
|
e.args = append(e.args, feedID)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue