2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
|
|
|
"miniflux.app/v2/internal/model"
|
|
|
|
"miniflux.app/v2/internal/storage"
|
|
|
|
"miniflux.app/v2/internal/ui/session"
|
|
|
|
"miniflux.app/v2/internal/ui/view"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) showReadEntryPage(w http.ResponseWriter, r *http.Request) {
|
|
|
|
user, err := h.store.UserByID(request.UserID(r))
|
2018-04-30 01:35:04 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-24 06:02:26 +02:00
|
|
|
entryID := request.RouteInt64Param(r, "entryID")
|
2018-11-11 20:28:29 +01:00
|
|
|
builder := h.store.NewEntryQueryBuilder(user.ID)
|
2018-04-30 01:35:04 +02:00
|
|
|
builder.WithEntryID(entryID)
|
|
|
|
builder.WithoutStatus(model.EntryStatusRemoved)
|
|
|
|
|
|
|
|
entry, err := builder.GetEntry()
|
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if entry == nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.NotFound(w, r)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-09-22 08:39:13 +02:00
|
|
|
entryPaginationBuilder := storage.NewEntryPaginationBuilder(h.store, user.ID, entry.ID, "changed_at", "desc")
|
2018-06-09 22:40:20 +02:00
|
|
|
entryPaginationBuilder.WithStatus(model.EntryStatusRead)
|
|
|
|
prevEntry, nextEntry, err := entryPaginationBuilder.Entries()
|
2018-04-30 01:35:04 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
nextEntryRoute := ""
|
|
|
|
if nextEntry != nil {
|
2018-11-11 20:28:29 +01:00
|
|
|
nextEntryRoute = route.Path(h.router, "readEntry", "entryID", nextEntry.ID)
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
prevEntryRoute := ""
|
|
|
|
if prevEntry != nil {
|
2018-11-11 20:28:29 +01:00
|
|
|
prevEntryRoute = route.Path(h.router, "readEntry", "entryID", prevEntry.ID)
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
|
|
|
view := view.New(h.tpl, r, sess)
|
2018-04-30 01:35:04 +02:00
|
|
|
view.Set("entry", entry)
|
|
|
|
view.Set("prevEntry", prevEntry)
|
|
|
|
view.Set("nextEntry", nextEntry)
|
|
|
|
view.Set("nextEntryRoute", nextEntryRoute)
|
|
|
|
view.Set("prevEntryRoute", prevEntryRoute)
|
|
|
|
view.Set("menu", "history")
|
|
|
|
view.Set("user", user)
|
2018-11-11 20:28:29 +01:00
|
|
|
view.Set("countUnread", h.store.CountUnreadEntries(user.ID))
|
2020-09-28 01:01:06 +02:00
|
|
|
view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
|
2018-11-11 20:28:29 +01:00
|
|
|
view.Set("hasSaveEntry", h.store.HasSaveEntry(user.ID))
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2018-07-07 05:39:28 +02:00
|
|
|
html.OK(w, r, view.Render("entry"))
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|