diff options
author | Michael Muré <batolettre@gmail.com> | 2019-11-10 17:32:14 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-11-10 17:33:44 +0100 |
commit | e0b15ee7644c20533156850e0be5a07597967450 (patch) | |
tree | a7ebd32de0b94b63ebe825c829de963470d03cab /commands/bridge_auth_show.go | |
parent | f8cf3fea035d7f0ad0287166c3a5016777acf5ad (diff) | |
download | git-bug-e0b15ee7644c20533156850e0be5a07597967450.tar.gz |
cli: rename "token" into "auth"
Diffstat (limited to 'commands/bridge_auth_show.go')
-rw-r--r-- | commands/bridge_auth_show.go | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/commands/bridge_auth_show.go b/commands/bridge_auth_show.go new file mode 100644 index 00000000..94141b93 --- /dev/null +++ b/commands/bridge_auth_show.go @@ -0,0 +1,37 @@ +package commands + +import ( + "fmt" + "time" + + "github.com/spf13/cobra" + + "github.com/MichaelMure/git-bug/bridge/core" +) + +func runBridgeAuthShow(cmd *cobra.Command, args []string) error { + token, err := core.LoadTokenPrefix(repo, args[0]) + if err != nil { + return err + } + + fmt.Printf("Id: %s\n", token.ID()) + fmt.Printf("Target: %s\n", token.Target) + fmt.Printf("Type: token\n") + fmt.Printf("Value: %s\n", token.Value) + fmt.Printf("Creation: %s\n", token.CreateTime.Format(time.RFC822)) + + return nil +} + +var bridgeAuthShowCmd = &cobra.Command{ + Use: "show", + Short: "Display an authentication credential.", + PreRunE: loadRepo, + RunE: runBridgeAuthShow, + Args: cobra.ExactArgs(1), +} + +func init() { + bridgeAuthCmd.AddCommand(bridgeAuthShowCmd) +} |