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 (
|
2017-12-13 06:48:13 +01:00
|
|
|
"github.com/miniflux/miniflux/model"
|
|
|
|
"github.com/miniflux/miniflux/server/core"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-22 02:40:29 +01:00
|
|
|
// 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
|
|
|
|
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)
|
2017-12-05 06:24:01 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-12-05 06:24:01 +01:00
|
|
|
if offset >= countUnread {
|
|
|
|
offset = 0
|
|
|
|
}
|
|
|
|
|
2017-12-29 04:20:14 +01:00
|
|
|
builder = c.store.NewEntryQueryBuilder(user.ID)
|
2017-12-05 06:24:01 +01:00
|
|
|
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
|
|
|
})
|
|
|
|
}
|