git-bug/commands/user.go

111 lines
2.8 KiB
Go
Raw Normal View History

package commands
import (
"errors"
"fmt"
"strings"
"github.com/spf13/cobra"
"github.com/MichaelMure/git-bug/cache"
)
2020-06-28 19:26:29 +03:00
type userOptions struct {
fields string
2020-06-28 19:26:29 +03:00
}
func newUserCommand() *cobra.Command {
env := newEnv()
options := userOptions{}
cmd := &cobra.Command{
Use: "user [USER-ID]",
Short: "Display or change the user identity.",
PreRunE: loadBackendEnsureUser(env),
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
2020-06-28 19:26:29 +03:00
return runUser(env, options, args)
}),
ValidArgsFunction: completeUser(env),
2020-06-28 19:26:29 +03:00
}
cmd.AddCommand(newUserAdoptCommand())
cmd.AddCommand(newUserCreateCommand())
cmd.AddCommand(newUserLsCommand())
flags := cmd.Flags()
flags.SortFlags = false
fields := []string{"email", "humanId", "id", "lastModification", "lastModificationLamports", "login", "metadata", "name"}
flags.StringVarP(&options.fields, "field", "f", "",
"Select field to display. Valid values are ["+strings.Join(fields, ",")+"]")
cmd.RegisterFlagCompletionFunc("field", completeFrom(fields))
2020-06-28 19:26:29 +03:00
return cmd
}
func runUser(env *Env, opts userOptions, args []string) error {
if len(args) > 1 {
return errors.New("only one identity can be displayed at a time")
}
var id *cache.IdentityCache
var err error
if len(args) == 1 {
id, err = env.backend.ResolveIdentityPrefix(args[0])
} else {
id, err = env.backend.GetUserIdentity()
}
if err != nil {
return err
}
if opts.fields != "" {
switch opts.fields {
case "email":
2020-06-28 19:26:29 +03:00
env.out.Printf("%s\n", id.Email())
case "login":
2020-06-28 19:26:29 +03:00
env.out.Printf("%s\n", id.Login())
case "humanId":
2020-06-28 19:26:29 +03:00
env.out.Printf("%s\n", id.Id().Human())
case "id":
2020-06-28 19:26:29 +03:00
env.out.Printf("%s\n", id.Id())
case "lastModification":
2020-06-28 19:26:29 +03:00
env.out.Printf("%s\n", id.LastModification().
Time().Format("Mon Jan 2 15:04:05 2006 +0200"))
case "lastModificationLamport":
2020-11-08 21:18:44 +03:00
for name, t := range id.LastModificationLamports() {
env.out.Printf("%s\n%d\n", name, t)
}
case "metadata":
for key, value := range id.ImmutableMetadata() {
2020-06-28 19:26:29 +03:00
env.out.Printf("%s\n%s\n", key, value)
}
case "name":
2020-06-28 19:26:29 +03:00
env.out.Printf("%s\n", id.Name())
default:
return fmt.Errorf("\nUnsupported field: %s\n", opts.fields)
}
return nil
}
2020-06-28 19:26:29 +03:00
env.out.Printf("Id: %s\n", id.Id())
env.out.Printf("Name: %s\n", id.Name())
env.out.Printf("Email: %s\n", id.Email())
env.out.Printf("Login: %s\n", id.Login())
2020-11-08 21:18:44 +03:00
env.out.Printf("Last modification: %s\n", id.LastModification().Time().Format("Mon Jan 2 15:04:05 2006 +0200"))
env.out.Printf("Last moditication (lamport):\n")
for name, t := range id.LastModificationLamports() {
env.out.Printf("\t%s: %d", name, t)
}
2020-06-28 19:26:29 +03:00
env.out.Println("Metadata:")
2019-02-27 00:27:30 +03:00
for key, value := range id.ImmutableMetadata() {
2020-06-28 19:26:29 +03:00
env.out.Printf(" %s --> %s\n", key, value)
2019-02-27 00:27:30 +03:00
}
2020-06-28 19:26:29 +03:00
// env.out.Printf("Protected: %v\n", id.IsProtected())
return nil
}