-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_scp.go
150 lines (119 loc) · 4.31 KB
/
instance_scp.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package cmd
import (
"errors"
"fmt"
"os"
"os/exec"
"strings"
"github.com/kballard/go-shellquote"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
"github.com/exoscale/cli/pkg/ssh"
exoapi "github.com/exoscale/egoscale/v2/api"
)
type instanceSCPCmd struct {
cliCommandSettings `cli-cmd:"-"`
scpInfo struct {
ipAddress string
keyFile string
} `cli-cmd:"-"`
_ bool `cli-cmd:"scp"`
Instance string `cli-arg:"#" cli-usage:"INSTANCE-NAME|ID"`
Source string `cli-arg:"#"`
Target string `cli-arg:"#"`
IPv6 bool `cli-flag:"ipv6" cli-short:"6" cli-help:"connect to the instance via its IPv6 address"`
Login string `cli-short:"l" cli-help:"SCP username to use for logging in (default: instance template default username)"`
PrintCmd bool `cli-flag:"print-command" cli-usage:"print the SCP command that would be executed instead of executing it"`
Recursive bool `cli-short:"r" cli-usage:"recursively copy entire directories"`
ReplStr string `cli-flag:"replace-str" cli-short:"i" cli-usage:"string to replace with the actual Compute instance information (i.e. username@IP-ADDRESS)"`
SCPOpts string `cli-flag:"scp-options" cli-short:"o" cli-usage:"additional options to pass to the scp(1) command"`
Zone string `cli-short:"z" cli-usage:"instance zone"`
}
func (c *instanceSCPCmd) buildSCPCommand() []string {
cmd := []string{"scp"}
if _, err := os.Stat(c.scpInfo.keyFile); err == nil {
cmd = append(cmd, "-i", c.scpInfo.keyFile)
}
if c.Recursive {
cmd = append(cmd, "-r")
}
if c.SCPOpts != "" {
opts, err := shellquote.Split(c.SCPOpts)
if err == nil {
cmd = append(cmd, opts...)
}
}
// Parse arguments to find the replacement string to interpolate with <[username@]target instance IP address>
for _, arg := range []string{c.Source, c.Target} {
if strings.Contains(arg, c.ReplStr) {
remote := c.scpInfo.ipAddress
if c.Login != "" {
remote = fmt.Sprintf("%s@%s", c.Login, remote)
}
arg = strings.Replace(arg, c.ReplStr, remote, 1)
}
cmd = append(cmd, arg)
}
return cmd
}
func (c *instanceSCPCmd) cmdAliases() []string { return nil }
func (c *instanceSCPCmd) cmdShort() string { return "SCP files to/from a Compute instance" }
func (c *instanceSCPCmd) cmdLong() string {
return `This command executes the scp(1) command to send or receive files to/from the
specified Compute instance. TARGET (or SOURCE, depending on the direction
of the transfer) must contain the "{}" marker which will be interpolated at
run time with the actual Compute instance IP address, similar to xargs(1).
This marker can be replaced by another string via the --replace-str|-i flag.
Example:
exo compute instance scp my-instance hello-world.txt {}:
exo compute instance scp -i%% my-instance %%:/etc/motd .
`
}
func (c *instanceSCPCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instanceSCPCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, c.Zone))
instance, err := globalstate.EgoscaleClient.FindInstance(ctx, c.Zone, c.Instance)
if err != nil {
if errors.Is(err, exoapi.ErrNotFound) {
return fmt.Errorf("resource not found in zone %q", c.Zone)
}
return err
}
if c.Login == "" {
instanceTemplate, err := globalstate.EgoscaleClient.GetTemplate(ctx, c.Zone, *instance.TemplateID)
if err != nil {
return fmt.Errorf("error retrieving instance template: %w", err)
}
if instanceTemplate.DefaultUser != nil {
c.Login = *instanceTemplate.DefaultUser
}
}
c.scpInfo.keyFile = ssh.GetInstanceSSHKeyPath(*instance.ID)
c.scpInfo.ipAddress = instance.PublicIPAddress.String()
if c.IPv6 {
if instance.IPv6Address == nil {
return fmt.Errorf("instance %q has no IPv6 address", c.Instance)
}
c.scpInfo.ipAddress = instance.IPv6Address.String()
}
scpCmd := c.buildSCPCommand()
if c.PrintCmd {
fmt.Println(strings.Join(scpCmd, " "))
return nil
}
cmd := exec.Command("scp", scpCmd[1:]...)
cmd.Stdin = os.Stdin
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
return cmd.Run()
}
func init() {
cobra.CheckErr(registerCLICommand(instanceCmd, &instanceSCPCmd{
cliCommandSettings: defaultCLICmdSettings(),
ReplStr: "{}",
}))
}