mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
9f38246fe2
Persistent summary time interval
99 lines
3.2 KiB
Go
99 lines
3.2 KiB
Go
package routes
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
conf "github.com/muety/wakapi/config"
|
|
"github.com/muety/wakapi/helpers"
|
|
"github.com/muety/wakapi/middlewares"
|
|
"github.com/muety/wakapi/models"
|
|
"github.com/muety/wakapi/models/view"
|
|
su "github.com/muety/wakapi/routes/utils"
|
|
"github.com/muety/wakapi/services"
|
|
"github.com/muety/wakapi/utils"
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
type SummaryHandler struct {
|
|
config *conf.Config
|
|
userSrvc services.IUserService
|
|
summarySrvc services.ISummaryService
|
|
}
|
|
|
|
func NewSummaryHandler(summaryService services.ISummaryService, userService services.IUserService) *SummaryHandler {
|
|
return &SummaryHandler{
|
|
summarySrvc: summaryService,
|
|
userSrvc: userService,
|
|
config: conf.Get(),
|
|
}
|
|
}
|
|
|
|
func (h *SummaryHandler) RegisterRoutes(router *mux.Router) {
|
|
r1 := router.PathPrefix("/summary").Subrouter()
|
|
r1.Use(middlewares.NewAuthenticateMiddleware(h.userSrvc).WithRedirectTarget(defaultErrorRedirectTarget()).Handler)
|
|
r1.Methods(http.MethodGet).HandlerFunc(h.GetIndex)
|
|
|
|
r2 := router.PathPrefix("/summary").Subrouter()
|
|
r2.Use(middlewares.NewAuthenticateMiddleware(h.userSrvc).WithRedirectTarget(defaultErrorRedirectTarget()).Handler)
|
|
r2.Methods(http.MethodGet).HandlerFunc(h.GetIndex)
|
|
}
|
|
|
|
func (h *SummaryHandler) GetIndex(w http.ResponseWriter, r *http.Request) {
|
|
if h.config.IsDev() {
|
|
loadTemplates()
|
|
}
|
|
|
|
rawQuery := r.URL.RawQuery
|
|
q := r.URL.Query()
|
|
if q.Get("interval") == "" && q.Get("from") == "" {
|
|
// If the PersistentIntervalKey cookie is set, redirect to the correct summary page
|
|
if intervalCookie, _ := r.Cookie(models.PersistentIntervalKey); intervalCookie != nil {
|
|
redirectAddress := fmt.Sprintf("%s/summary?interval=%s", h.config.Server.BasePath, intervalCookie.Value)
|
|
http.Redirect(w, r, redirectAddress, http.StatusFound)
|
|
}
|
|
|
|
q.Set("interval", "today")
|
|
r.URL.RawQuery = q.Encode()
|
|
} else if q.Get("interval") != "" {
|
|
// Send a Set-Cookie header to persist the interval
|
|
headerValue := fmt.Sprintf("%s=%s", models.PersistentIntervalKey, q.Get("interval"))
|
|
w.Header().Add("Set-Cookie", headerValue)
|
|
}
|
|
|
|
summaryParams, _ := helpers.ParseSummaryParams(r)
|
|
summary, err, status := su.LoadUserSummary(h.summarySrvc, r)
|
|
if err != nil {
|
|
w.WriteHeader(status)
|
|
conf.Log().Request(r).Error("failed to load summary - %v", err)
|
|
templates[conf.SummaryTemplate].Execute(w, h.buildViewModel(r).WithError(err.Error()))
|
|
return
|
|
}
|
|
|
|
user := middlewares.GetPrincipal(r)
|
|
if user == nil {
|
|
w.WriteHeader(http.StatusUnauthorized)
|
|
templates[conf.SummaryTemplate].Execute(w, h.buildViewModel(r).WithError("unauthorized"))
|
|
return
|
|
}
|
|
|
|
vm := view.SummaryViewModel{
|
|
Summary: summary,
|
|
SummaryParams: summaryParams,
|
|
User: user,
|
|
EditorColors: utils.FilterColors(h.config.App.GetEditorColors(), summary.Editors),
|
|
LanguageColors: utils.FilterColors(h.config.App.GetLanguageColors(), summary.Languages),
|
|
OSColors: utils.FilterColors(h.config.App.GetOSColors(), summary.OperatingSystems),
|
|
ApiKey: user.ApiKey,
|
|
RawQuery: rawQuery,
|
|
}
|
|
|
|
templates[conf.SummaryTemplate].Execute(w, vm)
|
|
}
|
|
|
|
func (h *SummaryHandler) buildViewModel(r *http.Request) *view.SummaryViewModel {
|
|
return &view.SummaryViewModel{
|
|
Success: r.URL.Query().Get("success"),
|
|
Error: r.URL.Query().Get("error"),
|
|
}
|
|
}
|