46 lines
954 B
Go
46 lines
954 B
Go
package cmdutil
|
|
|
|
import (
|
|
"github.com/cli/cli/v2/internal/config"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func DisableAuthCheck(cmd *cobra.Command) {
|
|
if cmd.Annotations == nil {
|
|
cmd.Annotations = map[string]string{}
|
|
}
|
|
|
|
cmd.Annotations["skipAuthCheck"] = "true"
|
|
}
|
|
|
|
func CheckAuth(cfg config.Config) bool {
|
|
// This will check if there are any environment variable
|
|
// authentication tokens set for enterprise hosts.
|
|
// Any non-github.com hostname is fine here
|
|
dummyHostname := "example.com"
|
|
token, _ := cfg.AuthToken(dummyHostname)
|
|
if token != "" {
|
|
return true
|
|
}
|
|
|
|
if len(cfg.Hosts()) > 0 {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func IsAuthCheckEnabled(cmd *cobra.Command) bool {
|
|
switch cmd.Name() {
|
|
case "help", cobra.ShellCompRequestCmd, cobra.ShellCompNoDescRequestCmd:
|
|
return false
|
|
}
|
|
|
|
for c := cmd; c.Parent() != nil; c = c.Parent() {
|
|
if c.Annotations != nil && c.Annotations["skipAuthCheck"] == "true" {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|