-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice.go
83 lines (76 loc) · 1.75 KB
/
service.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
package vim25
import (
"bytes"
"encoding/xml"
"fmt"
"log"
"net/http"
"net/http/httputil"
"strings"
)
var Debug = false
type Service struct {
Url string
soapSession *http.Cookie
HttpClient *http.Client
}
func (s *Service) readSessionCookie(resp *http.Response) {
for _, cookie := range resp.Cookies() {
if cookie.Name == "vmware_soap_session" {
s.soapSession = cookie
}
}
}
func (s *Service) writeSessionCookie(req *http.Request) {
if s.soapSession != nil {
req.AddCookie(s.soapSession)
}
}
func (s *Service) writeHttpHeader(req *http.Request) {
req.Header.Set("content-type", "text/xml; charset=\"utf-8\"")
req.Header.Set("user-agent", "Vim25 GoClient/0.1")
req.Header.Set("Soapaction", "\"urn:vim25/5.1\"")
}
func (s *Service) SoapRequest(body *Body) (*Body, error) {
xmlEnvelope, err := xml.Marshal(Envelope{
Body: body,
})
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", s.Url, bytes.NewReader(xmlEnvelope))
if err != nil {
return nil, err
}
if Debug {
dump, _ := httputil.DumpRequest(req, true)
fmt.Println(strings.Repeat("-", 80))
fmt.Println(strings.Repeat("-", 80))
log.Println(string(dump))
fmt.Println(strings.Repeat("-", 80))
}
s.writeHttpHeader(req)
s.writeSessionCookie(req)
client := http.DefaultClient
if nil != s.HttpClient {
client = s.HttpClient
}
resp, err := client.Do(req)
if Debug {
dump, _ := httputil.DumpResponse(resp, true)
fmt.Println(string(dump))
fmt.Println(strings.Repeat("-", 80))
fmt.Println(strings.Repeat("-", 80))
}
if err != nil {
return nil, err
}
s.readSessionCookie(resp)
defer resp.Body.Close()
env := new(Envelope)
dec := xml.NewDecoder(resp.Body)
if err := dec.Decode(env); err != nil {
return nil, err
}
return env.Body, nil
}