mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: MPL-2.0
 | |
| 
 | |
| 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,
 | |
| 	}
 | |
| }
 | 
