2017-11-20 00:10:04 -05: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-01-03 01:04:48 -05:00
|
|
|
package ui
|
2017-11-20 00:10:04 -05:00
|
|
|
|
|
|
|
import (
|
2018-01-03 01:04:48 -05:00
|
|
|
"github.com/miniflux/miniflux/http/handler"
|
2018-01-04 21:11:15 -05:00
|
|
|
"github.com/miniflux/miniflux/logger"
|
2017-12-13 00:48:13 -05:00
|
|
|
"github.com/miniflux/miniflux/model"
|
2017-11-20 00:10:04 -05:00
|
|
|
)
|
|
|
|
|
2017-11-21 20:40:29 -05:00
|
|
|
// ShowUnreadPage render the page with all unread entries.
|
2018-01-03 01:04:48 -05:00
|
|
|
func (c *Controller) ShowUnreadPage(ctx *handler.Context, request *handler.Request, response *handler.Response) {
|
2017-11-21 21:37:08 -05:00
|
|
|
user := ctx.LoggedUser()
|
2017-11-21 21:14:45 -05:00
|
|
|
offset := request.QueryIntegerParam("offset", 0)
|
2017-11-20 00:10:04 -05:00
|
|
|
|
2017-12-28 22:20:14 -05:00
|
|
|
builder := c.store.NewEntryQueryBuilder(user.ID)
|
2017-11-20 00:10:04 -05:00
|
|
|
builder.WithStatus(model.EntryStatusUnread)
|
2017-12-05 00:24:01 -05:00
|
|
|
countUnread, err := builder.CountEntries()
|
2017-11-20 00:10:04 -05:00
|
|
|
if err != nil {
|
2017-11-21 21:30:16 -05:00
|
|
|
response.HTML().ServerError(err)
|
2017-11-20 00:10:04 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-12-05 00:24:01 -05:00
|
|
|
if offset >= countUnread {
|
|
|
|
offset = 0
|
|
|
|
}
|
|
|
|
|
2017-12-28 22:20:14 -05:00
|
|
|
builder = c.store.NewEntryQueryBuilder(user.ID)
|
2017-12-05 00:24:01 -05: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 00:10:04 -05:00
|
|
|
if err != nil {
|
2017-11-21 21:30:16 -05:00
|
|
|
response.HTML().ServerError(err)
|
2017-11-20 00:10:04 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-21 21:30:16 -05:00
|
|
|
response.HTML().Render("unread", tplParams{
|
2017-11-20 00:10:04 -05:00
|
|
|
"user": user,
|
|
|
|
"countUnread": countUnread,
|
|
|
|
"entries": entries,
|
2017-11-21 21:37:08 -05:00
|
|
|
"pagination": c.getPagination(ctx.Route("unread"), countUnread, offset),
|
2017-11-20 00:10:04 -05:00
|
|
|
"menu": "unread",
|
2017-12-16 21:07:53 -05:00
|
|
|
"csrf": ctx.CSRF(),
|
2017-11-20 00:10:04 -05:00
|
|
|
})
|
|
|
|
}
|
2018-01-04 21:11:15 -05: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"))
|
|
|
|
}
|