-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: shell completion improvements #831
base: main
Are you sure you want to change the base?
Changes from all commits
e53e42b
3b689f7
d7880e2
c1d66c9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,31 +45,41 @@ type VerifyOptions struct { | |
|
||
var _ Interface = (*VerifyOptions)(nil) | ||
|
||
var CommonAttestationFilenameExtensions = []string{"sigstore", "intoto", "intoto.jsonl", "json"} | ||
|
||
// AddFlags implements Interface. | ||
func (o *VerifyOptions) AddFlags(cmd *cobra.Command) { | ||
/* Builder options */ | ||
cmd.Flags().Var(&o.BuildWorkflowInputs, "build-workflow-input", | ||
"[optional] a workflow input provided by a user at trigger time in the format 'key=value'. (Only for 'workflow_dispatch' events on GitHub Actions).") | ||
cmd.RegisterFlagCompletionFunc("build-workflow-input", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.BuilderID, "builder-id", "", "[optional] the unique builder ID who created the provenance") | ||
cmd.RegisterFlagCompletionFunc("builder-id", cobra.NoFileCompletions) | ||
|
||
/* Source options */ | ||
cmd.Flags().StringVar(&o.SourceURI, "source-uri", "", | ||
"expected source repository that should have produced the binary, e.g. github.com/some/repo") | ||
cmd.RegisterFlagCompletionFunc("source-uri", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.SourceBranch, "source-branch", "", "[optional] expected branch the binary was compiled from") | ||
cmd.RegisterFlagCompletionFunc("source-branch", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.SourceTag, "source-tag", "", "[optional] expected tag the binary was compiled from") | ||
cmd.RegisterFlagCompletionFunc("source-tag", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.SourceVersionTag, "source-versioned-tag", "", | ||
"[optional] expected version the binary was compiled from. Uses semantic version to match the tag") | ||
cmd.RegisterFlagCompletionFunc("source-versioned-tag", cobra.NoFileCompletions) | ||
|
||
/* Other options */ | ||
cmd.Flags().StringVar(&o.ProvenancePath, "provenance-path", "", | ||
"path to a provenance file") | ||
cmd.MarkFlagFilename("provenance-path", CommonAttestationFilenameExtensions...) | ||
|
||
cmd.Flags().StringVar(&o.ProvenanceRepository, "provenance-repository", "", | ||
"image repository for provenance with format: <registry>/<repository>") | ||
cmd.RegisterFlagCompletionFunc("provenance-repository", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().BoolVar(&o.PrintProvenance, "print-provenance", false, | ||
"[optional] print the verified provenance to stdout") | ||
|
@@ -94,28 +104,37 @@ func (o *VerifyNpmOptions) AddFlags(cmd *cobra.Command) { | |
/* Builder options */ | ||
cmd.Flags().Var(&o.BuildWorkflowInputs, "build-workflow-input", | ||
"[optional] a workflow input provided by a user at trigger time in the format 'key=value'. (Only for 'workflow_dispatch' events on GitHub Actions).") | ||
cmd.RegisterFlagCompletionFunc("build-workflow-input", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.BuilderID, "builder-id", "", "[optional] the unique builder ID who created the provenance") | ||
cmd.RegisterFlagCompletionFunc("builder-id", cobra.NoFileCompletions) | ||
|
||
/* Source options */ | ||
cmd.Flags().StringVar(&o.SourceURI, "source-uri", "", | ||
"expected source repository that should have produced the binary, e.g. github.com/some/repo") | ||
cmd.RegisterFlagCompletionFunc("source-uri", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.SourceBranch, "source-branch", "", "[optional] expected branch the binary was compiled from") | ||
cmd.RegisterFlagCompletionFunc("source-branch", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.SourceTag, "source-tag", "", "[optional] expected tag the binary was compiled from") | ||
cmd.RegisterFlagCompletionFunc("source-tag", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.SourceVersionTag, "source-versioned-tag", "", | ||
"[optional] expected version the binary was compiled from. Uses semantic version to match the tag") | ||
cmd.RegisterFlagCompletionFunc("source-versioned-tag", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.AttestationsPath, "attestations-path", "", | ||
"path to a file containing the attestations") | ||
cmd.MarkFlagFilename("attestations-path", CommonAttestationFilenameExtensions...) | ||
|
||
cmd.Flags().StringVar(&o.PackageName, "package-name", "", | ||
"the package name") | ||
cmd.RegisterFlagCompletionFunc("package-name", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.PackageVersion, "package-version", "", | ||
"the package version") | ||
cmd.RegisterFlagCompletionFunc("package-version", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().BoolVar(&o.PrintProvenance, "print-provenance", false, | ||
"[optional] print the verified provenance to stdout") | ||
|
@@ -145,27 +164,34 @@ var _ Interface = (*VerifyVSAOptions)(nil) | |
func (o *VerifyVSAOptions) AddFlags(cmd *cobra.Command) { | ||
cmd.Flags().StringArrayVar(&o.SubjectDigests, "subject-digest", []string{}, | ||
"the digests to be verified. Pass multiple digests by repeating the flag. e.g. --subject-digest <digest type>:<digest value> --subject-digest <digest type>:<digest value>") | ||
cmd.RegisterFlagCompletionFunc("subject-digest", cobra.NoFileCompletions) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we don't add this line, would the behavior be the same? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No; without it, all filenames in the current dir will be suggested as arguments for the flag. |
||
|
||
cmd.Flags().StringVar(&o.AttestationPath, "attestation-path", "", | ||
"path to a file containing the attestation") | ||
cmd.MarkFlagFilename("attestation-path", CommonAttestationFilenameExtensions...) | ||
|
||
cmd.Flags().StringVar(&o.VerifierID, "verifier-id", "", | ||
"the unique verifier ID who created the attestation") | ||
cmd.RegisterFlagCompletionFunc("verfier-id", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringVar(&o.ResourceURI, "resource-uri", "", | ||
"the resource URI to be verified") | ||
cmd.RegisterFlagCompletionFunc("resource-uri", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().StringArrayVar(&o.VerifiedLevels, "verified-level", []string{}, | ||
"[optional] the levels of verification to be performed. Pass multiple digests by repeating the flag, e.g., --verified-level SLSA_BUILD_LEVEL_2 --verified-level FEDRAMP_LOW'") | ||
cmd.RegisterFlagCompletionFunc("verified-level", cobra.NoFileCompletions) | ||
|
||
cmd.Flags().BoolVar(&o.PrintAttestation, "print-attestation", false, | ||
"[optional] print the contents of attestation to stdout") | ||
|
||
cmd.Flags().StringVar(&o.PublicKeyPath, "public-key-path", "", | ||
"path to a public key file") | ||
cmd.MarkFlagFilename("public-key-path", "pem") | ||
|
||
cmd.Flags().StringVar(&o.PublicKeyID, "public-key-id", "", | ||
"[optional] the ID of the public key, defaults to the SHA256 digest of the base64-encoded public key") | ||
cmd.RegisterFlagCompletionFunc("public-key-id", cobra.NoFileCompletions) | ||
|
||
cmd.MarkFlagRequired("subject-digests") | ||
cmd.MarkFlagRequired("attestation-path") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This works like a shortcut to say that all of options shouldn't offer completion?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It means that if we already have one or more positional argument, do not offer any more as completions, as
verify-npm-package
takes only one positional argument.