mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
851545c21f
related to #9348
323 lines
7.8 KiB
Go
323 lines
7.8 KiB
Go
package cached_mysql
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
"time"
|
|
|
|
"github.com/fleetdm/fleet/v4/server/fleet"
|
|
"github.com/jinzhu/copier"
|
|
"github.com/patrickmn/go-cache"
|
|
)
|
|
|
|
const (
|
|
appConfigKey = "AppConfig:%s"
|
|
defaultAppConfigExpiration = 1 * time.Second
|
|
packsHostKey = "Packs:host:%d"
|
|
defaultPacksExpiration = 1 * time.Minute
|
|
scheduledQueriesKey = "ScheduledQueries:pack:%d"
|
|
defaultScheduledQueriesExpiration = 1 * time.Minute
|
|
teamAgentOptionsKey = "TeamAgentOptions:team:%d"
|
|
defaultTeamAgentOptionsExpiration = 1 * time.Minute
|
|
teamFeaturesKey = "TeamFeatures:team:%d"
|
|
defaultTeamFeaturesExpiration = 1 * time.Minute
|
|
teamMDMConfigKey = "TeamMDMConfig:team:%d"
|
|
defaultTeamMDMConfigExpiration = 1 * time.Minute
|
|
)
|
|
|
|
// cloner represents any type that can clone itself. Used by types to provide a more efficient clone method.
|
|
type cloner interface {
|
|
Clone() (interface{}, error)
|
|
}
|
|
|
|
func clone(v interface{}) (interface{}, error) {
|
|
if cloner, ok := v.(cloner); ok {
|
|
return cloner.Clone()
|
|
}
|
|
|
|
if v == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
// Use reflection to initialize a clone of v of the same type.
|
|
vv := reflect.ValueOf(v)
|
|
|
|
// If the value is a pointer, then calling reflect.New on it will result in a double pointer.
|
|
// Instead, dereference the pointer first.
|
|
isPtr := false
|
|
if vv.Kind() == reflect.Ptr {
|
|
isPtr = true
|
|
if vv.IsNil() {
|
|
return nil, nil
|
|
}
|
|
vv = vv.Elem()
|
|
}
|
|
|
|
clone := reflect.New(vv.Type())
|
|
|
|
err := copier.CopyWithOption(clone.Interface(), v, copier.Option{DeepCopy: true, IgnoreEmpty: true})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if isPtr {
|
|
return clone.Interface(), nil
|
|
}
|
|
|
|
// The value was not a pointer. Need to dereference it before returning.
|
|
return clone.Elem().Interface(), nil
|
|
}
|
|
|
|
// cloneCache wraps the in memory cache with one that clones items before returning them.
|
|
type cloneCache struct {
|
|
*cache.Cache
|
|
}
|
|
|
|
func (c *cloneCache) Get(k string) (interface{}, bool) {
|
|
x, found := c.Cache.Get(k)
|
|
if !found {
|
|
return nil, false
|
|
}
|
|
|
|
clone, err := clone(x)
|
|
if err != nil {
|
|
// Unfortunely, we can't return an error here. Return a cache miss instead of panic'ing.
|
|
return nil, false
|
|
}
|
|
return clone, true
|
|
}
|
|
|
|
func (c *cloneCache) Set(k string, x interface{}, d time.Duration) {
|
|
clone, err := clone(x)
|
|
if err != nil {
|
|
// Unfortunately, we can't return an error here. Skip caching it if clone fails.
|
|
return
|
|
}
|
|
|
|
c.Cache.Set(k, clone, d)
|
|
}
|
|
|
|
type cachedMysql struct {
|
|
fleet.Datastore
|
|
|
|
c *cloneCache
|
|
|
|
packsExp time.Duration
|
|
scheduledQueriesExp time.Duration
|
|
teamAgentOptionsExp time.Duration
|
|
teamFeaturesExp time.Duration
|
|
teamMDMConfigExp time.Duration
|
|
}
|
|
|
|
type Option func(*cachedMysql)
|
|
|
|
func WithPacksExpiration(d time.Duration) Option {
|
|
return func(o *cachedMysql) {
|
|
o.packsExp = d
|
|
}
|
|
}
|
|
|
|
func WithScheduledQueriesExpiration(d time.Duration) Option {
|
|
return func(o *cachedMysql) {
|
|
o.scheduledQueriesExp = d
|
|
}
|
|
}
|
|
|
|
func WithTeamAgentOptionsExpiration(d time.Duration) Option {
|
|
return func(o *cachedMysql) {
|
|
o.teamAgentOptionsExp = d
|
|
}
|
|
}
|
|
|
|
func WithTeamFeaturesExpiration(d time.Duration) Option {
|
|
return func(o *cachedMysql) {
|
|
o.teamFeaturesExp = d
|
|
}
|
|
}
|
|
|
|
func WithTeamMDMConfigExpiration(d time.Duration) Option {
|
|
return func(o *cachedMysql) {
|
|
o.teamMDMConfigExp = d
|
|
}
|
|
}
|
|
|
|
func New(ds fleet.Datastore, opts ...Option) fleet.Datastore {
|
|
c := &cachedMysql{
|
|
Datastore: ds,
|
|
c: &cloneCache{cache.New(5*time.Minute, 10*time.Minute)},
|
|
packsExp: defaultPacksExpiration,
|
|
scheduledQueriesExp: defaultScheduledQueriesExpiration,
|
|
teamAgentOptionsExp: defaultTeamAgentOptionsExpiration,
|
|
teamFeaturesExp: defaultTeamFeaturesExpiration,
|
|
}
|
|
for _, fn := range opts {
|
|
fn(c)
|
|
}
|
|
return c
|
|
}
|
|
|
|
func (ds *cachedMysql) NewAppConfig(ctx context.Context, info *fleet.AppConfig) (*fleet.AppConfig, error) {
|
|
ac, err := ds.Datastore.NewAppConfig(ctx, info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ds.c.Set(appConfigKey, ac, defaultAppConfigExpiration)
|
|
|
|
return ac, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) AppConfig(ctx context.Context) (*fleet.AppConfig, error) {
|
|
if x, found := ds.c.Get(appConfigKey); found {
|
|
ac, ok := x.(*fleet.AppConfig)
|
|
if ok {
|
|
return ac, nil
|
|
}
|
|
}
|
|
|
|
ac, err := ds.Datastore.AppConfig(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ds.c.Set(appConfigKey, ac, defaultAppConfigExpiration)
|
|
|
|
return ac, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) SaveAppConfig(ctx context.Context, info *fleet.AppConfig) error {
|
|
err := ds.Datastore.SaveAppConfig(ctx, info)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ds.c.Set(appConfigKey, info, defaultAppConfigExpiration)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (ds *cachedMysql) ListPacksForHost(ctx context.Context, hid uint) ([]*fleet.Pack, error) {
|
|
key := fmt.Sprintf(packsHostKey, hid)
|
|
if x, found := ds.c.Get(key); found {
|
|
cachedPacks, ok := x.([]*fleet.Pack)
|
|
if ok {
|
|
return cachedPacks, nil
|
|
}
|
|
}
|
|
|
|
packs, err := ds.Datastore.ListPacksForHost(ctx, hid)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ds.c.Set(key, packs, ds.packsExp)
|
|
|
|
return packs, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) ListScheduledQueriesInPack(ctx context.Context, packID uint) (fleet.ScheduledQueryList, error) {
|
|
key := fmt.Sprintf(scheduledQueriesKey, packID)
|
|
if x, found := ds.c.Get(key); found {
|
|
scheduledQueries, ok := x.(fleet.ScheduledQueryList)
|
|
if ok {
|
|
return scheduledQueries, nil
|
|
}
|
|
}
|
|
|
|
scheduledQueries, err := ds.Datastore.ListScheduledQueriesInPack(ctx, packID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ds.c.Set(key, scheduledQueries, ds.scheduledQueriesExp)
|
|
|
|
return scheduledQueries, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) TeamAgentOptions(ctx context.Context, teamID uint) (*json.RawMessage, error) {
|
|
key := fmt.Sprintf(teamAgentOptionsKey, teamID)
|
|
if x, found := ds.c.Get(key); found {
|
|
if agentOptions, ok := x.(*json.RawMessage); ok {
|
|
return agentOptions, nil
|
|
}
|
|
}
|
|
|
|
agentOptions, err := ds.Datastore.TeamAgentOptions(ctx, teamID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ds.c.Set(key, agentOptions, ds.teamAgentOptionsExp)
|
|
|
|
return agentOptions, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) TeamFeatures(ctx context.Context, teamID uint) (*fleet.Features, error) {
|
|
key := fmt.Sprintf(teamFeaturesKey, teamID)
|
|
if x, found := ds.c.Get(key); found {
|
|
if features, ok := x.(*fleet.Features); ok {
|
|
return features, nil
|
|
}
|
|
}
|
|
|
|
features, err := ds.Datastore.TeamFeatures(ctx, teamID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ds.c.Set(key, features, ds.teamFeaturesExp)
|
|
|
|
return features, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) TeamMDMConfig(ctx context.Context, teamID uint) (*fleet.TeamMDM, error) {
|
|
key := fmt.Sprintf(teamMDMConfigKey, teamID)
|
|
if x, found := ds.c.Get(key); found {
|
|
if cfg, ok := x.(*fleet.TeamMDM); ok {
|
|
return cfg, nil
|
|
}
|
|
}
|
|
|
|
cfg, err := ds.Datastore.TeamMDMConfig(ctx, teamID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return cfg, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) SaveTeam(ctx context.Context, team *fleet.Team) (*fleet.Team, error) {
|
|
team, err := ds.Datastore.SaveTeam(ctx, team)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
agentOptionsKey := fmt.Sprintf(teamAgentOptionsKey, team.ID)
|
|
featuresKey := fmt.Sprintf(teamFeaturesKey, team.ID)
|
|
mdmConfigKey := fmt.Sprintf(teamMDMConfigKey, team.ID)
|
|
|
|
ds.c.Set(agentOptionsKey, team.Config.AgentOptions, ds.teamAgentOptionsExp)
|
|
ds.c.Set(featuresKey, &team.Config.Features, ds.teamFeaturesExp)
|
|
ds.c.Set(mdmConfigKey, &team.Config.MDM, ds.teamMDMConfigExp)
|
|
|
|
return team, nil
|
|
}
|
|
|
|
func (ds *cachedMysql) DeleteTeam(ctx context.Context, teamID uint) error {
|
|
err := ds.Datastore.DeleteTeam(ctx, teamID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
agentOptionsKey := fmt.Sprintf(teamAgentOptionsKey, teamID)
|
|
featuresKey := fmt.Sprintf(teamFeaturesKey, teamID)
|
|
mdmConfigKey := fmt.Sprintf(teamMDMConfigKey, teamID)
|
|
|
|
ds.c.Delete(agentOptionsKey)
|
|
ds.c.Delete(featuresKey)
|
|
ds.c.Delete(mdmConfigKey)
|
|
|
|
return nil
|
|
}
|