mirror of
https://github.com/h44z/wg-portal.git
synced 2025-08-25 14:31:14 +00:00
validate user in session (#32)
This commit is contained in:
@@ -192,3 +192,10 @@ func (s *Server) setFormInSession(c *gin.Context, formData interface{}) (Session
|
||||
|
||||
return currentSession, nil
|
||||
}
|
||||
|
||||
func (s *Server) isUserStillValid(email string) bool {
|
||||
if s.users.GetUser(email) == nil {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
@@ -141,6 +141,14 @@ func (s *Server) RequireAuthentication(scope string) gin.HandlerFunc {
|
||||
return
|
||||
}
|
||||
|
||||
// Check if logged-in user is still valid
|
||||
if !s.isUserStillValid(session.Email) {
|
||||
_ = DestroySessionData(c)
|
||||
c.Abort()
|
||||
s.GetHandleError(c, http.StatusUnauthorized, "unauthorized", "session no longer available")
|
||||
return
|
||||
}
|
||||
|
||||
// Continue down the chain to handler etc
|
||||
c.Next()
|
||||
}
|
||||
|
Reference in New Issue
Block a user