fix: address review comments

This commit is contained in:
James Houlahan
2021-01-04 16:16:48 +01:00
parent 082a803e47
commit e50d1d01da
4 changed files with 7 additions and 6 deletions

View File

@ -31,7 +31,7 @@ const (
)
func init() { // nolint[noinit]
Helpers = make(map[string]helper)
Helpers = make(map[string]helperConstructor)
// MacOS always provides a keychain.
Helpers[MacOSKeychain] = newMacOSHelper

View File

@ -31,7 +31,7 @@ const (
)
func init() { // nolint[noinit]
Helpers = make(map[string]helper)
Helpers = make(map[string]helperConstructor)
if _, err := exec.LookPath("pass"); err == nil {
Helpers[Pass] = newPassHelper

View File

@ -25,7 +25,7 @@ import (
const WindowsCredentials = "windows-credentials"
func init() { // nolint[noinit]
Helpers = make(map[string]helper)
Helpers = make(map[string]helperConstructor)
// Windows always provides a keychain.
Helpers[WindowsCredentials] = newWinCredHelper

View File

@ -28,8 +28,8 @@ import (
"github.com/docker/docker-credential-helpers/credentials"
)
// helper constructs a keychain helper.
type helper func(string) (credentials.Helper, error)
// helperConstructor constructs a keychain helperConstructor.
type helperConstructor func(string) (credentials.Helper, error)
// Version is the keychain data version.
const Version = "k11"
@ -39,7 +39,7 @@ var (
ErrNoKeychain = errors.New("no keychain") // nolint[noglobals]
// Helpers holds all discovered keychain helpers. It is populated in init().
Helpers map[string]helper // nolint[noglobals]
Helpers map[string]helperConstructor // nolint[noglobals]
)
// NewKeychain creates a new native keychain.
@ -109,6 +109,7 @@ func (kc *Keychain) Delete(userID string) (err error) {
return kc.helper.Delete(kc.secretURL(userID))
}
// Get returns the username and secret for the given userID.
func (kc *Keychain) Get(userID string) (string, string, error) {
kc.locker.Lock()
defer kc.locker.Unlock()