indiescrobble/middlewares/auth.go

41 lines
1.0 KiB
Go
Raw Permalink Normal View History

package middlewares
import (
"net/http"
2022-02-05 16:24:07 +00:00
"git.jamesravey.me/ravenscroftj/indiescrobble/controllers"
"github.com/gin-gonic/gin"
)
2022-02-13 15:49:22 +00:00
func AuthMiddleware(requireValidUser bool, iam *controllers.IndieAuthManager) gin.HandlerFunc {
return func(c *gin.Context) {
2022-02-05 16:24:07 +00:00
// config := config.GetConfig()
currentUser := iam.GetCurrentUser(c)
2022-02-05 16:24:07 +00:00
if requireValidUser && (currentUser == nil) {
c.SetCookie("jwt", "", -1, "/", "", c.Request.URL.Scheme == "https", true)
c.Redirect(http.StatusSeeOther, "/")
}
2022-02-05 16:24:07 +00:00
c.Set("user", currentUser)
2022-02-05 16:24:07 +00:00
// reqKey := c.Request.Header.Get("X-Auth-Key")
// reqSecret := c.Request.Header.Get("X-Auth-Secret")
// var key string
// var secret string
// if key = config.GetString("http.auth.key"); len(strings.TrimSpace(key)) == 0 {
// c.AbortWithStatus(500)
// }
// if secret = config.GetString("http.auth.secret"); len(strings.TrimSpace(secret)) == 0 {
// c.AbortWithStatus(401)
// }
// if key != reqKey || secret != reqSecret {
// c.AbortWithStatus(401)
// return
// }
c.Next()
}
}