aboutsummaryrefslogtreecommitdiffstats
path: root/commands/user_create.go
blob: 037d79b256c0c39632fbd733d1b6d48274bb5226 (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
80
81
package commands

import (
	"fmt"
	"os"

	"github.com/MichaelMure/git-bug/cache"
	"github.com/MichaelMure/git-bug/input"
	"github.com/MichaelMure/git-bug/util/interrupt"
	"github.com/spf13/cobra"
)

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

	_, _ = fmt.Fprintf(os.Stderr, "Before creating a new identity, please be aware that "+
		"you can also use an already existing one using \"git bug user adopt\". As an example, "+
		"you can do that if your identity has already been created by an importer.\n\n")

	preName, err := backend.GetUserName()
	if err != nil {
		return err
	}

	name, err := input.PromptValueRequired("Name", preName)
	if err != nil {
		return err
	}

	preEmail, err := backend.GetUserEmail()
	if err != nil {
		return err
	}

	email, err := input.PromptValueRequired("Email", preEmail)
	if err != nil {
		return err
	}

	login, err := input.PromptValue("Avatar URL", "")
	if err != nil {
		return err
	}

	id, err := backend.NewIdentityRaw(name, email, "", login, nil)
	if err != nil {
		return err
	}

	err = id.CommitAsNeeded()
	if err != nil {
		return err
	}

	err = backend.SetUserIdentity(id)
	if err != nil {
		return err
	}

	_, _ = fmt.Fprintln(os.Stderr)
	fmt.Println(id.Id())

	return nil
}

var userCreateCmd = &cobra.Command{
	Use:     "create",
	Short:   "Create a new identity.",
	PreRunE: loadRepo,
	RunE:    runUserCreate,
}

func init() {
	userCmd.AddCommand(userCreateCmd)
	userCreateCmd.Flags().SortFlags = false
}