|
@@ -20,14 +20,14 @@ import (
|
|
|
)
|
|
|
|
|
|
// ElectAuthServer returns the default registry to use (by asking the daemon)
|
|
|
-func (cli *DockerCli) ElectAuthServer(ctx context.Context) string {
|
|
|
+func ElectAuthServer(ctx context.Context, cli *DockerCli) string {
|
|
|
// The daemon `/info` endpoint informs us of the default registry being
|
|
|
// used. This is essential in cross-platforms environment, where for
|
|
|
// example a Linux client might be interacting with a Windows daemon, hence
|
|
|
// the default registry URL might be Windows specific.
|
|
|
serverAddress := registry.IndexServer
|
|
|
- if info, err := cli.client.Info(ctx); err != nil {
|
|
|
- fmt.Fprintf(cli.out, "Warning: failed to get default registry endpoint from daemon (%v). Using system default: %s\n", err, serverAddress)
|
|
|
+ if info, err := cli.Client().Info(ctx); err != nil {
|
|
|
+ fmt.Fprintf(cli.Out(), "Warning: failed to get default registry endpoint from daemon (%v). Using system default: %s\n", err, serverAddress)
|
|
|
} else {
|
|
|
serverAddress = info.IndexServerAddress
|
|
|
}
|
|
@@ -45,12 +45,12 @@ func EncodeAuthToBase64(authConfig types.AuthConfig) (string, error) {
|
|
|
|
|
|
// RegistryAuthenticationPrivilegedFunc returns a RequestPrivilegeFunc from the specified registry index info
|
|
|
// for the given command.
|
|
|
-func (cli *DockerCli) RegistryAuthenticationPrivilegedFunc(index *registrytypes.IndexInfo, cmdName string) types.RequestPrivilegeFunc {
|
|
|
+func RegistryAuthenticationPrivilegedFunc(cli *DockerCli, index *registrytypes.IndexInfo, cmdName string) types.RequestPrivilegeFunc {
|
|
|
return func() (string, error) {
|
|
|
- fmt.Fprintf(cli.out, "\nPlease login prior to %s:\n", cmdName)
|
|
|
+ fmt.Fprintf(cli.Out(), "\nPlease login prior to %s:\n", cmdName)
|
|
|
indexServer := registry.GetAuthConfigKey(index)
|
|
|
- isDefaultRegistry := indexServer == cli.ElectAuthServer(context.Background())
|
|
|
- authConfig, err := cli.ConfigureAuth("", "", indexServer, isDefaultRegistry)
|
|
|
+ isDefaultRegistry := indexServer == ElectAuthServer(context.Background(), cli)
|
|
|
+ authConfig, err := ConfigureAuth(cli, "", "", indexServer, isDefaultRegistry)
|
|
|
if err != nil {
|
|
|
return "", err
|
|
|
}
|
|
@@ -58,35 +58,21 @@ func (cli *DockerCli) RegistryAuthenticationPrivilegedFunc(index *registrytypes.
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-func (cli *DockerCli) promptWithDefault(prompt string, configDefault string) {
|
|
|
- if configDefault == "" {
|
|
|
- fmt.Fprintf(cli.out, "%s: ", prompt)
|
|
|
- } else {
|
|
|
- fmt.Fprintf(cli.out, "%s (%s): ", prompt, configDefault)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
// ResolveAuthConfig is like registry.ResolveAuthConfig, but if using the
|
|
|
// default index, it uses the default index name for the daemon's platform,
|
|
|
// not the client's platform.
|
|
|
-func (cli *DockerCli) ResolveAuthConfig(ctx context.Context, index *registrytypes.IndexInfo) types.AuthConfig {
|
|
|
+func ResolveAuthConfig(ctx context.Context, cli *DockerCli, index *registrytypes.IndexInfo) types.AuthConfig {
|
|
|
configKey := index.Name
|
|
|
if index.Official {
|
|
|
- configKey = cli.ElectAuthServer(ctx)
|
|
|
+ configKey = ElectAuthServer(ctx, cli)
|
|
|
}
|
|
|
|
|
|
- a, _ := GetCredentials(cli.configFile, configKey)
|
|
|
+ a, _ := cli.CredentialsStore().Get(configKey)
|
|
|
return a
|
|
|
}
|
|
|
|
|
|
-// RetrieveAuthConfigs return all credentials.
|
|
|
-func (cli *DockerCli) RetrieveAuthConfigs() map[string]types.AuthConfig {
|
|
|
- acs, _ := GetAllCredentials(cli.configFile)
|
|
|
- return acs
|
|
|
-}
|
|
|
-
|
|
|
// ConfigureAuth returns an AuthConfig from the specified user, password and server.
|
|
|
-func (cli *DockerCli) ConfigureAuth(flUser, flPassword, serverAddress string, isDefaultRegistry bool) (types.AuthConfig, error) {
|
|
|
+func ConfigureAuth(cli *DockerCli, flUser, flPassword, serverAddress string, isDefaultRegistry bool) (types.AuthConfig, error) {
|
|
|
// On Windows, force the use of the regular OS stdin stream. Fixes #14336/#14210
|
|
|
if runtime.GOOS == "windows" {
|
|
|
cli.in = NewInStream(os.Stdin)
|
|
@@ -96,7 +82,7 @@ func (cli *DockerCli) ConfigureAuth(flUser, flPassword, serverAddress string, is
|
|
|
serverAddress = registry.ConvertToHostname(serverAddress)
|
|
|
}
|
|
|
|
|
|
- authconfig, err := GetCredentials(cli.configFile, serverAddress)
|
|
|
+ authconfig, err := cli.CredentialsStore().Get(serverAddress)
|
|
|
if err != nil {
|
|
|
return authconfig, err
|
|
|
}
|
|
@@ -117,10 +103,10 @@ func (cli *DockerCli) ConfigureAuth(flUser, flPassword, serverAddress string, is
|
|
|
if flUser = strings.TrimSpace(flUser); flUser == "" {
|
|
|
if isDefaultRegistry {
|
|
|
// if this is a default registry (docker hub), then display the following message.
|
|
|
- fmt.Fprintln(cli.out, "Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.")
|
|
|
+ fmt.Fprintln(cli.Out(), "Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.")
|
|
|
}
|
|
|
- cli.promptWithDefault("Username", authconfig.Username)
|
|
|
- flUser = readInput(cli.in, cli.out)
|
|
|
+ promptWithDefault(cli.Out(), "Username", authconfig.Username)
|
|
|
+ flUser = readInput(cli.In(), cli.Out())
|
|
|
flUser = strings.TrimSpace(flUser)
|
|
|
if flUser == "" {
|
|
|
flUser = authconfig.Username
|
|
@@ -134,11 +120,11 @@ func (cli *DockerCli) ConfigureAuth(flUser, flPassword, serverAddress string, is
|
|
|
if err != nil {
|
|
|
return authconfig, err
|
|
|
}
|
|
|
- fmt.Fprintf(cli.out, "Password: ")
|
|
|
+ fmt.Fprintf(cli.Out(), "Password: ")
|
|
|
term.DisableEcho(cli.In().FD(), oldState)
|
|
|
|
|
|
- flPassword = readInput(cli.in, cli.out)
|
|
|
- fmt.Fprint(cli.out, "\n")
|
|
|
+ flPassword = readInput(cli.In(), cli.Out())
|
|
|
+ fmt.Fprint(cli.Out(), "\n")
|
|
|
|
|
|
term.RestoreTerminal(cli.In().FD(), oldState)
|
|
|
if flPassword == "" {
|
|
@@ -154,24 +140,28 @@ func (cli *DockerCli) ConfigureAuth(flUser, flPassword, serverAddress string, is
|
|
|
return authconfig, nil
|
|
|
}
|
|
|
|
|
|
-// resolveAuthConfigFromImage retrieves that AuthConfig using the image string
|
|
|
-func (cli *DockerCli) resolveAuthConfigFromImage(ctx context.Context, image string) (types.AuthConfig, error) {
|
|
|
- registryRef, err := reference.ParseNamed(image)
|
|
|
+func readInput(in io.Reader, out io.Writer) string {
|
|
|
+ reader := bufio.NewReader(in)
|
|
|
+ line, _, err := reader.ReadLine()
|
|
|
if err != nil {
|
|
|
- return types.AuthConfig{}, err
|
|
|
+ fmt.Fprintln(out, err.Error())
|
|
|
+ os.Exit(1)
|
|
|
}
|
|
|
- repoInfo, err := registry.ParseRepositoryInfo(registryRef)
|
|
|
- if err != nil {
|
|
|
- return types.AuthConfig{}, err
|
|
|
+ return string(line)
|
|
|
+}
|
|
|
+
|
|
|
+func promptWithDefault(out io.Writer, prompt string, configDefault string) {
|
|
|
+ if configDefault == "" {
|
|
|
+ fmt.Fprintf(out, "%s: ", prompt)
|
|
|
+ } else {
|
|
|
+ fmt.Fprintf(out, "%s (%s): ", prompt, configDefault)
|
|
|
}
|
|
|
- authConfig := cli.ResolveAuthConfig(ctx, repoInfo.Index)
|
|
|
- return authConfig, nil
|
|
|
}
|
|
|
|
|
|
// RetrieveAuthTokenFromImage retrieves an encoded auth token given a complete image
|
|
|
-func (cli *DockerCli) RetrieveAuthTokenFromImage(ctx context.Context, image string) (string, error) {
|
|
|
+func RetrieveAuthTokenFromImage(ctx context.Context, cli *DockerCli, image string) (string, error) {
|
|
|
// Retrieve encoded auth token from the image reference
|
|
|
- authConfig, err := cli.resolveAuthConfigFromImage(ctx, image)
|
|
|
+ authConfig, err := resolveAuthConfigFromImage(ctx, cli, image)
|
|
|
if err != nil {
|
|
|
return "", err
|
|
|
}
|
|
@@ -182,12 +172,15 @@ func (cli *DockerCli) RetrieveAuthTokenFromImage(ctx context.Context, image stri
|
|
|
return encodedAuth, nil
|
|
|
}
|
|
|
|
|
|
-func readInput(in io.Reader, out io.Writer) string {
|
|
|
- reader := bufio.NewReader(in)
|
|
|
- line, _, err := reader.ReadLine()
|
|
|
+// resolveAuthConfigFromImage retrieves that AuthConfig using the image string
|
|
|
+func resolveAuthConfigFromImage(ctx context.Context, cli *DockerCli, image string) (types.AuthConfig, error) {
|
|
|
+ registryRef, err := reference.ParseNamed(image)
|
|
|
if err != nil {
|
|
|
- fmt.Fprintln(out, err.Error())
|
|
|
- os.Exit(1)
|
|
|
+ return types.AuthConfig{}, err
|
|
|
}
|
|
|
- return string(line)
|
|
|
+ repoInfo, err := registry.ParseRepositoryInfo(registryRef)
|
|
|
+ if err != nil {
|
|
|
+ return types.AuthConfig{}, err
|
|
|
+ }
|
|
|
+ return ResolveAuthConfig(ctx, cli, repoInfo.Index), nil
|
|
|
}
|