mirror of https://github.com/docker/cli.git
36 lines
801 B
Go
36 lines
801 B
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/moby/buildkit/session"
|
|
"github.com/moby/buildkit/util/grpcerrors"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
func CredentialsFunc(sm *session.Manager, g session.Group) func(string) (string, string, error) {
|
|
return func(host string) (string, string, error) {
|
|
var user, secret string
|
|
err := sm.Any(context.TODO(), g, func(ctx context.Context, _ string, c session.Caller) error {
|
|
client := NewAuthClient(c.Conn())
|
|
|
|
resp, err := client.Credentials(ctx, &CredentialsRequest{
|
|
Host: host,
|
|
})
|
|
if err != nil {
|
|
if grpcerrors.Code(err) == codes.Unimplemented {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
user = resp.Username
|
|
secret = resp.Secret
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return "", "", err
|
|
}
|
|
return user, secret, nil
|
|
}
|
|
}
|