mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
a81c863ddb
* rename accounts v2 * rename keymanager and fix imports * rename accounts-v2 instances * imports * build * build fix * deepsource * fix up broken aliases * imports * gaz * Update validator/accounts/accounts_import_test.go Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> * fmt Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com>
100 lines
2.2 KiB
Go
100 lines
2.2 KiB
Go
package mock
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"io"
|
|
"io/ioutil"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/prysmaticlabs/prysm/validator/keymanager"
|
|
)
|
|
|
|
// 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
|
|
WalletPassword 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
|
|
}
|
|
|
|
// Exists --
|
|
func (m *Wallet) Exists() (bool, error) {
|
|
return len(m.Directories) > 0, nil
|
|
}
|
|
|
|
// Password --
|
|
func (m *Wallet) Password() string {
|
|
return m.WalletPassword
|
|
}
|
|
|
|
// SetPassword sets a new password for the wallet.
|
|
func (m *Wallet) SetPassword(newPass string) {
|
|
m.WalletPassword = newPass
|
|
}
|
|
|
|
// WriteFileAtPath --
|
|
func (m *Wallet) WriteFileAtPath(_ context.Context, pathName, 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(_ context.Context, pathName, fileName string) ([]byte, error) {
|
|
m.lock.RLock()
|
|
defer m.lock.RUnlock()
|
|
for f, v := range m.Files[pathName] {
|
|
if strings.Contains(fileName, f) {
|
|
return v, nil
|
|
}
|
|
}
|
|
return nil, errors.New("no files found")
|
|
}
|
|
|
|
// ReadEncryptedSeedFromDisk --
|
|
func (m *Wallet) ReadEncryptedSeedFromDisk(_ 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(_ context.Context, encoded []byte) error {
|
|
m.lock.Lock()
|
|
defer m.lock.Unlock()
|
|
m.EncryptedSeedFile = encoded
|
|
return nil
|
|
}
|
|
|
|
// InitializeKeymanager --
|
|
func (m *Wallet) InitializeKeymanager(_ context.Context, _ bool) (keymanager.IKeymanager, error) {
|
|
return nil, nil
|
|
}
|