aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_token.go
blob: cdae066489eed60d159b0195504ca3abd3a1c574 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package commands

import (
	"fmt"
	"strings"

	"github.com/spf13/cobra"

	"github.com/MichaelMure/git-bug/bridge/core"
	"github.com/MichaelMure/git-bug/cache"
	"github.com/MichaelMure/git-bug/util/colors"
	"github.com/MichaelMure/git-bug/util/interrupt"
	"github.com/MichaelMure/git-bug/util/text"
)

var (
	bridgeTokenLocal  bool
	bridgeTokenGlobal bool
)

func runTokenBridge(cmd *cobra.Command, args []string) error {
	backend, err := cache.NewRepoCache(repo)
	if err != nil {
		return err
	}
	defer backend.Close()
	interrupt.RegisterCleaner(backend.Close)

	tokens, err := core.ListTokens(backend)
	if err != nil {
		return err
	}

	for token, global := range tokens {
		// TODO: filter tokens using flags
		getTokenFn := core.GetToken
		if global {
			getTokenFn = core.GetGlobalToken
		}

		token, err := getTokenFn(repo, token)
		if err != nil {
			return err
		}
		printToken(token)
	}

	return nil
}

func printToken(token *core.Token) {
	idFmt := text.LeftPadMaxLine(token.HumanId(), 7, 0)
	valueFmt := text.LeftPadMaxLine(token.Value, 8, 0)
	targetFmt := text.LeftPadMaxLine(token.Target, 8, 0)
	scopesFmt := text.LeftPadMaxLine(strings.Join(token.Scopes, ","), 20, 0)

	fmt.Printf("%s %s %s %s %s\n",
		idFmt,
		valueFmt,
		colors.Magenta(targetFmt),
		colors.Yellow(token.Kind()),
		scopesFmt,
	)
}

var bridgeTokenCmd = &cobra.Command{
	Use:     "token",
	Short:   "List all stored tokens.",
	PreRunE: loadRepo,
	RunE:    runTokenBridge,
	Args:    cobra.NoArgs,
}

func init() {
	bridgeCmd.AddCommand(bridgeTokenCmd)
	bridgeTokenCmd.Flags().BoolVarP(&bridgeTokenLocal, "local", "l", false, "")
	bridgeTokenCmd.Flags().BoolVarP(&bridgeTokenGlobal, "global", "g", false, "")
	bridgeTokenCmd.Flags().SortFlags = false
}