DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

emerwen-web/internal/middlewares/sessionexists.go -rw-r--r-- 905 bytes
4e555b1eJonni Liljamo feat: UI for new/patch/delete worker/target a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Copyright (C) 2024 Jonni Liljamo <jonni@liljamo.com>
 *
 * This file is licensed under GPL-3.0-or-later, see NOTICE and LICENSE for
 * more information.
 */

package middlewares

import (
	"git.src.quest/~liljamo/emerwen-web/internal/auth"
	"git.src.quest/~liljamo/emerwen-web/internal/consts"
	"github.com/alexedwards/scs/v2"
	"github.com/gin-gonic/gin"
)

// CheckForSession returns a gin middleware for checking if a session exists
// and setting context values if one exists.
func CheckForSession(sm *scs.SessionManager) gin.HandlerFunc {
	return func(c *gin.Context) {

		if claims, ok := sm.Get(c.Request.Context(), "claims").(auth.Claims); ok {
			c.Set(consts.KeyLoggedIn, true)

			if claims.Name != "" {
				c.Set(consts.KeyUserName, claims.Name)
			} else {
				c.Set(consts.KeyUserName, claims.Email)
			}

			c.Next()
		} else {
			c.Set(consts.KeyLoggedIn, false)
			c.Next()
		}
	}
}