GoBlog/privateMode.go

23 lines
453 B
Go
Raw Normal View History

package main
import (
"net/http"
"github.com/justinas/alice"
)
func (a *goBlog) isPrivate() bool {
return a.cfg.PrivateMode != nil && a.cfg.PrivateMode.Enabled
}
func (a *goBlog) privateModeHandler(next http.Handler) http.Handler {
2022-02-18 15:35:53 +00:00
private := alice.New(a.authMiddleware).Then(next)
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if a.isPrivate() {
2022-02-18 15:35:53 +00:00
private.ServeHTTP(w, r)
return
}
2022-02-18 15:35:53 +00:00
next.ServeHTTP(w, r)
})
}