-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiary.go
264 lines (229 loc) · 5.79 KB
/
apiary.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
package apiary
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
)
// ApiaryAPIURL URL of public apiary.io API
const ApiaryAPIURL = "https://api.apiary.io/"
const (
apiaryActionMe = "me"
apiaryActionGetApis = "me/apis"
apiaryActionGetTeamApis = "me/teams/%s/apis"
apiaryActionFetchBlueprint = "blueprint/get/%s"
apiaryActionPublishBlueprint = "blueprint/publish/%s"
)
// ApiaryMeResponse is a struct of answer to Me() call
//
// Description:
// ID - user id
// Name - user name
// URL - user API URL
// Teams - slice of
// * ID - team id
// * Name - team name
// * URL - team api url
type ApiaryMeResponse struct {
ID string `json:"userId"`
Name string `json:"userName"`
URL string `json:"userApisUrl"`
Teams []struct {
ID string `json:"teamId"`
Name string `json:"teamName"`
URL string `json:"teamApisUrl"`
}
}
// ApiaryApisResponse is a struct of answer to GetApis() all
type ApiaryApisResponse struct {
Apis []ApiaryApiResponse `json:"apis"`
}
// ApiaryApiResponse is a helper struct of API response: GetApis(), GetTeamApis()
//
// Description:
// Name - API name
// DocumentationURL - URL of docs hosten on apiary.io
// Subdomain - short subdomain (3 level domain)
// Private - is this doc private
// Public - is this doc public
// Team - is this doc belongs to team
// Personal - this this doc personal
type ApiaryApiResponse struct {
Name string `json:"apiName"`
DocumentationURL string `json:"apiDocumentationUrl"`
Subdomain string `json:"apiSubdomain"`
Private bool `json:"apiIsPrivate"`
Public bool `json:"apiIsPublic"`
Team bool `json:"apiIsTeam"`
Personal bool `json:"apiIsPersonal"`
}
// ApiaryFetchResponse is a struct of Fetch response
//
// Description:
// Error - is fetch return error
// Message - error message (when error -> false this would be "")
// Code - error code (when error -> false this would be "")
type ApiaryFetchResponse struct {
Error bool `json:"error"`
Message string `json:"message"`
Code string `json:"code"`
}
// ApiaryInterface this interface is primary need for testing purposes
type ApiaryInterface interface {
Me() (me ApiaryMeResponse, err error)
GetApis() (apis *ApiaryApisResponse, err error)
GetTeamApis(team string) (apis *ApiaryApisResponse, err error)
PublishBlueprint(name string, content []byte) (published bool, err error)
FetchBlueprint(name string) (blueprint *ApiaryFetchResponse, err error)
}
// Apiary basic API client
//
// Usage:
//package main
//
//import (
//"fmt"
//"log"
//"os"
//
//"github.com/m1ome/apiary"
//)
//
//func main() {
// token := os.Getenv("APIARY_TOKEN")
//
// api := NewApiary(ApiaryOptions{
// Token: Token,
// })
//
// response, err := api.Me()
// if err != nil {
// log.Fatal(err)
// }
//
// fmt.Printf("ID: %d\n", response.ID)
// fmt.Printf("Name: %s\n", response.Name)
// fmt.Printf("URL: %s\n", response.URL)
//}
type Apiary struct {
options ApiaryOptions
client *http.Client
}
// ApiaryOptions structure of possible API options
// Token - Your apiary.io token's to access API.
type ApiaryOptions struct {
Token string
}
// NewApiary create new Apiary.io client
func NewApiary(opts ApiaryOptions) ApiaryInterface {
return &Apiary{
options: opts,
client: &http.Client{},
}
}
// Me retrieve user information
//
// Reference: http://docs.apiary.apiary.io/#reference/user-information/me/get-me
func (a *Apiary) Me() (me ApiaryMeResponse, err error) {
data, response, err := a.sendRequest(apiaryActionMe)
if err != nil {
return
}
err = checkOk(response)
if err != nil {
return
}
err = json.Unmarshal(data, &me)
if err != nil {
return
}
return
}
// GetApis return list of user blueprints/APIs
//
// Reference: http://docs.apiary.apiary.io/#reference/api-list/user-api-list/get-me
func (a *Apiary) GetApis() (apis *ApiaryApisResponse, err error) {
data, response, err := a.sendRequest(apiaryActionGetApis)
if err != nil {
return
}
err = checkOk(response)
if err != nil {
return
}
err = json.Unmarshal(data, &apis)
if err != nil {
return
}
return
}
// GetTeamApis return list of team blueprints/APIs
//
// Reference: http://docs.apiary.apiary.io/#reference/api-list/team-api-list/get-me
func (a *Apiary) GetTeamApis(team string) (apis *ApiaryApisResponse, err error) {
uri := fmt.Sprintf(apiaryActionGetTeamApis, team)
data, response, err := a.sendRequest(uri)
if err != nil {
return
}
err = checkOk(response)
if err != nil {
return
}
err = json.Unmarshal(data, &apis)
if err != nil {
return
}
return
}
// PublishBlueprint publish blueprint in Apiary.io
//
// Reference: http://docs.apiary.apiary.io/#reference/blueprint/publish-blueprint/get-me
func (a *Apiary) PublishBlueprint(name string, content []byte) (published bool, err error) {
jsonData, err := json.Marshal(map[string]string{
"code": string(content),
})
if err != nil {
return
}
uri := fmt.Sprintf(apiaryActionPublishBlueprint, name)
data, response, err := a.sendLegacyPostRequest(uri, bytes.NewBuffer(jsonData))
if err != nil {
return
}
if response.StatusCode != http.StatusCreated {
var apiaryError struct {
Error bool `json:"error"`
Message string `json:"message"`
}
err = json.Unmarshal(data, &apiaryError)
if err != nil {
return
}
if apiaryError.Error {
err = fmt.Errorf("Creation failed: %s", apiaryError.Message)
return
}
}
published = true
return
}
// FetchBlueprint fetches blueprint from Apiary.io
//
// Reference: Unknown
func (a *Apiary) FetchBlueprint(name string) (blueprint *ApiaryFetchResponse, err error) {
uri := fmt.Sprintf(apiaryActionFetchBlueprint, name)
data, response, err := a.sendLegacyRequest(uri)
if err != nil {
return
}
err = checkOk(response)
if err != nil {
return
}
err = json.Unmarshal(data, &blueprint)
if err != nil {
return
}
return
}