-
Notifications
You must be signed in to change notification settings - Fork 4
/
HuntlyManagerService.swift
398 lines (297 loc) · 12.4 KB
/
HuntlyManagerService.swift
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
396
397
398
//
// HuntlyManagerService.swift
// My_Devoxx
//
// Created by Maxime on 03/04/16.
// Copyright © 2016 maximedavid. All rights reserved.
//
import Foundation
import UIKit
import Alamofire
import KeychainAccess
class HuntlyManagerService {
static let sharedInstance = HuntlyManagerService()
//let API = "https://srv.huntlyapp.com:9023"
//let API = "https://huntly-release.scalac.io"
let API = "https://srv.huntlyapp.com"
let TOKEN_STRING = "huntlyToken"
let QUEST_COMPLETED = "questCompleted"
let ACTIVITY_COMPLETED = "activityCompleted"
let FIRST_APP_RUN_QUEST = "firstAppRun"
let POINTS = "points"
let VOTE_QUEST = "vote"
let PLATFORM = "ios"
var FIRST_APP_RUN_QUEST_ID = -1
var VOTE_QUEST_ID = -1
var FIRST_APP_RUN_QUEST_POINTS = 0
var VOTE_QUEST_POINTS = 0
var APP_STORE_LINK = ""
var SCHEME_URL = ""
var EVENT_ID = -1
func feedEventId(callBack : () -> Void, callbackFailure : () -> Void) {
if EVENT_ID != -1 {
callBack()
return
}
let integration_id = CfpService.sharedInstance.getIntegrationId()
let headers = getHeaders()
Alamofire.request(.GET, "\(API)/deployments", headers : headers)
.responseJSON { response in
if let JSON = response.result.value {
if let arrayJSON = JSON as? NSArray {
for singleDeployment in arrayJSON {
if singleDeployment.objectForKey("externalId") as? String == integration_id {
self.EVENT_ID = (singleDeployment.objectForKey("eventId") as? Int) ?? -1
callBack()
return
}
}
}
}
callbackFailure()
}
}
func setStoredId(str: String, value : Int) {
if(str == FIRST_APP_RUN_QUEST) {
FIRST_APP_RUN_QUEST_ID = value
}
if(str == VOTE_QUEST) {
VOTE_QUEST_ID = value
}
}
func setQuestPoints(str: String, value : Int) {
if(str == FIRST_APP_RUN_QUEST) {
FIRST_APP_RUN_QUEST_POINTS = value
}
if(str == VOTE_QUEST) {
VOTE_QUEST_POINTS = value
}
}
func getStoredId(str: String) -> Int {
if(str == FIRST_APP_RUN_QUEST) {
return FIRST_APP_RUN_QUEST_ID
}
if(str == VOTE_QUEST) {
return VOTE_QUEST_ID
}
return -1
}
func getUUID() -> String {
let keychain = Keychain(service : "com.devoxx")
if let uuid = keychain["HuntlyService"] {
return uuid
}
let uuid = UIDevice.currentDevice().identifierForVendor?.UUIDString ?? ""
keychain["HuntlyService"] = uuid
return uuid
}
func getToken() -> String {
let defaults = NSUserDefaults.standardUserDefaults()
if let currentEventStr = defaults.objectForKey(TOKEN_STRING) as? String {
return currentEventStr
}
return ""
}
func setToken(token : String?) {
if token == nil {
return
}
let defaults = NSUserDefaults.standardUserDefaults()
defaults.setObject(token, forKey: TOKEN_STRING)
}
func setHuntlyPoints(pts : String) {
let defaults = NSUserDefaults.standardUserDefaults()
defaults.setObject(pts, forKey: POINTS)
}
func getHuntlyPoints() -> String {
let defaults = NSUserDefaults.standardUserDefaults()
return defaults.stringForKey(POINTS) ?? "0"
}
func findQuestId(str : String, handlerSuccess : (() -> Void), handlerFailure : (() -> Void)) {
if getStoredId(str) != -1 {
completeQuest(str, handlerSuccess: handlerSuccess, handlerFailure: handlerFailure)
return
}
let headers = getHeadersWithUserToken()
Alamofire.request(.GET, "\(API)/deployments/\(EVENT_ID)/quests/activity/list", headers : headers)
.responseJSON { response in
if let JSON = response.result.value as? NSArray {
for jsonPart in JSON {
if let actName = jsonPart.objectForKey("activity") as? String {
if actName == str {
if let questId = jsonPart.objectForKey("questId") as? Int, let points = jsonPart.objectForKey("singleReward") as? Int {
self.setStoredId(str, value: questId)
self.setQuestPoints(str, value: points)
self.completeQuest(str, handlerSuccess: handlerSuccess, handlerFailure: handlerFailure)
return;
}
}
}
}
}
handlerFailure()
}
}
func completeQuest(str : String, handlerSuccess : (() -> Void), handlerFailure : (() -> Void)) {
if getStoredId(str) == -1 {
findQuestId(str, handlerSuccess: handlerSuccess, handlerFailure: handlerFailure)
return
}
let questIdValue = "\(getStoredId(str))"
let headers = getHeadersWithUserToken()
Alamofire.upload(
.POST,
"\(API)/quests/activity/complete",
headers: headers,
multipartFormData: { multipartFormData in
multipartFormData.appendBodyPart(data: questIdValue.dataUsingEncoding(NSUTF8StringEncoding)!, name: "questId")
},
encodingCompletion: { encodingResult in
switch encodingResult {
case .Success(let upload, _, _):
upload.responseJSON { response in
guard response.result.value == nil else {
let response = JSON(response.result.value!)
if response["status"].string == self.QUEST_COMPLETED || response["status"].string == self.ACTIVITY_COMPLETED {
self.postExtraData()
handlerSuccess()
}
else {
handlerFailure()
}
return
}
handlerFailure()
}
case .Failure(let encodingError):
print(encodingError)
}
}
)
}
func updateScore(handlerSuccess : (() -> Void)) {
let headers = getHeadersWithUserToken()
Alamofire.request(.GET, "\(API)/deployments/\(EVENT_ID)/user", headers : headers)
.responseJSON { response in
if let JSON = response.result.value {
if let pts = JSON.objectForKey("points") as? Int {
self.setHuntlyPoints("\(pts)")
handlerSuccess()
}
}
}
}
func postExtraData() {
if APIManager.getQrCode() == nil {
return
}
let headers = getHeadersWithUserToken()
let config = NSURLSessionConfiguration.ephemeralSessionConfiguration()
config.HTTPAdditionalHeaders = headers
config.requestCachePolicy = .ReloadIgnoringLocalCacheData
config.timeoutIntervalForResource = 15
let session = NSURLSession(configuration: config)
let params:[String: String] = [
"key" : "userId",
"value" : APIManager.getQrCode()! ]
let url = NSURL(string:"\(API)/deployments/\(EVENT_ID)/profile/fill")
let request = NSMutableURLRequest(URL: url!)
request.setValue("application/json; charset=utf-8", forHTTPHeaderField: "Content-Type")
request.HTTPMethod = "POST"
request.HTTPBody = try? NSJSONSerialization.dataWithJSONObject([params], options: NSJSONWritingOptions())
let task = session.dataTaskWithRequest(request) {
data, response, error in
if let httpResponse = response as? NSHTTPURLResponse {
if httpResponse.statusCode != 200 {
return
}
}
if (error != nil) {
return
}
}
task.resume()
}
func storeToken(str : String, handlerSuccess : (Void) -> (), handlerFailure : (Void) -> ()) {
if getToken() != "" {
completeQuest(str, handlerSuccess: handlerSuccess, handlerFailure: handlerFailure)
return
}
let UIdValue = getUUID()
let headers = getHeaders()
Alamofire.upload(
.POST,
"\(API)/users/login/platform",
headers: headers,
multipartFormData: { multipartFormData in
multipartFormData.appendBodyPart(data: UIdValue.dataUsingEncoding(NSUTF8StringEncoding)!, name: "uid")
multipartFormData.appendBodyPart(data: self.PLATFORM.dataUsingEncoding(NSUTF8StringEncoding)!, name: "platform")
},
encodingCompletion: { encodingResult in
switch encodingResult {
case .Success(let upload, _, _):
upload.responseJSON { response in
if response.result.value == nil {
handlerFailure()
return
}
let response = JSON(response.result.value!)
self.setToken(response["user"]["token"].string)
self.completeQuest(str, handlerSuccess: handlerSuccess, handlerFailure: handlerFailure)
}
case .Failure( _):
handlerFailure()
}
}
)
}
func goDeepLink() {
if APP_STORE_LINK == "" {
let headers = getHeaders()
Alamofire.request(.GET, "\(API)/deployments/\(EVENT_ID)/deeplink", headers : headers)
.responseJSON { response in
if let JSON = response.result.value {
if let appStoreUri = JSON.objectForKey("appStoreUri") as? String, let urlScheme = JSON.objectForKey("deepLink") as? String {
self.APP_STORE_LINK = appStoreUri
self.SCHEME_URL = urlScheme
self.playMoreBtnSelector()
}
}
}
}
else {
playMoreBtnSelector()
}
}
func playMoreBtnSelector() {
let isInstalled = UIApplication.sharedApplication().canOpenURL(NSURL(string:SCHEME_URL)!)
if isInstalled {
UIApplication.sharedApplication().openURL(NSURL(string:SCHEME_URL)!)
}
else {
UIApplication.sharedApplication().openURL(NSURL(string:APP_STORE_LINK)!)
}
}
func reset() {
FIRST_APP_RUN_QUEST_ID = -1
VOTE_QUEST_ID = -1
FIRST_APP_RUN_QUEST_POINTS = 0
VOTE_QUEST_POINTS = 0
APP_STORE_LINK = ""
SCHEME_URL = ""
EVENT_ID = -1
setHuntlyPoints("0")
}
func getHuntlyToken() -> String {
return NSBundle.mainBundle().objectForInfoDictionaryKey("HuntlyAccessToken") as? String ?? ""
}
func getHeaders() -> [String : String] {
let headers = ["Authorization": "Basic-Auth: \(getHuntlyToken())"]
return headers
}
func getHeadersWithUserToken() -> [String : String] {
let headers = ["Authorization": "Basic-Auth: \(getHuntlyToken())",
"X-AUTH-TOKEN" : getToken()]
return headers
}
}