mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
864d3ed335
- init() only the importer or exporter as required - assign a "default user" user Id to credentials at creation if no user has been set - "bridge auth": also display the user - "bridge auth show": adapt to a potential "default user" user Id - "bridge configure": allow to run without a user set - "bridge pull": allow to run without a user set - "user adopt": replace "default user" by the actual user id when run
81 lines
1.6 KiB
Go
81 lines
1.6 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
text "github.com/MichaelMure/go-term-text"
|
|
|
|
"github.com/MichaelMure/git-bug/bridge/core/auth"
|
|
"github.com/MichaelMure/git-bug/cache"
|
|
"github.com/MichaelMure/git-bug/util/colors"
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
|
)
|
|
|
|
func runBridgeAuth(cmd *cobra.Command, args []string) error {
|
|
backend, err := cache.NewRepoCache(repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer backend.Close()
|
|
interrupt.RegisterCleaner(backend.Close)
|
|
|
|
creds, err := auth.List(backend)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
defaultUser, _ := backend.GetUserIdentity()
|
|
|
|
for _, cred := range creds {
|
|
targetFmt := text.LeftPadMaxLine(cred.Target(), 10, 0)
|
|
|
|
var value string
|
|
switch cred := cred.(type) {
|
|
case *auth.Token:
|
|
value = cred.Value
|
|
}
|
|
|
|
var userFmt string
|
|
|
|
switch cred.UserId() {
|
|
case auth.DefaultUserId:
|
|
userFmt = colors.Red("default user")
|
|
default:
|
|
user, err := backend.ResolveIdentity(cred.UserId())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
userFmt = user.DisplayName()
|
|
|
|
if cred.UserId() == defaultUser.Id() {
|
|
userFmt = colors.Red(userFmt)
|
|
}
|
|
}
|
|
|
|
fmt.Printf("%s %s %s %s %s\n",
|
|
colors.Cyan(cred.ID().Human()),
|
|
colors.Yellow(targetFmt),
|
|
colors.Magenta(cred.Kind()),
|
|
userFmt,
|
|
value,
|
|
)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
var bridgeAuthCmd = &cobra.Command{
|
|
Use: "auth",
|
|
Short: "List all known bridge authentication credentials.",
|
|
PreRunE: loadRepo,
|
|
RunE: runBridgeAuth,
|
|
Args: cobra.NoArgs,
|
|
}
|
|
|
|
func init() {
|
|
bridgeCmd.AddCommand(bridgeAuthCmd)
|
|
bridgeAuthCmd.Flags().SortFlags = false
|
|
}
|