forked from helaili/github-oidc-auth-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigCache.go
33 lines (27 loc) · 787 Bytes
/
configCache.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
package main
import (
"strings"
"sync"
)
type ConfigCache struct {
cache map[string]*EntitlementConfig
mu sync.Mutex
}
func NewConfigCache() *ConfigCache {
return &ConfigCache{make(map[string]*EntitlementConfig), sync.Mutex{}}
}
func (configCache *ConfigCache) GetConfig(login string) *EntitlementConfig {
configCache.mu.Lock()
defer configCache.mu.Unlock()
return configCache.cache[strings.ToUpper(login)]
}
func (configCache *ConfigCache) SetConfig(login string, config *EntitlementConfig) {
configCache.mu.Lock()
defer configCache.mu.Unlock()
configCache.cache[strings.ToUpper(login)] = config
}
func (configCache *ConfigCache) DeleteConfig(login string) {
configCache.mu.Lock()
defer configCache.mu.Unlock()
delete(configCache.cache, strings.ToUpper(login))
}