miniflux-v2/internal/ui/about.go

40 lines
1.2 KiB
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-20 06:10:04 +01:00
package ui // import "miniflux.app/v2/internal/ui"
2017-11-20 06:10:04 +01:00
import (
"net/http"
"runtime"
"miniflux.app/v2/internal/config"
"miniflux.app/v2/internal/http/request"
"miniflux.app/v2/internal/http/response/html"
"miniflux.app/v2/internal/ui/session"
"miniflux.app/v2/internal/ui/view"
"miniflux.app/v2/internal/version"
2017-11-20 06:10:04 +01:00
)
func (h *handler) showAboutPage(w http.ResponseWriter, r *http.Request) {
user, err := h.store.UserByID(request.UserID(r))
2017-11-20 06:10:04 +01:00
if err != nil {
2018-10-08 03:42:43 +02:00
html.ServerError(w, r, err)
2017-11-20 06:10:04 +01:00
return
}
sess := session.New(h.store, request.SessionID(r))
view := view.New(h.tpl, r, sess)
view.Set("version", version.Version)
2020-10-29 05:22:06 +01:00
view.Set("commit", version.Commit)
view.Set("build_date", version.BuildDate)
view.Set("menu", "settings")
view.Set("user", user)
view.Set("countUnread", h.store.CountUnreadEntries(user.ID))
2020-09-28 01:01:06 +02:00
view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
view.Set("globalConfigOptions", config.Opts.SortedOptions(true))
2021-02-16 16:37:24 +01:00
view.Set("postgres_version", h.store.DatabaseVersion())
view.Set("go_version", runtime.Version())
html.OK(w, r, view.Render("about"))
2017-11-20 06:10:04 +01:00
}