mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
7c52ef8c2b
* simplify wallet functions * fix build * futher simplify wallet * simplify read/write methods * move direct functions to direct keymanager * further move direct km specific funcs * cleanup * simplify the direct tests * fixed tests * lint * further simplify * tidy * fix config write * fixed test Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
101 lines
2.3 KiB
Go
101 lines
2.3 KiB
Go
package mock
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"io"
|
|
"io/ioutil"
|
|
"sync"
|
|
)
|
|
|
|
// Wallet contains an in-memory, simulated wallet implementation.
|
|
type Wallet struct {
|
|
InnerAccountsDir string
|
|
Directories []string
|
|
Files map[string]map[string][]byte
|
|
EncryptedSeedFile []byte
|
|
AccountPasswords map[string]string
|
|
UnlockAccounts bool
|
|
lock sync.RWMutex
|
|
}
|
|
|
|
// AccountNames --
|
|
func (m *Wallet) AccountNames() ([]string, error) {
|
|
m.lock.RLock()
|
|
defer m.lock.RUnlock()
|
|
names := make([]string, 0)
|
|
for name := range m.AccountPasswords {
|
|
names = append(names, name)
|
|
}
|
|
return names, nil
|
|
}
|
|
|
|
// AccountsDir --
|
|
func (m *Wallet) AccountsDir() string {
|
|
return m.InnerAccountsDir
|
|
}
|
|
|
|
// ListDirs --
|
|
func (m *Wallet) ListDirs() ([]string, error) {
|
|
return m.Directories, nil
|
|
}
|
|
|
|
// WritePasswordToDisk --
|
|
func (m *Wallet) WritePasswordToDisk(ctx context.Context, passwordFileName string, password string) error {
|
|
m.lock.Lock()
|
|
defer m.lock.Unlock()
|
|
m.AccountPasswords[passwordFileName] = password
|
|
return nil
|
|
}
|
|
|
|
// ReadPasswordFromDisk --
|
|
func (m *Wallet) ReadPasswordFromDisk(ctx context.Context, passwordFileName string) (string, error) {
|
|
m.lock.RLock()
|
|
defer m.lock.RUnlock()
|
|
for name, password := range m.AccountPasswords {
|
|
if name == passwordFileName {
|
|
return password, nil
|
|
}
|
|
}
|
|
return "", errors.New("account not found")
|
|
}
|
|
|
|
// WriteFileAtPath --
|
|
func (m *Wallet) WriteFileAtPath(ctx context.Context, pathName string, fileName string, data []byte) error {
|
|
m.lock.Lock()
|
|
defer m.lock.Unlock()
|
|
if m.Files[pathName] == nil {
|
|
m.Files[pathName] = make(map[string][]byte)
|
|
}
|
|
m.Files[pathName][fileName] = data
|
|
return nil
|
|
}
|
|
|
|
// ReadFileAtPath --
|
|
func (m *Wallet) ReadFileAtPath(ctx context.Context, pathName string, fileName string) ([]byte, error) {
|
|
m.lock.RLock()
|
|
defer m.lock.RUnlock()
|
|
for f, v := range m.Files[pathName] {
|
|
if f == fileName {
|
|
return v, nil
|
|
}
|
|
}
|
|
return nil, errors.New("file not found")
|
|
}
|
|
|
|
// ReadEncryptedSeedFromDisk --
|
|
func (m *Wallet) ReadEncryptedSeedFromDisk(ctx context.Context) (io.ReadCloser, error) {
|
|
m.lock.Lock()
|
|
defer m.lock.Unlock()
|
|
return ioutil.NopCloser(bytes.NewReader(m.EncryptedSeedFile)), nil
|
|
}
|
|
|
|
// WriteEncryptedSeedToDisk --
|
|
func (m *Wallet) WriteEncryptedSeedToDisk(ctx context.Context, encoded []byte) error {
|
|
m.lock.Lock()
|
|
defer m.lock.Unlock()
|
|
m.EncryptedSeedFile = encoded
|
|
return nil
|
|
}
|