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"
|
|
|
|
)
|
|
|
|
|
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) {
|
|
|
|
user := ctx.GetLoggedUser()
|
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 {
|
|
|
|
response.Html().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
builder := c.store.GetEntryQueryBuilder(user.ID, user.Timezone)
|
|
|
|
builder.WithStatus(model.EntryStatusRead)
|
|
|
|
builder.WithOrder(model.DefaultSortingOrder)
|
|
|
|
builder.WithDirection(model.DefaultSortingDirection)
|
|
|
|
builder.WithOffset(offset)
|
|
|
|
builder.WithLimit(NbItemsPerPage)
|
|
|
|
|
|
|
|
entries, err := builder.GetEntries()
|
|
|
|
if err != nil {
|
|
|
|
response.Html().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
count, err := builder.CountEntries()
|
|
|
|
if err != nil {
|
|
|
|
response.Html().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
response.Html().Render("history", args.Merge(tplParams{
|
|
|
|
"entries": entries,
|
|
|
|
"total": count,
|
|
|
|
"pagination": c.getPagination(ctx.GetRoute("history"), count, offset),
|
|
|
|
"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) {
|
|
|
|
user := ctx.GetLoggedUser()
|
|
|
|
|
|
|
|
err := c.store.FlushHistory(user.ID)
|
|
|
|
if err != nil {
|
|
|
|
response.Html().ServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
response.Redirect(ctx.GetRoute("history"))
|
|
|
|
}
|