2020-10-24 16:57:00 +02:00
|
|
|
// Copyright (c) 2020, Andreas Schneider
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
|
|
// documentation and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the <organization> nor the
|
|
|
|
// names of its contributors may be used to endorse or promote products
|
|
|
|
// derived from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
// DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
|
|
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-10-25 12:05:47 +01:00
|
|
|
"context"
|
2020-10-24 16:57:00 +02:00
|
|
|
"fmt"
|
|
|
|
"html/template"
|
2020-10-25 12:05:47 +01:00
|
|
|
"log"
|
2020-10-24 16:57:00 +02:00
|
|
|
"net/http"
|
|
|
|
"path"
|
2020-10-25 12:05:47 +01:00
|
|
|
"strings"
|
|
|
|
"time"
|
2020-10-24 16:57:00 +02:00
|
|
|
|
|
|
|
"github.com/go-chi/chi"
|
|
|
|
uuid "github.com/satori/go.uuid"
|
2020-10-25 12:05:47 +01:00
|
|
|
"github.com/tidwall/buntdb"
|
|
|
|
"golang.org/x/crypto/bcrypt"
|
2020-10-24 16:57:00 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type webAdminHandler struct {
|
|
|
|
router chi.Router
|
|
|
|
tplError *template.Template
|
|
|
|
tplConfirm *template.Template
|
2020-10-25 12:05:47 +01:00
|
|
|
tplLogin *template.Template
|
2020-10-24 16:57:00 +02:00
|
|
|
tplIndex *template.Template
|
|
|
|
tplUsers *template.Template
|
|
|
|
tplShares *template.Template
|
|
|
|
tplShareAddUser *template.Template
|
|
|
|
tplCreateShare *template.Template
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
type sessionContext struct {
|
|
|
|
h *webAdminHandler
|
|
|
|
w http.ResponseWriter
|
|
|
|
r *http.Request
|
|
|
|
baseModel map[string]interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
const sessionCookieName = "sharedavsession"
|
|
|
|
const sessionLifetime = 1 * time.Hour
|
|
|
|
|
|
|
|
const confirmRequested = 0
|
|
|
|
const confirmAccepted = 1
|
|
|
|
const confirmDenied = 2
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
func newWebAdminHandler(app *app) *webAdminHandler {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionStore, err := buntdb.Open(":memory:")
|
|
|
|
if err != nil {
|
|
|
|
panic("cannot initialize session store: " + err.Error())
|
|
|
|
}
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
loadTemplate := func(filename string) *template.Template {
|
|
|
|
t, err := template.ParseFiles(
|
|
|
|
path.Join("templates", "base.html"),
|
|
|
|
path.Join("templates", filename+".html"),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("cannot load template %q: %v", filename, err))
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
2020-10-25 12:05:47 +01:00
|
|
|
loadSingleTemplate := func(filename string) *template.Template {
|
|
|
|
t, err := template.ParseFiles(path.Join("templates", filename+".html"))
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("cannot load template %q: %v", filename, err))
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
2020-10-24 16:57:00 +02:00
|
|
|
|
|
|
|
h := &webAdminHandler{
|
|
|
|
tplError: loadTemplate("error"),
|
|
|
|
tplConfirm: loadTemplate("confirm"),
|
2020-10-25 12:05:47 +01:00
|
|
|
tplLogin: loadSingleTemplate("login"),
|
2020-10-24 16:57:00 +02:00
|
|
|
tplIndex: loadTemplate("index"),
|
|
|
|
tplUsers: loadTemplate("users"),
|
|
|
|
tplShares: loadTemplate("shares"),
|
|
|
|
tplShareAddUser: loadTemplate("share-add-user"),
|
|
|
|
tplCreateShare: loadTemplate("create-share"),
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
r := chi.NewRouter()
|
|
|
|
r.Use(disableCaching)
|
2020-10-24 16:57:00 +02:00
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
r.Route("/login", func(r chi.Router) {
|
|
|
|
r.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
sessionContext.RenderPage(h.tplLogin, nil)
|
|
|
|
})
|
|
|
|
r.Post("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
2020-10-24 16:57:00 +02:00
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
username := r.FormValue("username")
|
|
|
|
if strings.ContainsAny(username, "*:") {
|
|
|
|
sessionContext.RenderError("Username or password wrong.", "login")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
user, err := app.userStore.GetUser(username)
|
|
|
|
if err != nil {
|
|
|
|
sessionContext.RenderError("Username or password wrong.", "login")
|
|
|
|
return
|
|
|
|
}
|
2020-10-24 16:57:00 +02:00
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
if err := bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(r.FormValue("password"))); err != nil {
|
|
|
|
sessionContext.RenderError("Username or password wrong.", "login")
|
|
|
|
return
|
2020-10-24 16:57:00 +02:00
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionId := uuid.NewV4()
|
|
|
|
if err := sessionStore.Update(func(tx *buntdb.Tx) error {
|
|
|
|
_, _, err := tx.Set(sessionId.String(), user.Username, &buntdb.SetOptions{
|
|
|
|
Expires: true,
|
|
|
|
TTL: sessionLifetime,
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}); err != nil {
|
|
|
|
log.Printf("error setting session: %v\n", err)
|
|
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
|
|
return
|
2020-10-24 16:57:00 +02:00
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
cookie := &http.Cookie{
|
|
|
|
Name: sessionCookieName,
|
|
|
|
Value: sessionId.String(),
|
|
|
|
Expires: time.Now().Add(sessionLifetime),
|
|
|
|
HttpOnly: true,
|
|
|
|
}
|
|
|
|
http.SetCookie(w, cookie)
|
2020-10-24 16:57:00 +02:00
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.Redirect("./")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
ar := r.With(authenticated(sessionStore, app.userStore))
|
|
|
|
|
|
|
|
ar.Get("/logout", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
sessionCookie, err := r.Cookie(sessionCookieName)
|
|
|
|
if err != nil {
|
|
|
|
http.Redirect(w, r, "login", http.StatusFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := sessionStore.Update(func(tx *buntdb.Tx) error {
|
|
|
|
_, err := tx.Delete(sessionCookie.Value)
|
|
|
|
return err
|
|
|
|
}); err != nil {
|
|
|
|
log.Printf("error unsetting session: %v\n", err)
|
|
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
sessionContext.Redirect("./")
|
|
|
|
})
|
|
|
|
ar.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
sessionContext.RenderPage(h.tplIndex, nil)
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
2020-10-25 12:05:47 +01:00
|
|
|
ar.Get("/users", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
users, err := app.userStore.GetUsers()
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderPage(h.tplUsers, map[string]interface{}{
|
|
|
|
"Users": users,
|
|
|
|
})
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
2020-10-25 12:05:47 +01:00
|
|
|
ar.Get("/shares", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
shares, err := app.shareStore.GetShares()
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type shareInfo struct {
|
|
|
|
Share
|
|
|
|
Users []ShareUser
|
|
|
|
}
|
|
|
|
|
|
|
|
shareInfos := make([]shareInfo, len(shares))
|
|
|
|
for i := range shares {
|
|
|
|
shareInfos[i].Share = shares[i]
|
|
|
|
users, err := app.shareStore.GetShareUsers(shares[i])
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
shareInfos[i].Users = users
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderPage(h.tplShares, map[string]interface{}{
|
|
|
|
"ShareInfos": shareInfos,
|
|
|
|
})
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
2020-10-25 12:05:47 +01:00
|
|
|
ar.Route("/share-add-user", func(r chi.Router) {
|
2020-10-24 16:57:00 +02:00
|
|
|
r.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
shareId := r.URL.Query().Get("share")
|
|
|
|
if shareId == "" {
|
|
|
|
http.Error(w, "invalid share id", http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
users, err := app.userStore.GetUsers()
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderPage(h.tplShareAddUser, map[string]interface{}{
|
2020-10-24 16:57:00 +02:00
|
|
|
"ShareId": shareId,
|
|
|
|
"Users": users,
|
2020-10-25 12:05:47 +01:00
|
|
|
})
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
|
|
|
r.Post("/", func(w http.ResponseWriter, r *http.Request) {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
returnURL := "share-add-user?share=" + r.FormValue("share")
|
|
|
|
|
|
|
|
shareId, err := uuid.FromString(r.FormValue("share"))
|
|
|
|
if err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Internal error: "+err.Error()), "")
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
share := Share{UUID: shareId}
|
|
|
|
|
|
|
|
user, err := app.userStore.GetUser(r.FormValue("user"))
|
|
|
|
if err == ErrUserNotFound {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError("User not found.", returnURL)
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Internal error: "+err.Error()), "")
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = app.shareStore.AddUserToShare(share, user.Username, ShareRole(r.FormValue("role")))
|
|
|
|
if err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Cannot add user to share: "+err.Error()), returnURL)
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.Redirect("shares")
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
|
|
|
})
|
2020-10-25 12:05:47 +01:00
|
|
|
ar.Post("/share-delete-user", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
returnURL := "shares"
|
|
|
|
|
|
|
|
shareId, err := uuid.FromString(r.FormValue("share"))
|
|
|
|
if err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Internal error: "+err.Error()), "")
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
share := Share{UUID: shareId}
|
|
|
|
|
|
|
|
err = app.shareStore.RemoveUserFromShare(share, r.FormValue("user"))
|
|
|
|
if err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Cannot remove user from share: "+err.Error()), returnURL)
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
http.Redirect(w, r, "shares", http.StatusFound)
|
|
|
|
})
|
2020-10-25 12:05:47 +01:00
|
|
|
ar.Route("/create-share", func(r chi.Router) {
|
2020-10-24 16:57:00 +02:00
|
|
|
r.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
sessionContext.RenderPage(h.tplCreateShare, nil)
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
|
|
|
r.Post("/", func(w http.ResponseWriter, r *http.Request) {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
share, err := app.shareStore.CreateShare()
|
|
|
|
if err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Cannot create share: "+err.Error()), "")
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
share.Name = r.FormValue("name")
|
|
|
|
share.Description = r.FormValue("description")
|
|
|
|
|
|
|
|
if err := app.shareStore.UpdateShareAttributes(share); err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Cannot update share: "+err.Error()), "")
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.Redirect("shares#share-" + share.UUID.String())
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
|
|
|
})
|
2020-10-25 12:05:47 +01:00
|
|
|
ar.Post("/delete-share", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionContext := h.buildSessionContext(w, r)
|
|
|
|
|
2020-10-24 16:57:00 +02:00
|
|
|
share, err := app.shareStore.GetShare(r.FormValue("share"))
|
|
|
|
if err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Internal error: "+err.Error()), "")
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
message := fmt.Sprintf(`You are about to delete the share %s (%s).<br/>
|
|
|
|
This will delete all data permanently.<br/><br/>
|
|
|
|
Are you sure you want to continue?`, share.UUID, share.Name)
|
2020-10-25 12:05:47 +01:00
|
|
|
if confirmStatus := sessionContext.RequestConfirmation(template.HTML(message), "delete-share"); confirmStatus == confirmRequested {
|
2020-10-24 16:57:00 +02:00
|
|
|
// We have already rendered. Nothing to do.
|
|
|
|
return
|
|
|
|
} else if confirmStatus == confirmAccepted {
|
|
|
|
if err := app.shareStore.RemoveShare(share.UUID); err != nil {
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.RenderError(template.HTML("Share cannot be removed: "+err.Error()), "shares")
|
2020-10-24 16:57:00 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2020-10-25 12:05:47 +01:00
|
|
|
sessionContext.Redirect("shares")
|
2020-10-24 16:57:00 +02:00
|
|
|
})
|
|
|
|
h.router = r
|
|
|
|
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
2020-10-25 12:05:47 +01:00
|
|
|
func (h *webAdminHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2020-10-24 16:57:00 +02:00
|
|
|
h.router.ServeHTTP(w, r)
|
|
|
|
}
|
2020-10-25 12:05:47 +01:00
|
|
|
|
|
|
|
func (h *webAdminHandler) buildSessionContext(w http.ResponseWriter, r *http.Request) *sessionContext {
|
|
|
|
sessionContext := &sessionContext{
|
|
|
|
h: h,
|
|
|
|
w: w,
|
|
|
|
r: r,
|
|
|
|
baseModel: map[string]interface{}{},
|
|
|
|
}
|
|
|
|
sessionUser := userFromContext(r)
|
|
|
|
if sessionUser != nil {
|
|
|
|
sessionContext.baseModel["SessionUser"] = sessionUser
|
|
|
|
}
|
|
|
|
return sessionContext
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *sessionContext) Redirect(target string) {
|
|
|
|
http.Redirect(s.w, s.r, target, http.StatusFound)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *sessionContext) RenderPage(tmpl *template.Template, model map[string]interface{}) {
|
|
|
|
effectiveModel := map[string]interface{}{}
|
|
|
|
for k, v := range s.baseModel {
|
|
|
|
effectiveModel[k] = v
|
|
|
|
}
|
|
|
|
for k, v := range model {
|
|
|
|
effectiveModel[k] = v
|
|
|
|
}
|
|
|
|
if err := tmpl.Execute(s.w, effectiveModel); err != nil {
|
|
|
|
http.Error(s.w, err.Error(), http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *sessionContext) RenderError(msg template.HTML, returnURL string) {
|
|
|
|
model := map[string]interface{}{
|
|
|
|
"ErrorMessage": msg,
|
|
|
|
"ReturnURL": returnURL,
|
|
|
|
}
|
|
|
|
s.RenderPage(s.h.tplError, model)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *sessionContext) RequestConfirmation(msg template.HTML, returnURL string) int {
|
|
|
|
if s.r.FormValue("_yes") != "" {
|
|
|
|
return confirmAccepted
|
|
|
|
} else if s.r.FormValue("_no") != "" {
|
|
|
|
return confirmDenied
|
|
|
|
} else {
|
|
|
|
fields := map[string]string{}
|
|
|
|
for k, v := range s.r.Form {
|
|
|
|
fields[k] = v[0]
|
|
|
|
}
|
|
|
|
model := map[string]interface{}{
|
|
|
|
"URL": returnURL,
|
|
|
|
"Message": msg,
|
|
|
|
"Fields": fields,
|
|
|
|
}
|
|
|
|
|
|
|
|
s.RenderPage(s.h.tplConfirm, model)
|
|
|
|
return confirmRequested
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func disableCaching(next http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
|
|
|
|
w.Header().Set("Pragma", "no-cache")
|
|
|
|
w.Header().Set("Expires", "0")
|
|
|
|
|
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func authenticated(sessionStore *buntdb.DB, userStore UserStore) func(http.Handler) http.Handler {
|
|
|
|
return func(next http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sessionCookie, err := r.Cookie(sessionCookieName)
|
|
|
|
if err != nil {
|
|
|
|
http.Redirect(w, r, "login", http.StatusFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var username string
|
|
|
|
if err := sessionStore.View(func(tx *buntdb.Tx) error {
|
|
|
|
val, err := tx.Get(sessionCookie.Value)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
username = val
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
http.Redirect(w, r, "login", http.StatusFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
user, err := userStore.GetUser(username)
|
|
|
|
if err != nil {
|
|
|
|
http.Redirect(w, r, "login", http.StatusFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
next.ServeHTTP(w, r.WithContext(context.WithValue(r.Context(), "user", &user)))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func userFromContext(r *http.Request) *User {
|
|
|
|
if user, ok := r.Context().Value("user").(*User); ok {
|
|
|
|
return user
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|