-
Notifications
You must be signed in to change notification settings - Fork 9
/
main.go
126 lines (114 loc) · 2.45 KB
/
main.go
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package main
import (
"context"
"fmt"
"log"
"os"
"os/signal"
"github.com/gopasspw/gopass/pkg/ctxutil"
"github.com/gopasspw/gopass/pkg/gopass/api"
"github.com/urfave/cli/v2"
)
const (
name = "gopass-git-credentials"
)
// Version is the released version of gopass.
var version string
func main() {
ctx := context.Background()
// trap Ctrl+C and call cancel on the context.
ctx, cancel := context.WithCancel(ctx)
sigChan := make(chan os.Signal, 1)
signal.Notify(sigChan, os.Interrupt)
defer func() {
signal.Stop(sigChan)
cancel()
}()
go func() {
select {
case <-sigChan:
cancel()
case <-ctx.Done():
}
}()
// reading from stdin?
if info, err := os.Stdin.Stat(); err == nil && info.Mode()&os.ModeCharDevice == 0 {
ctx = ctxutil.WithInteractive(ctx, false)
ctx = ctxutil.WithStdin(ctx, true)
}
gp, err := api.New(ctx)
if err != nil {
fmt.Printf("Failed to initialize gopass API: %s\n", err)
os.Exit(1)
}
gc := &gc{
gp: gp,
}
app := cli.NewApp()
app.Name = name
app.Version = getVersion().String()
app.Usage = `Use "gopass" as git's credential.helper`
app.Description = "" +
"This command allows you to cache your git-credentials with gopass." +
"Activate by using `git config --global credential.helper gopass`"
app.EnableBashCompletion = true
app.Flags = []cli.Flag{
&cli.StringFlag{
Name: "store",
Usage: "First part of path to find the secret.",
},
}
app.Commands = []*cli.Command{
{
Name: "get",
Hidden: true,
Action: gc.Get,
Before: gc.Before,
},
{
Name: "store",
Hidden: true,
Action: gc.Store,
Before: gc.Before,
},
{
Name: "erase",
Hidden: true,
Action: gc.Erase,
Before: gc.Before,
},
{
Name: "configure",
Description: "This command configures git-credential-gopass as git's credential.helper",
Action: gc.Configure,
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "global",
Usage: "Install for current user",
},
&cli.BoolFlag{
Name: "local",
Usage: "Install for current repository only",
},
&cli.BoolFlag{
Name: "system",
Usage: "Install for all users, requires superuser rights",
},
&cli.StringFlag{
Name: "store",
Usage: "First part of path to find the secret.",
},
},
},
{
Name: "version",
Action: func(c *cli.Context) error {
cli.VersionPrinter(c)
return nil
},
},
}
if err := app.RunContext(ctx, os.Args); err != nil {
log.Fatal(err)
}
}