-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore_middleware.go
62 lines (48 loc) · 1.18 KB
/
store_middleware.go
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package grok
import (
"errors"
"net/http"
"github.com/gin-gonic/gin"
)
// EnsureStoreFromPath ...
func EnsureStoreFromPath(paramName string) gin.HandlerFunc {
return ensureStoreByKind("path", paramName)
}
// EnsureStoreFromQuery ...
func EnsureStoreFromQuery(paramName string) gin.HandlerFunc {
return ensureStoreByKind("query", paramName)
}
func ensureStoreByKind(kind string, paramName string) gin.HandlerFunc {
return func(c *gin.Context) {
value := ""
switch kind {
case "path":
value = c.Param(paramName)
case "query":
value = c.Query(paramName)
}
if err := EnsureStore(c, value); err != nil {
c.Error(err)
c.AbortWithStatus(http.StatusForbidden)
return
}
c.Next()
}
}
// EnsureStore ...
func EnsureStore(ctx *gin.Context, storeID string) error {
value, exists := ctx.Get("stores")
if !exists || value == nil {
return errors.New("stores parameter not found in user claims")
}
slice, ok := value.([]interface{})
if !ok {
return errors.New("stores parameter not found in user claims")
}
for _, store := range slice {
if s, ok := store.(string); ok && s == storeID {
return nil
}
}
return errors.New("user not allowed to store")
}