-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
165 lines (135 loc) · 3.14 KB
/
utils.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
package crowdin
import (
"bytes"
"fmt"
"io"
"io/ioutil"
"log"
"mime/multipart"
"net/http"
"os"
"time"
)
type postOptions struct {
urlStr string
params map[string]string
paramsArray map[string][]string
files map[string]string
}
type getOptions struct {
urlStr string
params map[string]string
}
// params - extra params
// fileNames - key = dir
func (crowdin *Crowdin) post(options *postOptions) ([]byte, error) {
var buffer bytes.Buffer
writer := multipart.NewWriter(&buffer)
if options.params != nil {
for k, v := range options.params {
fw, err := writer.CreateFormField(k)
if err != nil {
return nil, err
}
if _, err = fw.Write([]byte(v)); err != nil {
return nil, err
}
}
}
if options.paramsArray != nil {
for k, arr := range options.paramsArray {
for _, v := range arr {
fw, err := writer.CreateFormField(k)
if err != nil {
return nil, err
}
if _, err = fw.Write([]byte(v)); err != nil {
return nil, err
}
}
}
}
if options.files != nil {
for key, filePath := range options.files {
file, err := os.Open(filePath)
if err != nil {
return nil, err
}
defer file.Close()
fw, err := writer.CreateFormFile(key, filePath)
if err != nil {
return nil, err
}
if _, err = io.Copy(fw, file); err != nil {
return nil, err
}
}
}
writer.Close()
req, err := http.NewRequest("POST", options.urlStr, &buffer)
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", writer.FormDataContentType())
response, err := crowdin.config.client.Do(req)
if err != nil {
return nil, err
}
defer response.Body.Close()
bodyResponse, err := ioutil.ReadAll(response.Body)
if err != nil {
return nil, err
}
if response.StatusCode != http.StatusOK {
return bodyResponse, APIError{What: fmt.Sprintf("Status code: %v", response.StatusCode)}
}
return bodyResponse, nil
}
func (crowdin *Crowdin) get(options *getOptions) ([]byte, error) {
response, err := crowdin.getResponse(options)
if err != nil {
return nil, err
}
defer response.Body.Close()
bodyResponse, err := ioutil.ReadAll(response.Body)
if err != nil {
return nil, err
}
if response.StatusCode != http.StatusOK {
return bodyResponse, APIError{What: fmt.Sprintf("Status code: %v", response.StatusCode)}
}
return bodyResponse, nil
}
func (crowdin *Crowdin) getResponse(options *getOptions) (*http.Response, error) {
if options != nil && options.params != nil {
for k, v := range options.params {
options.urlStr += "&" + k + "=" + v
}
}
req, err := http.NewRequest("GET", options.urlStr, nil)
if err != nil {
return nil, err
}
response, err := crowdin.config.client.Do(req)
if err != nil {
return nil, err
}
return response, nil
}
func (crowdin *Crowdin) log(a interface{}) {
if crowdin.debug {
log.Println(a)
if crowdin.logWriter != nil {
timestamp := time.Now().Format(time.RFC3339)
msg := fmt.Sprintf("%v: %v", timestamp, a)
fmt.Fprintln(crowdin.logWriter, msg)
}
}
}
// APIError holds data of errors returned from the API.
type APIError struct {
What string
}
func (e APIError) Error() string {
return fmt.Sprintf("%v", e.What)
}