-
Notifications
You must be signed in to change notification settings - Fork 0
/
methods.go
398 lines (315 loc) · 9.25 KB
/
methods.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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
package ebct
import (
"bytes"
"encoding/json"
"encoding/xml"
"errors"
"fmt"
"github.com/davecgh/go-spew/spew"
"golang.org/x/net/html/charset"
"io"
"net/http"
"reflect"
"strings"
)
const (
ProductionUrl = "https://api.correios.com.br/"
SandBoxUrl = "https://apihom.correios.com.br/"
DefaultEndPoint = "packet/"
Version = "v1/"
ExportaFacil = "exportafacilmais/"
ProductionUrlSoap = "https://cws.correios.com.br/"
SandBoxUrlSoap = "https://apphom.correios.com.br/"
)
var xmlTyperType reflect.Type = reflect.TypeOf((*XMLTyper)(nil)).Elem()
// XMLTyper is an abstract interface for types that can set an XML type.
type XMLTyper interface {
SetXMLType()
}
// HTTPError is detailed soap http error
type HTTPError struct {
StatusCode int
Status string
Msg string
}
func (e *HTTPError) Error() string {
return fmt.Sprintf("%q: %q", e.Status, e.Msg)
}
// Message is an opaque type used by the RoundTripper to carry XML
// documents for SOAP.
type Message interface{}
// Envelope is a SOAP envelope.
type Envelope struct {
XMLName xml.Name `xml:"soap:Envelope"`
EnvelopeAttr string `xml:"xmlns:soap,attr"`
NSAttr string `xml:"xmlns:ns,attr"`
TNSAttr string `xml:"xmlns:tns,attr,omitempty"`
URNAttr string `xml:"xmlns:urn,attr,omitempty"`
XSIAttr string `xml:"xmlns:xsi,attr,omitempty"`
Header Message `xml:"soap:Header"`
Body Message `xml:"soap:Body"`
}
// Map data por post in the request
type Params map[string]interface{}
// Map extra request headers
type Headers map[string]string
// Make request and return the response
func (c *Client) execute(method, path string, params interface{}, headers Headers, model interface{}) error {
var request *http.Request
// mount endpoint
var endpoint = c.GetEndpoint() + path
fmt.Println(endpoint)
// check for params
if params != nil {
// send as body
if method != http.MethodGet {
// marshal params
b, err := json.Marshal(params)
if err != nil {
return err
}
spew.Dump(string(b))
// set payload with params
payload := strings.NewReader(string(b))
// set request with payload
request, _ = http.NewRequest(method, endpoint, payload)
} else {
// init request
request, _ = http.NewRequest(method, endpoint, nil)
// init query string
query := request.URL.Query()
var param Params
inrec, _ := json.Marshal(params)
_ = json.Unmarshal(inrec, ¶m)
// add params
for key, value := range param {
switch reflect.TypeOf(value).Kind() {
case reflect.Slice:
for _, val := range value.([]interface{}) {
query.Add(key, val.(string))
}
default:
query.Add(key, fmt.Sprintf("%v", value))
}
}
// set query string
request.URL.RawQuery = query.Encode()
}
} else {
// set request without payload
request, _ = http.NewRequest(method, endpoint, nil)
}
// set header
if c.GetToken() != "" {
request.Header.Add("Authorization", c.GetToken()) // Chave de autenticação
} else {
request.Header.Add("Authorization", c.BasicAuth)
}
request.Header.Add("platform", "smartcomex") // Plataforma origem da requisição
request.Header.Add("platform-version", "v1.0.0") // A versão atual da plataforma.
request.Header.Add("plugin", "correios-plugin") // Nome do conector utilizado.
request.Header.Add("plugin-version", "v1.0.0") // Versão do conector utilizado.
request.Header.Add("accept", "application/json")
request.Header.Add("content-type", "application/json") // Enviar sempre
// add extra headers
if headers != nil {
for key, value := range headers {
request.Header.Add(key, value)
}
}
fmt.Println(endpoint + "?" + request.URL.RawQuery)
response, err := http.DefaultClient.Do(request)
if err != nil {
return err
}
defer response.Body.Close()
// read response
data, err := io.ReadAll(response.Body)
if err != nil {
return err
}
fmt.Println(string(data))
// init error message
erm := &ErrorMessage{}
// init generic error
message := &GenericMessage{}
// check for error message
if err = json.Unmarshal(data, erm); err == nil && erm.Error() != "" {
return erm
}
// parse generic message
_ = json.Unmarshal(data, message)
// verify status code
if NotIn(response.StatusCode, http.StatusOK, http.StatusCreated, http.StatusAccepted) {
// return generic error message
if message.Error() != "" {
return message
}
// return body as error message
if len(data) > 0 {
return errors.New(string(data))
}
// return http status as error
return errors.New(response.Status)
}
// some services have empty response array
if len(data) == 2 && string(data) == "[]" {
return nil
}
// some services have empty response
if len(data) == 0 {
return nil
}
// pdf
if len(data) > 3 && string(data)[1:4] == "PDF" {
*model.(*[]byte) = data
return nil
}
// xml
if len(data) > 5 && In(string(data)[:5], "<?xml", "<Nfse", "<NFe ", "<nfeP") {
*model.(*string) = string(data)
return nil
}
// parse data
return json.Unmarshal(data, model)
}
// Execute GET requests
func (c *Client) Get(path string, params interface{}, headers Headers, model interface{}) error {
return c.execute(http.MethodGet, path, params, headers, model)
}
// Execute POST requests
func (c *Client) Post(path string, params interface{}, headers Headers, model interface{}) error {
return c.execute(http.MethodPost, path, params, headers, model)
}
// Execute PUT requests
func (c *Client) Put(path string, params interface{}, headers Headers, model interface{}) error {
return c.execute(http.MethodPut, path, params, headers, model)
}
// Execute PATCH requests
func (c *Client) Patch(path string, params interface{}, headers Headers, model interface{}) error {
return c.execute(http.MethodPatch, path, params, headers, model)
}
// Execute DELETE requests
func (c *Client) Delete(path string, params interface{}, headers Headers, model interface{}) error {
return c.execute(http.MethodDelete, path, params, headers, model)
}
// Make request and return the response
func (c *Client) Soap(path string, params interface{}, headers Headers, model interface{}) error {
var request *http.Request
// mount endpoint
var endpoint = c.GetEndpoint() + path
fmt.Println(endpoint)
// check for params
if params != nil {
//setXMLType(reflect.ValueOf(params))
req := &Envelope{
EnvelopeAttr: "http://schemas.xmlsoap.org/soap/envelope/",
NSAttr: c.DsNamespace,
TNSAttr: "tns",
XSIAttr: "http://www.w3.org/2001/XMLSchema-instance",
Header: nil,
Body: params,
}
var b bytes.Buffer
err := xml.NewEncoder(&b).Encode(req)
fmt.Println(b.String())
if err != nil {
return err
}
request, err = http.NewRequest("POST", endpoint, &b)
if err != nil {
return err
}
} else {
// set request without payload
request, _ = http.NewRequest("POST", endpoint, nil)
}
// set header
request.Header.Add("Authorization", c.BasicAuth)
request.Header.Add("platform", "smartcomex") // Plataforma origem da requisição
request.Header.Add("platform-version", "v1.0.0") // A versão atual da plataforma.
request.Header.Add("plugin", "correios-plugin") // Nome do conector utilizado.
request.Header.Add("plugin-version", "v1.0.0") // Versão do conector utilizado.
request.Header.Add("content-type", "text/xml")
//actionName := ""
//if cdAction == "" {
// actionName = cdAction
//} else {
// actionName = fmt.Sprintf("%s%s", c.DsNamespace, cdAction)
//}
//request.Header.Add("SOAPAction", actionName)
// add extra headers
if headers != nil {
for key, value := range headers {
request.Header.Add(key, value)
}
}
fmt.Println(endpoint + "?" + request.URL.RawQuery)
response, err := http.DefaultClient.Do(request)
if err != nil {
return err
}
defer response.Body.Close()
if response.StatusCode != http.StatusOK {
// read only the first MiB of the body in error case
limReader := io.LimitReader(response.Body, 1024*1024)
body, _ := io.ReadAll(limReader)
return &HTTPError{
StatusCode: response.StatusCode,
Status: response.Status,
Msg: string(body),
}
}
// Corrigir a codificação do XML, se necessário
utf8Reader, err := charset.NewReaderLabel("iso-8859-1", response.Body)
if err != nil {
fmt.Println("Erro ao criar leitor UTF-8:", err)
return err
}
// read response
data, err := io.ReadAll(utf8Reader)
if err != nil {
return err
}
marshalStructure := struct {
XMLName xml.Name `xml:"Envelope"`
Body Message `xml:"Body"`
}{Body: model}
fmt.Println(string(data))
err = xml.Unmarshal(data, &marshalStructure)
spew.Dump(marshalStructure)
return err
//decoder := xml.NewDecoder(response.Body)
//decoder.CharsetReader = charset.NewReaderLabel
//return decoder.Decode(&marshalStructure)
}
func setXMLType(v reflect.Value) {
if !v.IsValid() {
return
}
switch v.Type().Kind() {
case reflect.Interface:
setXMLType(v.Elem())
case reflect.Ptr:
if v.IsNil() {
break
}
ok := v.Type().Implements(xmlTyperType)
if ok {
v.MethodByName("SetXMLType").Call(nil)
}
setXMLType(v.Elem())
case reflect.Slice:
for i := 0; i < v.Len(); i++ {
setXMLType(v.Index(i))
}
case reflect.Struct:
for i := 0; i < v.NumField(); i++ {
if v.Field(i).CanAddr() {
setXMLType(v.Field(i).Addr())
} else {
setXMLType(v.Field(i))
}
}
}
}