miniflux-v2/ui/unread.go

60 lines
1.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.
package ui
2017-11-20 06:10:04 +01:00
import (
"github.com/miniflux/miniflux/http/handler"
2018-01-05 03:11:15 +01:00
"github.com/miniflux/miniflux/logger"
2017-12-13 06:48:13 +01:00
"github.com/miniflux/miniflux/model"
2017-11-20 06:10:04 +01:00
)
// ShowUnreadPage render the page with all unread entries.
func (c *Controller) ShowUnreadPage(ctx *handler.Context, request *handler.Request, response *handler.Response) {
2017-11-22 03:37:08 +01:00
user := ctx.LoggedUser()
2017-11-22 03:14:45 +01:00
offset := request.QueryIntegerParam("offset", 0)
2017-11-20 06:10:04 +01:00
2017-12-29 04:20:14 +01:00
builder := c.store.NewEntryQueryBuilder(user.ID)
2017-11-20 06:10:04 +01:00
builder.WithStatus(model.EntryStatusUnread)
countUnread, err := builder.CountEntries()
2017-11-20 06:10:04 +01:00
if err != nil {
2017-11-22 03:30:16 +01:00
response.HTML().ServerError(err)
2017-11-20 06:10:04 +01:00
return
}
if offset >= countUnread {
offset = 0
}
2017-12-29 04:20:14 +01:00
builder = c.store.NewEntryQueryBuilder(user.ID)
builder.WithStatus(model.EntryStatusUnread)
builder.WithOrder(model.DefaultSortingOrder)
builder.WithDirection(user.EntryDirection)
builder.WithOffset(offset)
builder.WithLimit(nbItemsPerPage)
entries, err := builder.GetEntries()
2017-11-20 06:10:04 +01:00
if err != nil {
2017-11-22 03:30:16 +01:00
response.HTML().ServerError(err)
2017-11-20 06:10:04 +01:00
return
}
2017-11-22 03:30:16 +01:00
response.HTML().Render("unread", tplParams{
2017-11-20 06:10:04 +01:00
"user": user,
"countUnread": countUnread,
"entries": entries,
2017-11-22 03:37:08 +01:00
"pagination": c.getPagination(ctx.Route("unread"), countUnread, offset),
2017-11-20 06:10:04 +01:00
"menu": "unread",
2017-12-17 03:07:53 +01:00
"csrf": ctx.CSRF(),
2017-11-20 06:10:04 +01:00
})
}
2018-01-05 03:11:15 +01:00
// MarkAllAsRead marks all unread entries as read.
func (c *Controller) MarkAllAsRead(ctx *handler.Context, request *handler.Request, response *handler.Response) {
if err := c.store.MarkAllAsRead(ctx.UserID()); err != nil {
logger.Error("[MarkAllAsRead] %v", err)
}
response.Redirect(ctx.Route("unread"))
}