-
Notifications
You must be signed in to change notification settings - Fork 3
/
wso2-apim-api-client.go
262 lines (216 loc) · 6.34 KB
/
wso2-apim-api-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
package main
import (
"bytes"
"crypto/tls"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"mime/multipart"
"net/http"
"os"
)
type GetApiResponse struct {
Count int `json:"count"`
Next string `next`
Previous string `previous`
List []Api `list`
}
type Api struct {
Id string `json:id`
Name string `json:name`
Description string `json:description`
Context string `json:context`
Version string `json:version`
Provider string `json:provider`
Status string `json:status`
}
func GetClientIdSecret(clientRegEndpoint string, username string, password string) (clientID string, clientSecret string) {
client := createHTTPClient()
var payload = []byte(`{
"callbackUrl": "https://localhost/callback",
"clientName": "wso2-apim-cli",
"tokenScope": "Production",
"owner": "admin",
"grantType": "password refresh_token",
"saasApp": true
}`)
req, err := http.NewRequest("POST", clientRegEndpoint, bytes.NewBuffer(payload))
req.Header.Add("Authorization", "Basic "+basicAuth(username, password))
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return "", err.Error()
}
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
var data map[string]interface{}
err = json.Unmarshal([]byte(body), &data)
if err != nil {
panic(err)
}
clientID = data["clientId"].(string)
clientSecret = data["clientSecret"].(string)
fmt.Println("Client id and client secret obtained")
return clientID, clientSecret
}
func GetToken(tokenEndpoint string, username string, password string, clientId string, clientSecret string) (accessToken string) {
client := createHTTPClient()
req, err := http.NewRequest("POST", tokenEndpoint, nil)
req.Header.Add("Authorization", "Basic "+basicAuth(clientId, clientSecret))
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
q := req.URL.Query()
q.Add("grant_type", "password")
q.Add("username", username)
q.Add("password", password)
q.Add("scope", "apim:api_view apim:api_create apim:api_publish")
req.URL.RawQuery = q.Encode()
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
var data map[string]interface{}
err = json.Unmarshal([]byte(body), &data)
if err != nil {
panic(err)
}
accessToken = data["access_token"].(string)
fmt.Println("Access token generated")
return accessToken
}
func ExportAPI(exportEndpoint string, username string, password string, exportPath string, api Api) (filePath string, err error) {
client := createHTTPClient()
req, err := http.NewRequest("GET", exportEndpoint, nil)
req.Header.Add("Authorization", "Basic "+basicAuth(username, password))
q := req.URL.Query()
q.Add("name", api.Name)
q.Add("version", api.Version)
q.Add("provider", api.Provider)
req.URL.RawQuery = q.Encode()
res, err := client.Do(req)
if err != nil {
return "", err
}
defer res.Body.Close()
if res.StatusCode == http.StatusFound {
return "", errors.New("API import/export web application not found")
}
if res.StatusCode != http.StatusOK {
body, _ := ioutil.ReadAll(res.Body)
return "", errors.New(string(body))
}
filePath = exportPath + "/" + api.Name + "-" + api.Version + ".zip"
out, err := os.Create(filePath)
if err != nil {
return "", err
}
defer out.Close()
io.Copy(out, res.Body)
return filePath, nil
}
func ImportAPI(importEndpoint string, username string, password string, filePath string) (err error) {
var buffer bytes.Buffer
writer := multipart.NewWriter(&buffer)
file, err := os.Open(filePath)
if err != nil {
return err
}
defer file.Close()
formFile, err := writer.CreateFormFile("file", filePath)
if err != nil {
return
}
if _, err = io.Copy(formFile, file); err != nil {
return
}
writer.Close()
req, err := http.NewRequest("POST", importEndpoint, &buffer)
if err != nil {
return err
}
req.Header.Add("Authorization", "Basic "+basicAuth(username, password))
req.Header.Set("Content-Type", writer.FormDataContentType())
client := createHTTPClient()
res, err := client.Do(req)
if err != nil {
return err
}
if res.StatusCode == http.StatusFound {
return errors.New("API import/export web application not found")
}
if res.StatusCode != http.StatusCreated {
body, _ := ioutil.ReadAll(res.Body)
return errors.New(string(body))
}
return
}
func GetAPIs(publisherEndpoint string, token string) GetApiResponse {
client := createHTTPClient()
req, err := http.NewRequest("GET", publisherEndpoint+"/v0.11/apis/", nil)
req.Header.Add("Authorization", "Bearer "+token)
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return GetApiResponse{}
}
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
var response GetApiResponse
json.Unmarshal(body, &response)
return response
}
func GetAPIsByStatus(publisherEndpoint string, token string, status string) GetApiResponse {
client := createHTTPClient()
req, err := http.NewRequest("GET", publisherEndpoint+"/v0.11/apis/", nil)
req.Header.Add("Authorization", "Bearer "+token)
q := req.URL.Query()
q.Add("query", "status:"+status)
req.URL.RawQuery = q.Encode()
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return GetApiResponse{}
}
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
var response GetApiResponse
json.Unmarshal(body, &response)
return response
}
func PublishAPI(publishEndpoint string, token string, apiId string) (err error) {
client := createHTTPClient()
req, err := http.NewRequest("POST", publishEndpoint, nil)
req.Header.Add("Authorization", "Bearer "+token)
q := req.URL.Query()
q.Add("apiId", apiId)
q.Add("action", "Publish")
req.URL.RawQuery = q.Encode()
res, err := client.Do(req)
if err != nil {
return err
}
if res.StatusCode != http.StatusOK {
body, _ := ioutil.ReadAll(res.Body)
return errors.New(string(body))
}
return nil
}
func createHTTPClient() *http.Client {
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
client := &http.Client{Transport: tr, CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
}}
return client
}
func basicAuth(username, password string) string {
auth := username + ":" + password
return base64.StdEncoding.EncodeToString([]byte(auth))
}