-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest_handler.go
247 lines (208 loc) · 7.16 KB
/
rest_handler.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
package main
import (
"bytes"
"crypto/tls"
"crypto/x509"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"time"
"log"
)
var baseURL = os.Getenv("BASE_URL")
var bearerToken = "Bearer " + os.Getenv("BEARER_TOKEN")
const (
// analytics layer
endpointPostClassifyAppReviews = "/ri-analytics-classification-google-play-review/hitec/classify/domain/google-play-reviews/"
// collection layer
endpointPostCrawlAppReviewsGooglePlay = "/ri-collection-explicit-feedback-google-play-review/hitec/crawl/app-reviews/google-play/%s/limit/%d"
// collection layer
endpointPostCrawlAppPageGooglePlay = "/ri-collection-explicit-feedback-google-play-page/hitec/crawl/app-page/google-play/%s"
// storage layer
endpointPostObserveAppGooglePlay = "/ri-storage-app/hitec/repository/app/observe/app/google-play/package-name/%s/interval/%s"
endpointGetObservablesGooglePlay = "/ri-storage-app/hitec/repository/app/observable/google-play"
endpointPostAppReviewGooglePlay = "/ri-storage-app/hitec/repository/app/store/app-review/google-play/"
endpointPostAppPageGooglePlay = "/ri-storage-app/hitec/repository/app/store/app-page/google-play/"
endpointPosNonExistingtAppReviewsGooglePlay = "/ri-storage-app/hitec/repository/app/non-existing/app-review/google-play"
jsonPayload = "application/json; charset=utf-8"
GET = "GET"
POST = "POST"
DELETE = "DELETE"
AUTHORIZATION = "Authorization"
ACCEPT = "Accept"
TYPE_JSON = "application/json"
)
var client = getHTTPClient()
func getHTTPClient() *http.Client {
pwd, _ := os.Getwd()
caCert, err := ioutil.ReadFile(pwd + "/ca_chain.crt")
timeout := time.Duration(2 * time.Minute)
if err != nil {
log.Fatal(err)
}
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
client := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
RootCAs: caCertPool,
},
},
Timeout: timeout,
CheckRedirect: func(req *http.Request, via []*http.Request) error {
req.Header.Add(AUTHORIZATION, bearerToken)
return nil
},
}
return client
}
// RESTPostStoreObserveAppGooglePlay returns ok
func RESTPostStoreObserveAppGooglePlay(packageName string, interval string) bool {
endpoint := fmt.Sprintf(endpointPostObserveAppGooglePlay, packageName, interval)
url := baseURL + endpoint
req, _ := http.NewRequest(POST, url, nil)
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
res, err := client.Do(req)
if err != nil {
log.Printf("ERR %v\n", err)
return false
}
if res.StatusCode == 200 {
return true
}
return false
}
// RESTGetObservablesGooglePlay retrieve all observables from the storage layer
func RESTGetObservablesGooglePlay() []ObservableGooglePlay {
var obserables []ObservableGooglePlay
url := baseURL + endpointGetObservablesGooglePlay
req, _ := http.NewRequest(GET, url, bytes.NewBuffer(nil))
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
res, err := client.Do(req)
if err != nil {
fmt.Println("ERR", err)
return obserables
}
err = json.NewDecoder(res.Body).Decode(&obserables)
if err != nil {
fmt.Println("ERR", err)
return obserables
}
return obserables
}
// RESTGetAppPageGooglePlay retrieve all reviews from the collection layer
func RESTGetAppPageGooglePlay(packageName string) AppPageGooglePlay {
var appPage AppPageGooglePlay
endpoint := fmt.Sprintf(endpointPostCrawlAppPageGooglePlay, packageName)
url := baseURL + endpoint
req, _ := http.NewRequest(GET, url, bytes.NewBuffer(nil))
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
res, err := client.Do(req)
if err != nil {
fmt.Println("ERR", err)
return appPage
}
err = json.NewDecoder(res.Body).Decode(&appPage)
if err != nil {
fmt.Println("ERR", err)
return appPage
}
return appPage
}
// RESTGetAppReviewsGooglePlay retrieve all reviews from the collection layer
func RESTGetAppReviewsGooglePlay(packageName string, limit int) []AppReviewGooglePlay {
var reviews []AppReviewGooglePlay
endpoint := fmt.Sprintf(endpointPostCrawlAppReviewsGooglePlay, packageName, limit)
url := baseURL + endpoint
req, _ := http.NewRequest(GET, url, bytes.NewBuffer(nil))
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
res, err := client.Do(req)
if err != nil {
fmt.Println("ERR", err)
return reviews
}
err = json.NewDecoder(res.Body).Decode(&reviews)
if err != nil {
fmt.Println("ERR", err)
return reviews
}
return reviews
}
// RESTPostProcessAppReviewsGooglePlay sends the crawled reviews to the processing layer and retrieves app reviews including their ml classes
func RESTPostProcessAppReviewsGooglePlay(reviews []AppReviewGooglePlay) []AppReviewGooglePlay {
var appReviews []AppReviewGooglePlay
requestBody := new(bytes.Buffer)
json.NewEncoder(requestBody).Encode(reviews)
url := baseURL + endpointPostClassifyAppReviews
req, _ := http.NewRequest(POST, url, requestBody)
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
res, err := client.Do(req)
if err != nil {
fmt.Println("ERR", err)
return appReviews
}
err = json.NewDecoder(res.Body).Decode(&appReviews)
if err != nil {
fmt.Println("ERR", err)
return appReviews
}
return appReviews
}
// RESTPostStoreProcessedAppReviewsGooglePlay sends the processed app reviews to the storage layer. Returns ok MS could be reached
func RESTPostStoreProcessedAppReviewsGooglePlay(appReviews []AppReviewGooglePlay) bool {
requestBody := new(bytes.Buffer)
json.NewEncoder(requestBody).Encode(reviews)
url := baseURL + endpointPostAppReviewGooglePlay
req, _ := http.NewRequest(POST, url, requestBody)
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
_, err := client.Do(req)
if err != nil {
fmt.Println("ERR", err)
return false
}
return true
}
// RESTPostStoreAppPageGooglePlay sends the crawled app page to the storage layer. Returns ok MS could be reached
func RESTPostStoreAppPageGooglePlay(appPage AppPageGooglePlay) bool {
requestBody := new(bytes.Buffer)
json.NewEncoder(requestBody).Encode(appPage)
url := baseURL + endpointPostAppPageGooglePlay
req, _ := http.NewRequest(POST, url, requestBody)
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
_, err := client.Do(req)
if err != nil {
fmt.Println("ERR", err)
return false
}
return true
}
// RESTPostNonExistingAppReviewsGooglePlay sends the crawled app reviews and gets a list of app reviews in return that do not yet exist in the db.
func RESTPostNonExistingAppReviewsGooglePlay(appReviews []AppReviewGooglePlay) []AppReviewGooglePlay {
var nonExistingAppReviews []AppReviewGooglePlay
requestBody := new(bytes.Buffer)
json.NewEncoder(requestBody).Encode(appReviews)
url := baseURL + endpointPosNonExistingtAppReviewsGooglePlay
req, _ := http.NewRequest(POST, url, requestBody)
req.Header.Set(AUTHORIZATION, bearerToken)
req.Header.Add(ACCEPT, TYPE_JSON)
res, err := client.Do(req)
if err != nil {
fmt.Println("ERR", err)
return nonExistingAppReviews
}
err = json.NewDecoder(res.Body).Decode(&nonExistingAppReviews)
if err != nil {
fmt.Println("ERR", err)
return nonExistingAppReviews
}
return nonExistingAppReviews
}