mirror of https://github.com/databricks/cli.git
42 lines
880 B
Go
42 lines
880 B
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"github.com/databricks/bricks/libs/auth"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var tokenTimeout time.Duration
|
|
|
|
var tokenCmd = &cobra.Command{
|
|
Use: "token [HOST]",
|
|
Short: "Get authentication token",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if perisistentAuth.Host == "" && len(args) == 1 {
|
|
perisistentAuth.Host = args[0]
|
|
}
|
|
defer perisistentAuth.Close()
|
|
ctx, cancel := context.WithTimeout(cmd.Context(), tokenTimeout)
|
|
defer cancel()
|
|
t, err := perisistentAuth.Load(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
raw, err := json.MarshalIndent(t, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cmd.OutOrStdout().Write(raw)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
authCmd.AddCommand(tokenCmd)
|
|
tokenCmd.Flags().DurationVar(&tokenTimeout, "timeout", auth.DefaultTimeout,
|
|
"Timeout for acquiring a token.")
|
|
}
|