mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7c36a1af03
This moves the engine-api client package to `/docker/docker/client`. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
package credentials
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/cliconfig/configfile"
|
|
"github.com/docker/docker/registry"
|
|
)
|
|
|
|
// fileStore implements a credentials store using
|
|
// the docker configuration file to keep the credentials in plain text.
|
|
type fileStore struct {
|
|
file *configfile.ConfigFile
|
|
}
|
|
|
|
// NewFileStore creates a new file credentials store.
|
|
func NewFileStore(file *configfile.ConfigFile) Store {
|
|
return &fileStore{
|
|
file: file,
|
|
}
|
|
}
|
|
|
|
// Erase removes the given credentials from the file store.
|
|
func (c *fileStore) Erase(serverAddress string) error {
|
|
delete(c.file.AuthConfigs, serverAddress)
|
|
return c.file.Save()
|
|
}
|
|
|
|
// Get retrieves credentials for a specific server from the file store.
|
|
func (c *fileStore) Get(serverAddress string) (types.AuthConfig, error) {
|
|
authConfig, ok := c.file.AuthConfigs[serverAddress]
|
|
if !ok {
|
|
// Maybe they have a legacy config file, we will iterate the keys converting
|
|
// them to the new format and testing
|
|
for r, ac := range c.file.AuthConfigs {
|
|
if serverAddress == registry.ConvertToHostname(r) {
|
|
return ac, nil
|
|
}
|
|
}
|
|
|
|
authConfig = types.AuthConfig{}
|
|
}
|
|
return authConfig, nil
|
|
}
|
|
|
|
func (c *fileStore) GetAll() (map[string]types.AuthConfig, error) {
|
|
return c.file.AuthConfigs, nil
|
|
}
|
|
|
|
// Store saves the given credentials in the file store.
|
|
func (c *fileStore) Store(authConfig types.AuthConfig) error {
|
|
c.file.AuthConfigs[authConfig.ServerAddress] = authConfig
|
|
return c.file.Save()
|
|
}
|