-
Notifications
You must be signed in to change notification settings - Fork 5
/
client.go
319 lines (264 loc) · 7.45 KB
/
client.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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/*
Copyright (c) 2015 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// this code is copy from https://github.com/vmware/govmomi/blob/master/vim25/soap/client.go
package gowbem
import (
"bytes"
"context"
"crypto/tls"
"encoding/json"
"encoding/xml"
"errors"
"fmt"
"io"
"net/http"
"net/http/cookiejar"
"net/http/httputil"
"net/url"
"strconv"
"sync/atomic"
)
var ErrUnauthorized = errors.New("401 Unauthorized")
type HasFault interface {
Fault() error
}
type DecodeError struct {
bytes []byte
err error
}
func (f *DecodeError) Error() string {
return f.err.Error() + ", xml as follow:\r\n" + string(f.bytes)
}
type FaultError struct {
bytes []byte
err error
}
func (f *FaultError) Error() string {
return f.err.Error() + ", xml as follow:\r\n" + string(f.bytes)
}
type RoundTripper interface {
RoundTrip(action string, reqBody interface{}, resBody HasFault, cached *bytes.Buffer) error
}
var cn uint64 // Client counter
type Client struct {
rn uint64 // Request counter
http.Client
u url.URL
insecure bool
contentType string
cn_str string // Client counter
cn uint64 // Client counter
cached *bytes.Buffer
}
func NewClient(u *url.URL, insecure bool) *Client {
c := &Client{}
c.init(u, insecure)
return c
}
func (c *Client) init(u *url.URL, insecure bool) {
c.u = *u
c.insecure = insecure
c.cn = atomic.AddUint64(&cn, 1)
c.rn = 0
c.cached = bytes.NewBuffer(make([]byte, 0, 8*1024*1024))
c.cn_str = strconv.FormatUint(c.cn, 10)
if c.u.Scheme == "https" {
c.Client.Transport = &http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: c.insecure}}
}
c.Jar, _ = cookiejar.New(nil)
//c.u.User = nil
}
func (c *Client) generateId() string {
return c.cn_str + "-" + GenerateId()
}
func (c *Client) URL() url.URL {
return c.u
}
type marshaledClient struct {
Cookies []*http.Cookie
URL *url.URL
Insecure bool
}
func (c *Client) MarshalJSON() ([]byte, error) {
m := marshaledClient{
Cookies: c.Jar.Cookies(&c.u),
URL: &c.u,
Insecure: c.insecure,
}
return json.Marshal(m)
}
func (c *Client) UnmarshalJSON(b []byte) error {
var m marshaledClient
err := json.Unmarshal(b, &m)
if err != nil {
return err
}
*c = *NewClient(m.URL, m.Insecure)
c.Jar.SetCookies(m.URL, m.Cookies)
return nil
}
func (c *Client) RoundTrip(ctx context.Context, action string, headers map[string]string, reqBody interface{}, resBody HasFault) error {
err := c.roundTrip(ctx, action, headers, reqBody, resBody)
if err != nil && atomic.LoadUint64(&c.rn) <= 1 {
if c.contentType == "" {
if headers == nil {
headers = map[string]string{
`Content-Type`: `text/xml; charset="utf-8"`,
}
} else {
headers[`Content-Type`] = `text/xml; charset="utf-8"`
}
e := c.roundTrip(ctx, action, headers, reqBody, resBody)
if e == nil {
c.contentType = `text/xml; charset="utf-8"`
return nil
}
}
} else if err == ErrUnauthorized {
return c.roundTrip(ctx, action, headers, reqBody, resBody)
}
return err
}
func (c *Client) roundTrip(ctx context.Context, action string, headers map[string]string, reqBody interface{}, resBody HasFault) error {
var httpreq *http.Request
var httpres *http.Response
var dumpWriter io.WriteCloser
var err error
num := atomic.AddUint64(&c.rn, 1)
c.cached.Reset()
c.cached.WriteString(xml.Header)
if err = xml.NewEncoder(c.cached).Encode(reqBody); err != nil {
panic(err)
}
rawreqbody := c.cached
httpreq, err = http.NewRequest(action, c.u.String(), rawreqbody)
if err != nil {
panic(err)
}
if ctx != nil {
httpreq = httpreq.WithContext(ctx)
}
//if pwd, ok := c.u.User.Password(); ok {
// httpreq.SetBasicAuth(c.u.User.Username(), pwd)
//}
//httpreq.Header.Set(`Content-Type`, `text/xml; charset="utf-8"`)
if c.contentType == "" {
httpreq.Header.Set(`Content-Type`, `application/xml; charset="utf-8"`)
} else {
httpreq.Header.Set(`Content-Type`, c.contentType)
}
if 0 != len(headers) {
for k, v := range headers {
httpreq.Header.Set(k, v)
}
}
if DebugEnabled() {
b, _ := httputil.DumpRequestOut(httpreq, false)
dumpWriter = DebugNewFile(fmt.Sprintf("%d-%04d.log", c.cn, num))
defer dumpWriter.Close()
dumpWriter.Write(b)
dumpWriter.Write(c.cached.Bytes())
}
//tstart := time.Now()
httpres, err = c.Client.Do(httpreq)
//tstop := time.Now()
// if DebugEnabled() {
// now := time.Now().Format("2006-01-02T15-04-05.999999999")
// ms := tstop.Sub(tstart) / time.Millisecond
// fmt.Fprintf(c.log, "%s: %4d took %6dms\n", now, num, ms)
// }
if err != nil {
if DebugEnabled() {
dumpWriter.Write([]byte("\r\n"))
dumpWriter.Write([]byte(err.Error()))
}
return err
}
if httpres.StatusCode == http.StatusUnauthorized {
httpres.Close = true
return ErrUnauthorized
}
//var rawresbody io.Reader = httpres.Body
defer httpres.Body.Close()
if httpres.ContentLength <= 0 && (httpres.StatusCode < http.StatusOK || httpres.StatusCode >= http.StatusMultipleChoices) {
if DebugEnabled() {
b, _ := httputil.DumpResponse(httpres, false)
dumpWriter.Write([]byte("\r\n"))
dumpWriter.Write(b)
dumpWriter.Write(c.cached.Bytes())
}
// 修复 pg 导到一个问题, 当pg出错时返回错误响应时,没有 ContentLength, tcp 连接也不关闭。
// 这时读 httpres.Body 时会导致本方法挂起。
// This is Pegasus bug, pegasus will return a error response that http version is 1.0 and ContentLength is missing.
// And tcp connection isn't disconnect by the pegasus server.
cimError := httpres.Header.Get("CIMError")
errorDetail := httpres.Header.Get("PGErrorDetail")
if "" == cimError {
if "" != errorDetail {
return errors.New(errorDetail)
}
return errors.New(httpres.Status)
}
if "" != errorDetail {
return errors.New(cimError + ": " + errorDetail)
}
return errors.New(cimError)
}
c.cached.Reset()
if _, err = io.Copy(c.cached, httpres.Body); nil != err {
return err
}
if DebugEnabled() {
b, _ := httputil.DumpResponse(httpres, false)
dumpWriter.Write([]byte("\r\n"))
dumpWriter.Write(b)
dumpWriter.Write(c.cached.Bytes())
}
if 200 != httpres.StatusCode {
if 0 == c.cached.Len() {
return errors.New(httpres.Status)
}
return errors.New(httpres.Status + ":" + c.cached.String())
}
dec := xml.NewDecoder(bytes.NewReader(c.cached.Bytes()))
err = dec.Decode(resBody)
if err != nil {
return &DecodeError{bytes: c.cached.Bytes(), err: err}
}
if fault := resBody.Fault(); fault != nil {
return &FaultError{bytes: c.cached.Bytes(), err: fault}
}
return nil
}
func StringsWith(instance CIMInstance, key string, defaultVlaue []string) []string {
prop := instance.GetPropertyByName(key)
if prop == nil {
return defaultVlaue
}
value := prop.GetValue()
if value == nil {
return defaultVlaue
}
switch vv := value.(type) {
case []string:
return vv
case []interface{}:
var ss = make([]string, 0, len(vv))
for _, v := range vv {
ss = append(ss, fmt.Sprint(v))
}
return ss
default:
panic(fmt.Sprintf("[wbem] value isn't a array - %T %#v.", value, value))
}
}