mirror of
https://github.com/wealdtech/ethdo.git
synced 2026-01-08 21:48:05 -05:00
62 lines
1.8 KiB
Go
62 lines
1.8 KiB
Go
// Copyright © 2020 Weald Technology Trading
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package signing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
e2wtypes "github.com/wealdtech/go-eth2-wallet-types/v2"
|
|
)
|
|
|
|
// Unlock attempts to unlock an account. It returns true if the account was already unlocked.
|
|
func Unlock(ctx context.Context, account e2wtypes.Account, passphrases []string) (bool, error) {
|
|
locker, isAccountLocker := account.(e2wtypes.AccountLocker)
|
|
if !isAccountLocker {
|
|
// outputIf(debug, "Account does not support unlocking")
|
|
// This account doesn't support unlocking; return okay.
|
|
return true, nil
|
|
}
|
|
|
|
alreadyUnlocked, err := locker.IsUnlocked(ctx)
|
|
if err != nil {
|
|
return false, errors.Wrap(err, "unable to ascertain if account is unlocked")
|
|
}
|
|
|
|
if alreadyUnlocked {
|
|
return true, nil
|
|
}
|
|
|
|
// Not already unlocked; attempt to unlock it.
|
|
for _, passphrase := range passphrases {
|
|
err = locker.Unlock(ctx, []byte(passphrase))
|
|
if err == nil {
|
|
// Unlocked.
|
|
return false, nil
|
|
}
|
|
}
|
|
|
|
// Failed to unlock it.
|
|
return false, errors.New("failed to unlock account")
|
|
}
|
|
|
|
// Lock attempts to lock an account.
|
|
func Lock(ctx context.Context, account e2wtypes.Account) error {
|
|
locker, isAccountLocker := account.(e2wtypes.AccountLocker)
|
|
if !isAccountLocker {
|
|
return nil
|
|
}
|
|
return locker.Lock(ctx)
|
|
}
|