feat: securing the cookies
This commit is contained in:
parent
e4c79b2155
commit
2a3d00839f
|
@ -212,7 +212,7 @@ https://github.com/efim/dotfiles/commit/b3695148082d8c9850a781aaa7a88920bdb1fa7f
|
||||||
|
|
||||||
this is all that's needed to enable tls
|
this is all that's needed to enable tls
|
||||||
mind blown
|
mind blown
|
||||||
** TODO somehow set cookie to httpOnly & secure
|
** DONE somehow set cookie to httpOnly & secure
|
||||||
with ability to disable for development session
|
with ability to disable for development session
|
||||||
|
|
||||||
** TODO maybe add middleware so that 401 would be a page, and not json
|
** TODO maybe add middleware so that 401 would be a page, and not json
|
||||||
|
|
11
main.go
11
main.go
|
@ -1,16 +1,21 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/pocketbase/pocketbase"
|
"github.com/pocketbase/pocketbase"
|
||||||
"sunshine.industries/auth-pocketbase-attempt/middleware"
|
"sunshine.industries/auth-pocketbase-attempt/middleware"
|
||||||
"sunshine.industries/auth-pocketbase-attempt/pages"
|
"sunshine.industries/auth-pocketbase-attempt/pages"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
app := pocketbase.New()
|
app := pocketbase.New()
|
||||||
middleware.AddCookieSessionMiddleware(app)
|
|
||||||
|
servedName := app.Settings().Meta.AppUrl
|
||||||
|
isTlsEnabled := strings.HasPrefix(servedName, "https://")
|
||||||
|
|
||||||
|
middleware.AddCookieSessionMiddleware(app, isTlsEnabled)
|
||||||
pages.AddPageRoutes(app)
|
pages.AddPageRoutes(app)
|
||||||
|
|
||||||
if err := app.Start(); err != nil {
|
if err := app.Start(); err != nil {
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
package middleware
|
package middleware
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/labstack/echo/v5"
|
"github.com/labstack/echo/v5"
|
||||||
"github.com/pocketbase/pocketbase"
|
"github.com/pocketbase/pocketbase"
|
||||||
"github.com/pocketbase/pocketbase/apis"
|
"github.com/pocketbase/pocketbase/apis"
|
||||||
|
@ -13,7 +15,9 @@ import (
|
||||||
|
|
||||||
const AuthCookieName = "Auth"
|
const AuthCookieName = "Auth"
|
||||||
|
|
||||||
func AddCookieSessionMiddleware(app *pocketbase.PocketBase) {
|
func AddCookieSessionMiddleware(app *pocketbase.PocketBase, isTlsEnabled bool) {
|
||||||
|
log.Println("Warning: starting server with cookie Secure = false!")
|
||||||
|
|
||||||
app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
|
app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
|
||||||
e.Router.Use(loadAuthContextFromCookie(app))
|
e.Router.Use(loadAuthContextFromCookie(app))
|
||||||
return nil
|
return nil
|
||||||
|
@ -25,6 +29,8 @@ func AddCookieSessionMiddleware(app *pocketbase.PocketBase) {
|
||||||
Name: AuthCookieName,
|
Name: AuthCookieName,
|
||||||
Value: e.Token,
|
Value: e.Token,
|
||||||
Path: "/",
|
Path: "/",
|
||||||
|
Secure: isTlsEnabled,
|
||||||
|
HttpOnly: true,
|
||||||
})
|
})
|
||||||
e.HttpContext.SetCookie(&http.Cookie{
|
e.HttpContext.SetCookie(&http.Cookie{
|
||||||
Name: "username",
|
Name: "username",
|
||||||
|
@ -37,10 +43,12 @@ func AddCookieSessionMiddleware(app *pocketbase.PocketBase) {
|
||||||
Name: AuthCookieName,
|
Name: AuthCookieName,
|
||||||
Value: e.Token,
|
Value: e.Token,
|
||||||
Path: "/",
|
Path: "/",
|
||||||
|
Secure: isTlsEnabled,
|
||||||
|
HttpOnly: true,
|
||||||
})
|
})
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
app.OnBeforeServe().Add(getLogoutRoute(app))
|
app.OnBeforeServe().Add(getLogoutRoute(app, isTlsEnabled))
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadAuthContextFromCookie(app core.App) echo.MiddlewareFunc {
|
func loadAuthContextFromCookie(app core.App) echo.MiddlewareFunc {
|
||||||
|
@ -84,7 +92,7 @@ func loadAuthContextFromCookie(app core.App) echo.MiddlewareFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// render and return login page with configured oauth providers
|
// render and return login page with configured oauth providers
|
||||||
func getLogoutRoute(app *pocketbase.PocketBase) func(*core.ServeEvent) error {
|
func getLogoutRoute(app *pocketbase.PocketBase, isTlsEnabled bool) func(*core.ServeEvent) error {
|
||||||
return func (e *core.ServeEvent) error {
|
return func (e *core.ServeEvent) error {
|
||||||
e.Router.GET("/logout", func(c echo.Context) error {
|
e.Router.GET("/logout", func(c echo.Context) error {
|
||||||
c.SetCookie(&http.Cookie{
|
c.SetCookie(&http.Cookie{
|
||||||
|
@ -92,6 +100,8 @@ func getLogoutRoute(app *pocketbase.PocketBase) func(*core.ServeEvent) error {
|
||||||
Value: "",
|
Value: "",
|
||||||
Path: "/",
|
Path: "/",
|
||||||
MaxAge: -1,
|
MaxAge: -1,
|
||||||
|
Secure: isTlsEnabled,
|
||||||
|
HttpOnly: true,
|
||||||
})
|
})
|
||||||
c.Response().Header().Add("HX-Trigger", "auth-change-event")
|
c.Response().Header().Add("HX-Trigger", "auth-change-event")
|
||||||
return c.JSON(http.StatusOK, map[string]string{"message": "session cookie removed"})
|
return c.JSON(http.StatusOK, map[string]string{"message": "session cookie removed"})
|
||||||
|
|
Loading…
Reference in New Issue