* feat(server): moved an http server object into a pkg subdir to be reusable for http, spots, and integrations * feat(web): isolated web module (server, router, middleware, utils) used in spots and new integrations * feat(web): removed possible panic * feat(web): split all handlers from http service into different packages for better management. * feat(web): changed router's method signature * feat(web): added missing handlers interface * feat(web): added health middleware to remove unnecessary checks * feat(web): customizable middleware set for web servers * feat(web): simplified the handler's structure * feat(web): created an unified server.Run method for all web services (http, spot, integrations) * feat(web): fixed a json size limit issue * feat(web): removed Keys and PG connection from router * feat(web): simplified integration's main file * feat(web): simplified spot's main file * feat(web): simplified http's main file (builder) * feat(web): refactored audit trail functionality * feat(web): added ee version of audit trail * feat(web): added ee version of conditions module * feat(web): moved ee version of some web session structs * feat(web): new format of web metrics * feat(web): added new web metrics to all handlers * feat(web): added justExpired feature to web ingest handler * feat(web): added small integrations improvements
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
package api
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
type BeaconSize struct {
|
|
size int64
|
|
time time.Time
|
|
}
|
|
|
|
type BeaconCache struct {
|
|
mutex *sync.RWMutex
|
|
beaconSizeCache map[uint64]*BeaconSize
|
|
defaultLimit int64
|
|
}
|
|
|
|
func NewBeaconCache(limit int64) *BeaconCache {
|
|
cache := &BeaconCache{
|
|
mutex: &sync.RWMutex{},
|
|
beaconSizeCache: make(map[uint64]*BeaconSize),
|
|
defaultLimit: limit,
|
|
}
|
|
go cache.cleaner()
|
|
return cache
|
|
}
|
|
|
|
func (e *BeaconCache) Add(sessionID uint64, size int64) {
|
|
if size <= 0 {
|
|
return
|
|
}
|
|
e.mutex.Lock()
|
|
defer e.mutex.Unlock()
|
|
e.beaconSizeCache[sessionID] = &BeaconSize{
|
|
size: size,
|
|
time: time.Now(),
|
|
}
|
|
}
|
|
|
|
func (e *BeaconCache) Get(sessionID uint64) int64 {
|
|
e.mutex.RLock()
|
|
defer e.mutex.RUnlock()
|
|
if beaconSize, ok := e.beaconSizeCache[sessionID]; ok {
|
|
beaconSize.time = time.Now()
|
|
return beaconSize.size
|
|
}
|
|
return e.defaultLimit
|
|
}
|
|
|
|
func (e *BeaconCache) cleaner() {
|
|
for {
|
|
time.Sleep(time.Minute * 2)
|
|
now := time.Now()
|
|
e.mutex.Lock()
|
|
for sid, bs := range e.beaconSizeCache {
|
|
if now.Sub(bs.time) > time.Minute*3 {
|
|
delete(e.beaconSizeCache, sid)
|
|
}
|
|
}
|
|
e.mutex.Unlock()
|
|
}
|
|
}
|