mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/credentials/insecure"
|
|
|
|
"github.com/argoproj/argo-cd/v3/common"
|
|
"github.com/argoproj/argo-cd/v3/util/askpass"
|
|
"github.com/argoproj/argo-cd/v3/util/errors"
|
|
grpc_util "github.com/argoproj/argo-cd/v3/util/grpc"
|
|
utilio "github.com/argoproj/argo-cd/v3/util/io"
|
|
)
|
|
|
|
func NewCommand() *cobra.Command {
|
|
command := cobra.Command{
|
|
Use: common.CommandGitAskPass,
|
|
Short: "Argo CD git credential helper",
|
|
DisableAutoGenTag: true,
|
|
Run: func(c *cobra.Command, _ []string) {
|
|
ctx := c.Context()
|
|
|
|
if len(os.Args) != 2 {
|
|
errors.CheckError(fmt.Errorf("expected 1 argument, got %d", len(os.Args)-1))
|
|
}
|
|
nonce := os.Getenv(askpass.ASKPASS_NONCE_ENV)
|
|
if nonce == "" {
|
|
errors.CheckError(fmt.Errorf("%s is not set", askpass.ASKPASS_NONCE_ENV))
|
|
}
|
|
conn, err := grpc_util.BlockingNewClient(ctx, "unix", askpass.SocketPath, nil, grpc.WithTransportCredentials(insecure.NewCredentials()))
|
|
errors.CheckError(err)
|
|
defer utilio.Close(conn)
|
|
client := askpass.NewAskPassServiceClient(conn)
|
|
|
|
creds, err := client.GetCredentials(ctx, &askpass.CredentialsRequest{Nonce: nonce})
|
|
errors.CheckError(err)
|
|
switch {
|
|
case strings.HasPrefix(os.Args[1], "Username"):
|
|
fmt.Println(creds.Username)
|
|
case strings.HasPrefix(os.Args[1], "Password"):
|
|
fmt.Println(creds.Password)
|
|
default:
|
|
errors.CheckError(fmt.Errorf("unknown credential type '%s'", os.Args[1]))
|
|
}
|
|
},
|
|
}
|
|
|
|
return &command
|
|
}
|