forked from masterzen/winrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.go
45 lines (35 loc) · 1.24 KB
/
shell.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
package winrm
import "context"
// Shell is the local view of a WinRM Shell of a given Client
type Shell struct {
client *Client
id string
}
// Execute command on the given Shell, returning either an error or a Command
//
// Deprecated: user ExecuteWithContext
func (s *Shell) Execute(command string, arguments ...string) (*Command, error) {
return s.ExecuteWithContext(context.Background(), command, arguments...)
}
// ExecuteWithContext command on the given Shell, returning either an error or a Command
func (s *Shell) ExecuteWithContext(ctx context.Context, command string, arguments ...string) (*Command, error) {
request := NewExecuteCommandRequest(s.client.url, s.id, command, arguments, &s.client.Parameters)
defer request.Free()
response, err := s.client.sendRequest(request)
if err != nil {
return nil, err
}
commandID, err := ParseExecuteCommandResponse(response)
if err != nil {
return nil, err
}
cmd := newCommand(ctx, s, commandID)
return cmd, nil
}
// Close will terminate this shell. No commands can be issued once the shell is closed.
func (s *Shell) Close() error {
request := NewDeleteShellRequest(s.client.url, s.id, &s.client.Parameters)
defer request.Free()
_, err := s.client.sendRequest(request)
return err
}