-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathl4a.go
395 lines (328 loc) · 10.5 KB
/
l4a.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
/*
Copyright (c) 2018 Usabilla
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish, dis-
tribute, sublicense, and/or sell copies of the Software, and to permit
persons to whom the Software is furnished to do so, subject to the fol-
lowing conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
*/
package usabilla
import (
"encoding/json"
"fmt"
"net/http"
"strconv"
)
// Canonical URI constants.
const (
appsURI = "/live/apps"
appsCampaignURI = appsURI + "/campaign"
)
var (
appFeedbackURI = appsURI + "/%s/feedback"
appCampaignResultsURI = appsCampaignURI + "/%s/results"
)
// App represents an app item.
type App struct {
ID string `json:"id"`
Date string `json:"date"`
Name string `json:"name"`
Status string `json:"status"`
}
// AppFeedbackItem represents an app feedback item.
type AppFeedbackItem struct {
ID string `json:"id"`
Date string `json:"date"`
Timestamp string `json:"timestamp"`
DeviceName string `json:"deviceName"`
Data map[string]interface{} `json:"data"`
Custom map[string]string `json:"custom"`
AppID string `json:"appId"`
AppName string `json:"appName"`
AppVersion string `json:"appVersion"`
OsName string `json:"osName"`
OsVersion string `json:"osVersion"`
Location string `json:"location"`
GeoLocation map[string]interface{} `json:"geolocation"`
FreeMemory int `json:"freeMemory"`
TotalMemory int `json:"totalMemory"`
FreeStorage int `json:"freeStorage"`
TotalStorage int `json:"totalStorage"`
Screenshot string `json:"screenshot"`
Screensize string `json:"screensize"`
Connection string `json:"connection"`
IPAddress string `json:"ipAddress"`
Language string `json:"language"`
Orientation string `json:"orientation"`
BatteryLevel float32 `json:"batteryLevel"`
}
// AppCampaignStruct represents a campaign item.
type AppCampaignStruct struct {
ID string `json:"id"`
CreatedAt string `json:"createdAt"`
LastModifiedAt string `json:"lastModifiedAt"`
Status string `json:"status"`
Name string `json:"name"`
AppIds []string `json:"appIds"`
}
// AppCampaignResultStruct represents a campaign result item.
type AppCampaignResultStruct struct {
ID string `json:"id"`
Date string `json:"date"`
CampaignID string `json:"campaignId"`
AppID string `json:"appId"`
Data map[string]interface{} `json:"data"`
Context map[string]interface{} `json:"context"`
Metadata map[string]interface{} `json:"metadata"`
Complete bool `json:"complete"`
}
// Apps represents the app resource of Usabilla API.
type Apps struct {
resource
client *http.Client
}
// AppFeedbackItems represents the apps feedback item subresource of Usabilla API.
type AppFeedbackItems struct {
resource
client *http.Client
}
// AppCampaigns represents a App Campaign resource.
type AppCampaigns struct {
resource
client *http.Client
}
// AppCampaignResults represents a App Campaign Results resource.
type AppCampaignResults struct {
resource
client *http.Client
}
// AppResponse is a response that contains app data.
type AppResponse struct {
response
Items []App `json:"items"`
}
// AppFeedbackResponse is a response that contains app feedback item data.
type AppFeedbackResponse struct {
response
Items []AppFeedbackItem `json:"items"`
}
// AppCampaignResponse is a response that contains App campaign data.
type AppCampaignResponse struct {
response
Items []AppCampaignStruct `json:"items"`
}
// AppCampaignResults is a response that contains App campaign results data.
type AppCampaignResultsResponse struct {
response
Items []AppCampaignResultStruct `json:"items"`
}
// Get function of Apps resource returns all apps
// taking into account the specified query parameters.
//
// Valid query parameters are:
// limit int
// since string (Time stamp)
func (a *Apps) Get(params map[string]string) (*AppResponse, error) {
request := request{
method: "GET",
auth: a.auth,
uri: appsURI,
params: params,
client: a.client,
}
data, err := request.get()
if err != nil {
panic(err)
}
return newAppResponse(data)
}
// Feedback encapsulates the app feedback item resource.
func (a *Apps) Feedback() *AppFeedbackItems {
return &AppFeedbackItems{
resource: resource{
auth: a.auth,
},
client: a.client,
}
}
// Get function of AppFeedbackItem resource returns all the feedback items
// for a specific app, taking into account the provided query parameters.
//
// Valid query parameters are:
// limit int
// since string (Time stamp)
func (af *AppFeedbackItems) Get(appID string, params map[string]string) (*AppFeedbackResponse, error) {
uri := fmt.Sprintf(appFeedbackURI, appID)
request := &request{
method: "GET",
auth: af.auth,
uri: uri,
params: params,
client: af.client,
}
data, err := request.get()
if err != nil {
panic(err)
}
return newAppFeedbackResponse(data)
}
// Iterate uses an AppFeedbackItem channel which transparently uses the HasMore field to fire
// a new api request once all items have been consumed on the channel.
func (af *AppFeedbackItems) Iterate(appID string, params map[string]string) chan AppFeedbackItem {
resp, err := af.Get(appID, params)
if err != nil {
panic(err)
}
afic := make(chan AppFeedbackItem)
go appItems(afic, resp, af, appID)
return afic
}
// Get function of AppCampaigns resource returns all the campaigns
func (ac *AppCampaigns) Get(params map[string]string) (*AppCampaignResponse, error) {
request := &request{
method: "GET",
auth: ac.auth,
uri: appsCampaignURI,
params: params,
client: ac.client,
}
data, err := request.get()
if err != nil {
panic(err)
}
return newAppCampaignResponse(data)
}
// Results encapsulates the App Campaign Results resource
func (ac *AppCampaigns) Results() *AppCampaignResults {
return &AppCampaignResults{
resource: resource{
auth: ac.auth,
},
client: ac.client,
}
}
// Get function of AppCampaignResults resource returns all the campaign results
func (acr *AppCampaignResults) Get(campaignID string, params map[string]string) (*AppCampaignResultsResponse, error) {
uri := fmt.Sprintf(appCampaignResultsURI, campaignID)
request := &request{
method: "GET",
auth: acr.auth,
uri: uri,
params: params,
client: acr.client,
}
data, err := request.get()
if err != nil {
panic(err)
}
return newAppCampaignResultsResponse(data)
}
// Iterate uses a channel which transparently uses the HasMore field to fire a new API request. Once all results
// have consumed on the channel it closes the chanel.
func (ac *AppCampaignResults) Iterate(campaignID string, params map[string]string) chan AppCampaignResultStruct {
resp, err := ac.Get(campaignID, params)
if err != nil {
panic(err)
}
acrc := make(chan AppCampaignResultStruct)
go appCampaignResults(acrc, resp, ac, campaignID)
return acrc
}
// appCampaignResults feeds the results channel with items. While HasMore is true it makes new API requests
// and sends them through the channel. Once it is false it closes the channel.
func appCampaignResults(acrc chan AppCampaignResultStruct, resp *AppCampaignResultsResponse, acr *AppCampaignResults, campaignID string) {
for {
for _, item := range resp.Items {
acrc <- item
}
if !resp.HasMore {
close(acrc)
return
}
params := map[string]string{
"since": strconv.FormatInt(resp.LastTimestamp, 10),
}
resp, err := acr.Get(campaignID, params)
if err != nil {
panic(err)
}
appCampaignResults(acrc, resp, acr, campaignID)
return
}
}
// appItems feeds a feedback item channel with items.
//
// While hasMore is true and all items have been consumed in the channel
// a new request is fired using the since parameter of the response, to
// retrieve new items.
//
// When HasMore is false, we close the channel.
func appItems(afic chan AppFeedbackItem, resp *AppFeedbackResponse, af *AppFeedbackItems, appID string) {
for {
for _, item := range resp.Items {
afic <- item
}
if !resp.HasMore {
close(afic)
return
}
params := map[string]string{
"since": strconv.FormatInt(resp.LastTimestamp, 10),
}
resp, err := af.Get(appID, params)
if err != nil {
panic(err)
}
appItems(afic, resp, af, appID)
return
}
}
// NewAppResponse creates an app response and unmarshals json API app
// response to Go struct.
func newAppResponse(data []byte) (*AppResponse, error) {
response := &AppResponse{}
err := json.Unmarshal(data, &response)
if err != nil {
return response, err
}
return response, nil
}
// NewAppFeedbackResponse creates an app feedback response and unmarshals json
// API app feeddback items response to Go struct.
func newAppFeedbackResponse(data []byte) (*AppFeedbackResponse, error) {
response := &AppFeedbackResponse{}
err := json.Unmarshal(data, &response)
if err != nil {
return response, err
}
return response, nil
}
// newAppCampaignResponse creates a response and unmarshals the JSON into a Struct.
func newAppCampaignResponse(data []byte) (*AppCampaignResponse, error) {
response := &AppCampaignResponse{}
err := json.Unmarshal(data, &response)
if err != nil {
return response, err
}
return response, nil
}
// newAppCampaignResultsResponse creates a response and unmarshals the JSON into a Struct.
func newAppCampaignResultsResponse(data []byte) (*AppCampaignResultsResponse, error) {
response := &AppCampaignResultsResponse{}
err := json.Unmarshal(data, &response)
if err != nil {
return response, err
}
return response, nil
}