-
Notifications
You must be signed in to change notification settings - Fork 240
/
connect.go
66 lines (49 loc) · 1.23 KB
/
connect.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
package redis
import (
"context"
"fmt"
"os/exec"
"github.com/spf13/cobra"
"github.com/superfly/flyctl/iostreams"
"github.com/superfly/flyctl/proxy"
"github.com/superfly/flyctl/internal/command"
"github.com/superfly/flyctl/internal/flag"
)
func newConnect() (cmd *cobra.Command) {
const (
long = `Connect to a Redis database using redis-cli`
short = long
usage = "connect"
)
cmd = command.New(usage, short, long, runConnect, command.RequireSession)
flag.Add(cmd,
flag.Org(),
flag.Region(),
)
return cmd
}
func runConnect(ctx context.Context) (err error) {
io := iostreams.FromContext(ctx)
localProxyPort := "16379"
params, password, err := getRedisProxyParams(ctx, localProxyPort)
if err != nil {
return err
}
redisCliPath, err := exec.LookPath("redis-cli")
if err != nil {
fmt.Fprintf(io.Out, "Could not find redis-cli in your $PATH. Install it or point your redis-cli at: %s", "someurl")
return
}
err = proxy.Start(ctx, params)
if err != nil {
return err
}
cmd := exec.CommandContext(ctx, redisCliPath, "-p", localProxyPort)
cmd.Env = append(cmd.Env, fmt.Sprintf("REDISCLI_AUTH=%s", password))
cmd.Stdout = io.Out
cmd.Stderr = io.ErrOut
cmd.Stdin = io.In
cmd.Start()
cmd.Wait()
return
}