Some checks are pending
Go Benchmark / Performance Regression Check (push) Waiting to run
Cerberus Integration / Cerberus Security Stack Integration (push) Waiting to run
Upload Coverage to Codecov / Backend Codecov Upload (push) Waiting to run
Upload Coverage to Codecov / Frontend Codecov Upload (push) Waiting to run
CodeQL - Analyze / CodeQL analysis (go) (push) Waiting to run
CodeQL - Analyze / CodeQL analysis (javascript-typescript) (push) Waiting to run
CrowdSec Integration / CrowdSec Bouncer Integration (push) Waiting to run
Docker Build, Publish & Test / build-and-push (push) Waiting to run
Docker Build, Publish & Test / Security Scan PR Image (push) Blocked by required conditions
Quality Checks / Auth Route Protection Contract (push) Waiting to run
Quality Checks / Codecov Trigger/Comment Parity Guard (push) Waiting to run
Quality Checks / Backend (Go) (push) Waiting to run
Quality Checks / Frontend (React) (push) Waiting to run
Rate Limit integration / Rate Limiting Integration (push) Waiting to run
Security Scan (PR) / Trivy Binary Scan (push) Waiting to run
Supply Chain Verification (PR) / Verify Supply Chain (push) Waiting to run
WAF integration / Coraza WAF Integration (push) Waiting to run
71 lines
1.2 KiB
Go
Executable File
71 lines
1.2 KiB
Go
Executable File
package handlers
|
|
|
|
import (
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
type cacheEntry struct {
|
|
data interface{}
|
|
expiresAt time.Time
|
|
}
|
|
|
|
type dashboardCache struct {
|
|
mu sync.RWMutex
|
|
entries map[string]*cacheEntry
|
|
}
|
|
|
|
func newDashboardCache() *dashboardCache {
|
|
return &dashboardCache{
|
|
entries: make(map[string]*cacheEntry),
|
|
}
|
|
}
|
|
|
|
func (c *dashboardCache) Get(key string) (interface{}, bool) {
|
|
c.mu.RLock()
|
|
entry, ok := c.entries[key]
|
|
if !ok {
|
|
c.mu.RUnlock()
|
|
return nil, false
|
|
}
|
|
if time.Now().Before(entry.expiresAt) {
|
|
data := entry.data
|
|
c.mu.RUnlock()
|
|
return data, true
|
|
}
|
|
c.mu.RUnlock()
|
|
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
entry, ok = c.entries[key]
|
|
if ok && time.Now().After(entry.expiresAt) {
|
|
delete(c.entries, key)
|
|
}
|
|
return nil, false
|
|
}
|
|
|
|
func (c *dashboardCache) Set(key string, data interface{}, ttl time.Duration) {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
|
|
c.entries[key] = &cacheEntry{
|
|
data: data,
|
|
expiresAt: time.Now().Add(ttl),
|
|
}
|
|
}
|
|
|
|
func (c *dashboardCache) Invalidate(prefixes ...string) {
|
|
c.mu.Lock()
|
|
defer c.mu.Unlock()
|
|
|
|
for key := range c.entries {
|
|
for _, prefix := range prefixes {
|
|
if strings.HasPrefix(key, prefix) {
|
|
delete(c.entries, key)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|