Skip to content

Commit

Permalink
feat: --bearer-token option to set Authorization headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
alanconway committed Jun 14, 2024
1 parent 0601c53 commit 8d12103
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions cmd/korrel8rcli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"os"

rtclient "github.com/go-openapi/runtime/client"
httptransport "github.com/go-openapi/runtime/client"
"github.com/korrel8r/client/pkg/build"
"github.com/korrel8r/client/pkg/swagger/client"
"github.com/spf13/cobra"
Expand All @@ -25,11 +25,19 @@ var (
}

// Global Flags
output = EnumFlag("yaml", "json-pretty", "json")
korrel8rURL = rootCmd.PersistentFlags().StringP("url", "u", "", "URL of remote korrel8r service (you can also set the KORREL8R_URL environment variable)")
insecure = rootCmd.PersistentFlags().BoolP("insecure", "k", false, "Insecure connection, skip TLS verification.")
output = EnumFlag("yaml", "json-pretty", "json")
korrel8rURL = rootCmd.PersistentFlags().StringP("url", "u", os.Getenv("KORREL8RCLI_URL"), "URL of remote korrel8r service, environment KORREL8RCLI_URL")
insecure = rootCmd.PersistentFlags().BoolP("insecure", "k", false, "Insecure connection, skip TLS verification.")
bearerTokenFlag = rootCmd.PersistentFlags().String("bearer-token", "", "Bearer token for Authorization, environment KORREL8RCLI_BEARER_TOKEN")
)

func bearerToken() string {
if *bearerTokenFlag != "" {
return *bearerTokenFlag
}
return os.Getenv("KORREL8RCLI_BEARER_TOKEN")
}

func main() {
rootCmd.PersistentFlags().VarP(output, "output", "o", "Output format")
log.SetPrefix(filepath.Base(os.Args[0]) + ": ")
Expand All @@ -48,9 +56,6 @@ func init() {
}

func newClient() *client.RESTAPI {
if *korrel8rURL == "" {
*korrel8rURL = os.Getenv("KORREL8R_URL")
}
if *korrel8rURL == "" {
check(errors.New("Either command line flag --url or environment variable KORREL8R_URL must be set. "))
}
Expand All @@ -59,15 +64,18 @@ func newClient() *client.RESTAPI {
if u.Path == "" || u.Path == "/" {
u.Path = client.DefaultBasePath
}
var rt *rtclient.Runtime
var transport *httptransport.Runtime
if *insecure {
tlsClient, err := rtclient.TLSClient(rtclient.TLSClientOptions{InsecureSkipVerify: true})
tlsClient, err := httptransport.TLSClient(httptransport.TLSClientOptions{InsecureSkipVerify: *insecure})
check(err)
rt = rtclient.NewWithClient(u.Host, u.Path, []string{u.Scheme}, tlsClient)
transport = httptransport.NewWithClient(u.Host, u.Path, []string{u.Scheme}, tlsClient)
} else {
rt = rtclient.New(u.Host, u.Path, []string{u.Scheme})
transport = httptransport.New(u.Host, u.Path, []string{u.Scheme})
}
if bearerToken() != "" {
transport.DefaultAuthentication = httptransport.BearerToken(bearerToken())
}
return client.New(rt, nil)
return client.New(transport, nil)
}

func check(err error) {
Expand Down

0 comments on commit 8d12103

Please sign in to comment.