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.
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
package ui // import "miniflux.app/ui"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
2018-04-30 01:35:04 +02:00
|
|
|
"net/http"
|
|
|
|
|
2020-12-30 04:43:37 +01:00
|
|
|
"miniflux.app/config"
|
2018-09-03 23:26:40 +02:00
|
|
|
"miniflux.app/http/request"
|
2020-09-28 01:01:06 +02:00
|
|
|
"miniflux.app/http/response/html"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/ui/session"
|
|
|
|
"miniflux.app/ui/view"
|
|
|
|
"miniflux.app/version"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +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
|
|
|
|
}
|
|
|
|
|
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("version", version.Version)
|
2020-10-29 05:22:06 +01:00
|
|
|
view.Set("commit", version.Commit)
|
2018-04-30 01:35:04 +02:00
|
|
|
view.Set("build_date", version.BuildDate)
|
|
|
|
view.Set("menu", "settings")
|
|
|
|
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))
|
2021-10-18 01:49:37 +02:00
|
|
|
view.Set("globalConfigOptions", config.Opts.SortedOptions(true))
|
2021-02-16 16:37:24 +01:00
|
|
|
view.Set("postgres_version", h.store.DatabaseVersion())
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2018-07-07 05:39:28 +02:00
|
|
|
html.OK(w, r, view.Render("about"))
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|