mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package logical
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/sdk/physical"
 | 
						|
)
 | 
						|
 | 
						|
type LogicalStorage struct {
 | 
						|
	underlying physical.Backend
 | 
						|
}
 | 
						|
 | 
						|
func (s *LogicalStorage) Get(ctx context.Context, key string) (*StorageEntry, error) {
 | 
						|
	entry, err := s.underlying.Get(ctx, key)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if entry == nil {
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
	return &StorageEntry{
 | 
						|
		Key:      entry.Key,
 | 
						|
		Value:    entry.Value,
 | 
						|
		SealWrap: entry.SealWrap,
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func (s *LogicalStorage) Put(ctx context.Context, entry *StorageEntry) error {
 | 
						|
	return s.underlying.Put(ctx, &physical.Entry{
 | 
						|
		Key:      entry.Key,
 | 
						|
		Value:    entry.Value,
 | 
						|
		SealWrap: entry.SealWrap,
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
func (s *LogicalStorage) Delete(ctx context.Context, key string) error {
 | 
						|
	return s.underlying.Delete(ctx, key)
 | 
						|
}
 | 
						|
 | 
						|
func (s *LogicalStorage) List(ctx context.Context, prefix string) ([]string, error) {
 | 
						|
	return s.underlying.List(ctx, prefix)
 | 
						|
}
 | 
						|
 | 
						|
func (s *LogicalStorage) Underlying() physical.Backend {
 | 
						|
	return s.underlying
 | 
						|
}
 | 
						|
 | 
						|
func NewLogicalStorage(underlying physical.Backend) *LogicalStorage {
 | 
						|
	return &LogicalStorage{
 | 
						|
		underlying: underlying,
 | 
						|
	}
 | 
						|
}
 |