miniflux-v2/server/ui/controller/unread.go

45 lines
1.2 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 controller
import (
"github.com/miniflux/miniflux2/model"
"github.com/miniflux/miniflux2/server/core"
)
// ShowUnreadPage render the page with all unread entries.
2017-11-20 06:10:04 +01:00
func (c *Controller) ShowUnreadPage(ctx *core.Context, request *core.Request, response *core.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
builder := c.store.GetEntryQueryBuilder(user.ID, user.Timezone)
builder.WithStatus(model.EntryStatusUnread)
builder.WithOrder(model.DefaultSortingOrder)
2017-12-03 02:04:01 +01:00
builder.WithDirection(user.EntryDirection)
2017-11-20 06:10:04 +01:00
builder.WithOffset(offset)
2017-11-28 06:30:04 +01:00
builder.WithLimit(nbItemsPerPage)
2017-11-20 06:10:04 +01:00
entries, err := builder.GetEntries()
if err != nil {
2017-11-22 03:30:16 +01:00
response.HTML().ServerError(err)
2017-11-20 06:10:04 +01:00
return
}
countUnread, err := builder.CountEntries()
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-11-22 03:37:08 +01:00
"csrf": ctx.CsrfToken(),
2017-11-20 06:10:04 +01:00
})
}