32 lines
851 B
Go
32 lines
851 B
Go
|
package view
|
||
|
|
||
|
import (
|
||
|
"html/template"
|
||
|
"log"
|
||
|
"net/http"
|
||
|
|
||
|
"streifling.com/jason/cpolis/cmd/control"
|
||
|
"streifling.com/jason/cpolis/cmd/model"
|
||
|
)
|
||
|
|
||
|
func PublishLatestIssue(db *model.DB, s *control.CookieStore) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
if err := db.PublishLatestIssue(); err != nil {
|
||
|
log.Println(err)
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
session, err := s.Get(r, "cookie")
|
||
|
if err != nil {
|
||
|
tmpl, err := template.ParseFiles("web/templates/login.html")
|
||
|
msg := "Session nicht mehr gültig. Bitte erneut anmelden."
|
||
|
template.Must(tmpl, err).ExecuteTemplate(w, "page-content", msg)
|
||
|
}
|
||
|
|
||
|
tmpl, err := template.ParseFiles("web/templates/hub.html")
|
||
|
tmpl = template.Must(tmpl, err)
|
||
|
tmpl.ExecuteTemplate(w, "page-content", session.Values["role"])
|
||
|
}
|
||
|
}
|