aboutsummaryrefslogtreecommitdiffstats
path: root/commands/user_adopt.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-06-28 18:26:29 +0200
committerMichael Muré <batolettre@gmail.com>2020-06-28 18:26:29 +0200
commit26bd1dd11010b4d86cebe2510ad7085a6b316334 (patch)
treef1fe939311c75bd615071e96f3d37822cccd77a7 /commands/user_adopt.go
parentc0dbc149d5c0c3610476ba14a800c9ba803a2c2c (diff)
downloadgit-bug-26bd1dd11010b4d86cebe2510ad7085a6b316334.tar.gz
commands: refactor to avoid globals
Diffstat (limited to 'commands/user_adopt.go')
-rw-r--r--commands/user_adopt.go38
1 files changed, 19 insertions, 19 deletions
diff --git a/commands/user_adopt.go b/commands/user_adopt.go
index 7054f1f7..0eb8b467 100644
--- a/commands/user_adopt.go
+++ b/commands/user_adopt.go
@@ -1,17 +1,30 @@
package commands
import (
- "fmt"
- "os"
-
"github.com/spf13/cobra"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/util/interrupt"
)
-func runUserAdopt(cmd *cobra.Command, args []string) error {
- backend, err := cache.NewRepoCache(repo)
+func newUserAdoptCommand() *cobra.Command {
+ env := newEnv()
+
+ cmd := &cobra.Command{
+ Use: "adopt <user-id>",
+ Short: "Adopt an existing identity as your own.",
+ Args: cobra.ExactArgs(1),
+ PreRunE: loadRepo(env),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ return runUserAdopt(env, args)
+ },
+ }
+
+ return cmd
+}
+
+func runUserAdopt(env *Env, args []string) error {
+ backend, err := cache.NewRepoCache(env.repo)
if err != nil {
return err
}
@@ -30,20 +43,7 @@ func runUserAdopt(cmd *cobra.Command, args []string) error {
return err
}
- _, _ = fmt.Fprintf(os.Stderr, "Your identity is now: %s\n", i.DisplayName())
+ env.out.Printf("Your identity is now: %s\n", i.DisplayName())
return nil
}
-
-var userAdoptCmd = &cobra.Command{
- Use: "adopt <user-id>",
- Short: "Adopt an existing identity as your own.",
- PreRunE: loadRepo,
- RunE: runUserAdopt,
- Args: cobra.ExactArgs(1),
-}
-
-func init() {
- userCmd.AddCommand(userAdoptCmd)
- userAdoptCmd.Flags().SortFlags = false
-}