package storage import ( "errors" "strings" "github.com/redis/go-redis/v9" ) // various prefixes for accessing items in the cache (since it's a simple key-value store) const ( cacheUserHandleToIdPrefix = "acc-name-to-id:" cacheUserIdToAccPrefix = "acc-id-to-data:" cacheNoteIdToNotePrefix = "note-id-to-data:" ) // An error describing the case where some value was just not found in the cache var errCacheNotFound = errors.New("not found in cache") // Find an account id in cache using a given user handle // accId contains the Id of the account if found // err contains an error describing why an account's id couldn't be found // The most common one should be errCacheNotFound func (s *Storage) cacheHandleToAccUid(handle string) (accId *string, err error) { // Where to put the data (in case it's found) var target string found, err := s.cache.Get(cacheUserHandleToIdPrefix+strings.TrimLeft(handle, "@"), &target) // If nothing was found, check error if !found { // Case error is set and NOT redis' error for nothing found: Return that error if err != nil && !errors.Is(err, redis.Nil) { return nil, err } else { // Else return errCacheNotFound return nil, errCacheNotFound } } return &target, nil } // Find an account's data in cache using a given account id // acc contains the full account as stored last time if found // err contains an error describing why an account couldn't be found // The most common one should be errCacheNotFound func (s *Storage) cacheAccIdToData(id string) (acc *Account, err error) { var target Account found, err := s.cache.Get(cacheUserIdToAccPrefix+id, &target) if !found { if err != nil && !errors.Is(err, redis.Nil) { return nil, err } else { return nil, errCacheNotFound } } return &target, nil } // Find a cached note given its ID // note contains the full note as stored last time if found // err contains an error describing why a note couldn't be found // The most common one should be errCacheNotFound func (s *Storage) cacheNoteIdToData(id string) (note *Note, err error) { target := Note{} found, err := s.cache.Get(cacheNoteIdToNotePrefix+id, &target) if !found { if err != nil && !errors.Is(err, redis.Nil) { return nil, err } else { return nil, errCacheNotFound } } return &target, nil }