-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.go
201 lines (179 loc) · 4.79 KB
/
cli.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package main
import (
"bufio"
"bytes"
"fmt"
"github.com/hashicorp/go-multierror"
"github.com/spf13/cobra"
"io"
"os"
"runtime"
"strconv"
"strings"
)
const (
appName = "sshctl"
appVersion = "v0.1.1"
remoteHost = "remote"
username = "username"
password = "password"
timeout = "timeout"
port = "port"
filename = "file"
command = "command"
)
func init() {
initCmdPersistentFlags(getFileCmd)
initCmdPersistentFlags(putFileCmd)
initCmdPersistentFlags(execShellCmd)
execShellCmd.Flags().StringP(filename, "f", "", "Script to execute")
execShellCmd.Flags().StringP(command, "c", "", "Command to execute")
rootCmd.AddCommand(versionCmd)
rootCmd.AddCommand(getFileCmd)
rootCmd.AddCommand(putFileCmd)
rootCmd.AddCommand(execShellCmd)
}
func initCmdPersistentFlags(cmd *cobra.Command) {
cmd.PersistentFlags().StringP(username, "u", "root", "ssh username")
cmd.PersistentFlags().StringP(password, "p", "", "ssh password (required)")
cmd.PersistentFlags().IntP(timeout, "t", 0, "Task timeout (in seconds)")
cmd.PersistentFlags().StringSliceP(remoteHost, "r", []string{}, "ssh server remote addr (required)")
cmd.PersistentFlags().Int(port, 22, "ssh server port")
_ = cmd.MarkPersistentFlagRequired(remoteHost)
_ = cmd.MarkPersistentFlagRequired(password)
}
func execute() {
err := rootCmd.Execute()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
var rootCmd = &cobra.Command{
Use: appName,
Short: appName + " is an SSH helper",
Long: appName + ` can upload files to the remote host or download files from the remote host locally,or execute script commands on the remote host without interaction with users`,
}
var versionCmd = &cobra.Command{
Use: "version",
Aliases: []string{"v", "ver"},
Short: "Print the version number of " + appName,
Long: fmt.Sprintf(`All software has versions. This is %s's`, appName),
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("%s version %s %s/%s", appName, appVersion, runtime.GOOS, runtime.GOARCH)
},
}
var getFileCmd = &cobra.Command{
Use: "get",
Aliases: []string{"download", "down"},
Short: "Download files from remote host to local",
Long: `Usage: get remoteFile localFile`,
Args: cobra.ExactArgs(2),
Run: func(cmd *cobra.Command, args []string) {
op, err := getSftpClient(cmd)
if err != nil {
fmt.Println(err)
return
}
err = op.Get(args[0], args[1])
if err != nil {
fmt.Println(err)
}
},
}
var putFileCmd = &cobra.Command{
Use: "put",
Aliases: []string{"upload", "up"},
Short: "Last local file to remote host",
Long: `Usage: put localFile remoteFile`,
Args: cobra.ExactArgs(2),
Run: func(cmd *cobra.Command, args []string) {
op, err := getSftpClient(cmd)
if err != nil {
fmt.Println(err)
return
}
err = op.Put(args[0], args[1])
if err != nil {
fmt.Println(err)
}
},
}
var execShellCmd = &cobra.Command{
Use: "sh",
Aliases: []string{"exec", "shell", "bash"},
Short: "Put the script on the remote host for execution",
Long: `Usage: sh script`,
//Args: cobra.ExactArgs(2),
Run: func(cmd *cobra.Command, args []string) {
c := cmd.Flag(command).Value.String()
f := cmd.Flag(filename).Value.String()
var reader *bufio.Reader
switch {
case `` != c && f == ``:
if c == "-" {
reader = bufio.NewReader(os.Stdin)
break
}
reader = bufio.NewReader(strings.NewReader(c))
case `` == c && f != ``:
if f == "-" {
reader = bufio.NewReader(os.Stdin)
break
}
fReadr, err := os.Open(f)
if err != nil {
fmt.Printf("Error opening file %s. err: %v\n", f, err)
return
}
reader = bufio.NewReader(fReadr)
default:
fmt.Printf("%s and %s cannot be used at the same time\n", command, filename)
return
}
op, err := getSftpClient(cmd)
if err != nil {
fmt.Println("getSftpClient->", err)
return
}
var buf bytes.Buffer
for {
var bs = make([]byte, 1<<10)
n, err := reader.Read(bs)
if err == nil {
buf.Write(bs[:n])
} else {
if err == io.EOF {
buf.Write(bs[:n])
break
} else {
fmt.Println("reader.Read->", err)
return
}
}
}
err = op.Shell(buf.Bytes())
if err != nil {
fmt.Println("Shell->", err)
}
},
}
func getSftpClient(cmd *cobra.Command) (SSHAction, error) {
var result *multierror.Error
sshPort, err := strconv.Atoi(cmd.Flag(port).Value.String())
result = multierror.Append(result, err)
taskTimeout, err := strconv.Atoi(cmd.Flag(timeout).Value.String())
result = multierror.Append(result, err)
if err := result.ErrorOrNil(); err != nil {
return nil, fmt.Errorf("getSftpClient-%s->%w", timeout, err)
}
str := cmd.Flag(remoteHost).Value.String()
hosts := strings.Split(str[1:len(str)-1], ",")
return NewSSHAction(
cmd.Flag(username).Value.String(),
cmd.Flag(password).Value.String(),
hosts,
sshPort,
taskTimeout,
)
}