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