Remove temporary --debug-auth-code-exchange flag for OIDC client CLI.
Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
parent
ff545db869
commit
a13d7ec5a1
@ -11,7 +11,6 @@ import (
|
|||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"golang.org/x/oauth2"
|
"golang.org/x/oauth2"
|
||||||
|
|
||||||
"go.pinniped.dev/internal/here"
|
|
||||||
"go.pinniped.dev/internal/oidc/pkce"
|
"go.pinniped.dev/internal/oidc/pkce"
|
||||||
"go.pinniped.dev/internal/oidc/state"
|
"go.pinniped.dev/internal/oidc/state"
|
||||||
)
|
)
|
||||||
@ -33,7 +32,6 @@ type oidcLoginParams struct {
|
|||||||
scopes []string
|
scopes []string
|
||||||
skipBrowser bool
|
skipBrowser bool
|
||||||
usePKCE bool
|
usePKCE bool
|
||||||
debugAuthCode bool
|
|
||||||
|
|
||||||
// These parameters capture dependencies that we want to mock during testing.
|
// These parameters capture dependencies that we want to mock during testing.
|
||||||
generateState func() (state.State, error)
|
generateState func() (state.State, error)
|
||||||
@ -56,11 +54,6 @@ func (o *oidcLoginParams) cmd() *cobra.Command {
|
|||||||
cmd.Flags().BoolVar(&o.skipBrowser, "skip-browser", false, "Skip opening the browser (just print the URL).")
|
cmd.Flags().BoolVar(&o.skipBrowser, "skip-browser", false, "Skip opening the browser (just print the URL).")
|
||||||
cmd.Flags().BoolVar(&o.usePKCE, "use-pkce", true, "Use Proof Key for Code Exchange (RFC 7636) during login.")
|
cmd.Flags().BoolVar(&o.usePKCE, "use-pkce", true, "Use Proof Key for Code Exchange (RFC 7636) during login.")
|
||||||
mustMarkRequired(&cmd, "issuer", "client-id")
|
mustMarkRequired(&cmd, "issuer", "client-id")
|
||||||
|
|
||||||
// TODO: temporary
|
|
||||||
cmd.Flags().BoolVar(&o.debugAuthCode, "debug-auth-code-exchange", true, "Debug the authorization code exchange (temporary).")
|
|
||||||
_ = cmd.Flags().MarkHidden("debug-auth-code-exchange")
|
|
||||||
|
|
||||||
return &cmd
|
return &cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,20 +100,5 @@ func (o *oidcLoginParams) runE(cmd *cobra.Command, args []string) error {
|
|||||||
return fmt.Errorf("could not open browser (run again with --skip-browser?): %w", err)
|
return fmt.Errorf("could not open browser (run again with --skip-browser?): %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: this temporary so we can complete the auth code exchange manually
|
|
||||||
|
|
||||||
if o.debugAuthCode {
|
|
||||||
cmd.PrintErr(here.Docf(`
|
|
||||||
DEBUG INFO:
|
|
||||||
Token URL: %s
|
|
||||||
State: %s
|
|
||||||
PKCE: %s
|
|
||||||
`,
|
|
||||||
cfg.Endpoint.TokenURL,
|
|
||||||
stateParam,
|
|
||||||
pkceCode.Verifier(),
|
|
||||||
))
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user