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

62 lines
1.6 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 (
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 00:46:59 +01:00
// ShowHistoryPage renders the page with all read entries.
2017-11-20 06:10:04 +01:00
func (c *Controller) ShowHistoryPage(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
args, err := c.getCommonTemplateArgs(ctx)
if err != nil {
2017-11-22 03:30:16 +01:00
response.HTML().ServerError(err)
2017-11-20 06:10:04 +01:00
return
}
builder := c.store.GetEntryQueryBuilder(user.ID, user.Timezone)
builder.WithStatus(model.EntryStatusRead)
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
}
count, 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("history", args.Merge(tplParams{
2017-11-20 06:10:04 +01:00
"entries": entries,
"total": count,
2017-11-22 03:37:08 +01:00
"pagination": c.getPagination(ctx.Route("history"), count, offset),
2017-11-20 06:10:04 +01:00
"menu": "history",
}))
}
2017-11-22 00:46:59 +01:00
// FlushHistory changes all "read" items to "removed".
func (c *Controller) FlushHistory(ctx *core.Context, request *core.Request, response *core.Response) {
2017-11-22 03:37:08 +01:00
user := ctx.LoggedUser()
2017-11-22 00:46:59 +01:00
err := c.store.FlushHistory(user.ID)
if err != nil {
2017-11-22 03:30:16 +01:00
response.HTML().ServerError(err)
2017-11-22 00:46:59 +01:00
return
}
2017-11-22 03:37:08 +01:00
response.Redirect(ctx.Route("history"))
2017-11-22 00:46:59 +01:00
}