-
Notifications
You must be signed in to change notification settings - Fork 240
/
exec.go
102 lines (81 loc) · 2.06 KB
/
exec.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
package machine
import (
"context"
"fmt"
"github.com/spf13/cobra"
"github.com/superfly/flyctl/api"
"github.com/superfly/flyctl/flaps"
"github.com/superfly/flyctl/internal/app"
"github.com/superfly/flyctl/internal/command"
"github.com/superfly/flyctl/internal/config"
"github.com/superfly/flyctl/internal/flag"
"github.com/superfly/flyctl/internal/render"
"github.com/superfly/flyctl/iostreams"
)
func newMachineExec() *cobra.Command {
const (
short = "Execute a command on a machine"
long = short + "\n"
usage = "exec <machine-id> <command>"
)
cmd := command.New(usage, short, long, runMachineExec,
command.RequireSession,
command.LoadAppNameIfPresent,
)
flag.Add(
cmd,
flag.App(),
flag.AppConfig(),
flag.Int{
Name: "timeout",
Description: "Timeout in seconds",
},
)
cmd.Args = cobra.ExactArgs(2)
return cmd
}
func runMachineExec(ctx context.Context) (err error) {
var (
appName = app.NameFromContext(ctx)
machineID = flag.FirstArg(ctx)
io = iostreams.FromContext(ctx)
config = config.FromContext(ctx)
)
app, err := appFromMachineOrName(ctx, machineID, appName)
if err != nil {
help := newMachineExec().Help()
if help != nil {
fmt.Println(help)
}
fmt.Println()
return err
}
flapsClient, err := flaps.New(ctx, app)
if err != nil {
return fmt.Errorf("could not make flaps client: %w", err)
}
current, err := flapsClient.Get(ctx, machineID)
if err != nil {
return fmt.Errorf("could not retrieve machine %s", machineID)
}
var timeout = flag.GetInt(ctx, "timeout")
in := &api.MachineExecRequest{
Cmd: flag.Args(ctx)[1],
Timeout: timeout,
}
out, err := flapsClient.Exec(ctx, current.ID, in)
if err != nil {
return fmt.Errorf("could not exec command on machine %s: %w", machineID, err)
}
if config.JSONOutput {
return render.JSON(io.Out, out)
}
fmt.Fprintf(io.Out, "Exit code: %d\n", out.ExitCode)
switch {
case out.StdOut != nil:
fmt.Fprintf(io.Out, "Stdout: %s\n", *out.StdOut)
case out.StdErr != nil:
fmt.Fprintf(io.Out, "Stderr: %s\n", *out.StdErr)
}
return
}