/* Copyright © The ESO Authors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package doppler import ( "sync" dclient "github.com/external-secrets/external-secrets/providers/v1/doppler/client" "github.com/external-secrets/external-secrets/runtime/cache" ) type cacheEntry struct { etag string secrets dclient.Secrets body []byte } // Constant version because entries are invalidated explicitly on mutations. const etagCacheVersion = "" type secretsCache struct { cache *cache.Cache[*cacheEntry] keys map[string]map[cache.Key]struct{} keysMu sync.RWMutex } func newSecretsCache(size int) *secretsCache { if size <= 0 { return nil } return &secretsCache{ cache: cache.Must(size, func(_ *cacheEntry) { // No cleanup needed on eviction — entries are plain data with no external resources. }), keys: make(map[string]map[cache.Key]struct{}), } } type storeIdentity struct { namespace string name string kind string } func cacheKey(store storeIdentity, secretName string) cache.Key { name := store.name if secretName != "" { name = store.name + "|" + secretName } return cache.Key{ Name: name, Namespace: store.namespace, Kind: store.kind, } } func storeKey(store storeIdentity) string { return store.namespace + "|" + store.name + "|" + store.kind } func (c *secretsCache) get(store storeIdentity, secretName string) (*cacheEntry, bool) { if c == nil || c.cache == nil { return nil, false } key := cacheKey(store, secretName) return c.cache.Get(etagCacheVersion, key) } func (c *secretsCache) set(store storeIdentity, secretName string, entry *cacheEntry) { if c == nil || c.cache == nil { return } key := cacheKey(store, secretName) c.keysMu.Lock() c.cache.Add(etagCacheVersion, key, entry) prefix := storeKey(store) if c.keys[prefix] == nil { c.keys[prefix] = make(map[cache.Key]struct{}) } // Prune keys that have been evicted from the underlying cache to prevent unbounded growth. for k := range c.keys[prefix] { if !c.cache.Contains(k) { delete(c.keys[prefix], k) } } c.keys[prefix][key] = struct{}{} c.keysMu.Unlock() } func (c *secretsCache) invalidate(store storeIdentity) { if c == nil || c.cache == nil { return } c.keysMu.Lock() defer c.keysMu.Unlock() prefix := storeKey(store) keys, exists := c.keys[prefix] if !exists { return } for key := range keys { if c.cache.Contains(key) { c.cache.Get("__invalidate__", key) // wrong version triggers eviction } } delete(c.keys, prefix) } var etagCache *secretsCache