mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
bc6ba02bd8
Complete bug IDs, bridges, users, labels where appropriate. This works in bash and fish. ZSH is not yet supported by Cobra. In fish, descriptions (the part of a completion after the "\t") are shown as completion label, and can be searched with Ctrl+S. Reproduce with fish -C 'source misc/fish_completion/git-bug' git bug select ^I (tested with fish version 3.3.1) Also works with bash, but only for "git-bug" (with the dash) bash --rcfile <(echo source misc/bash_completion/git-bug) git-bug select ^I Closes #493
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/MichaelMure/git-bug/bridge/core/auth"
|
|
)
|
|
|
|
func newBridgeAuthShow() *cobra.Command {
|
|
env := newEnv()
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "show",
|
|
Short: "Display an authentication credential.",
|
|
PreRunE: loadBackend(env),
|
|
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
|
|
return runBridgeAuthShow(env, args)
|
|
}),
|
|
Args: cobra.ExactArgs(1),
|
|
ValidArgsFunction: completeBridgeAuth(env),
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runBridgeAuthShow(env *Env, args []string) error {
|
|
cred, err := auth.LoadWithPrefix(env.repo, args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
env.out.Printf("Id: %s\n", cred.ID())
|
|
env.out.Printf("Target: %s\n", cred.Target())
|
|
env.out.Printf("Kind: %s\n", cred.Kind())
|
|
env.out.Printf("Creation: %s\n", cred.CreateTime().Format(time.RFC822))
|
|
|
|
switch cred := cred.(type) {
|
|
case *auth.Token:
|
|
env.out.Printf("Value: %s\n", cred.Value)
|
|
}
|
|
|
|
env.out.Println("Metadata:")
|
|
|
|
meta := make([]string, 0, len(cred.Metadata()))
|
|
for key, value := range cred.Metadata() {
|
|
meta = append(meta, fmt.Sprintf(" %s --> %s\n", key, value))
|
|
}
|
|
sort.Strings(meta)
|
|
|
|
env.out.Print(strings.Join(meta, ""))
|
|
|
|
return nil
|
|
}
|