aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_token_show.go
blob: 2d2e824de538e531be7f19760b65ab218a95ef1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package commands

import (
	"fmt"
	"time"

	"github.com/spf13/cobra"

	"github.com/MichaelMure/git-bug/bridge/core"
)

func runBridgeTokenShow(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("Value: %s\n", token.Value)
	fmt.Printf("Target: %s\n", token.Target)
	fmt.Printf("Creation: %s\n", token.CreateTime.Format(time.RFC822))

	return nil
}

var bridgeTokenShowCmd = &cobra.Command{
	Use:     "show",
	Short:   "Display a token.",
	PreRunE: loadRepo,
	RunE:    runBridgeTokenShow,
	Args:    cobra.ExactArgs(1),
}

func init() {
	bridgeTokenCmd.AddCommand(bridgeTokenShowCmd)
}