forked from smallcase/gw-mob-sdk-cordova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SCGatewayPhonegap.m
383 lines (306 loc) · 19.9 KB
/
SCGatewayPhonegap.m
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
#import "SCGatewayPhonegap.h"
#import <SCGateway/SCGateway.h>
#import <Cordova/CDV.h>
#import <SCGateway/SCGateway-Swift.h>
@implementation SCGatewayPhonegap
- (void)setCordovaSdkVersion:(CDVInvokedUrlCommand*)command{
NSLog(@"setting SDK version");
[SCGateway.shared setSDKTypeWithType:@"cordova"];
NSString *versionString = [command.arguments objectAtIndex:0];
[SCGateway.shared setHybridSDKVersionWithVersion: versionString];
}
-(void)getSdkVersion:(CDVInvokedUrlCommand*)command {
__block CDVPluginResult *pluginResult = nil;
NSString *nativeSdkString = [NSString stringWithFormat: @"ios:%@", [SCGateway.shared getSdkVersion]];
NSString *cordovaSdkString = [NSString stringWithFormat: @",cordova:%@", [command.arguments objectAtIndex:0]];
NSString *result = [nativeSdkString stringByAppendingString: cordovaSdkString];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:result];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
-(void)isUserConnected:(CDVInvokedUrlCommand *)command {
__block CDVPluginResult *pluginResult = nil;
BOOL isUserConneced = [SCGateway.shared isUserConnected];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsBool:isUserConneced];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
-(void)triggerTransaction:(CDVInvokedUrlCommand*)command{
NSLog(@"transaction triggered");
__block CDVPluginResult *pluginResult = nil;
NSString *tranxId = [command.arguments objectAtIndex:0];
[SCGateway.shared triggerTransactionFlowWithTransactionId: tranxId presentingController:[[[UIApplication sharedApplication] keyWindow] rootViewController] completion:^(id response, NSError * error) {
if (error != nil) {
NSLog(@"%@", error.domain);
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void) {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:[NSNumber numberWithBool:false] forKey:@"success"];
[responseDict setValue:[NSNumber numberWithInteger:error.code] forKey:@"errorCode"];
[responseDict setValue:error.domain forKey:@"error"];
[responseDict setValue:[error.userInfo objectForKey: @"data"] forKey:@"data"];
[responseDict setValue:@"ERROR" forKey:@"transaction"];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
}
if ([response isKindOfClass: [ObjcTransactionIntentTransaction class]]) {
ObjcTransactionIntentTransaction *trxResponse = response ;
NSLog(@"response: %@", trxResponse.transaction);
//Decode Base64 encoded string response
NSData *decodedStringData = [[NSData alloc] initWithBase64EncodedString:trxResponse.transaction options: 0];
NSString *decodedResponse = [[NSString alloc] initWithData:decodedStringData encoding:1];
NSMutableDictionary *dict=[NSJSONSerialization JSONObjectWithData:[decodedResponse dataUsingEncoding:NSUTF8StringEncoding] options:kNilOptions error:nil];
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setObject:dict forKey:@"data"];
[responseDict setValue:[NSNumber numberWithBool:true] forKey:@"success"];
[responseDict setObject:@"TRANSACTION" forKey:@"transaction"];
//[dict setValue:tranxId forKey:@"transactionId"];
// NSMutableDictionary *responseData = [NSDictionary dictionaryWithObjectsAndKeys:dict , @"data", nil];
// [responseData setValue:@"TRANSACTION" forKey:@"transaction"];
// [responseData setValue:[NSNumber numberWithBool:true] forKey:@"success"];
NSLog(@"Decoded response %@", decodedResponse);
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
} else if([response isKindOfClass: [ObjCTransactionIntentConnect class]]) {
ObjCTransactionIntentConnect *res = response;
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:@"CONNECT" forKey:@"transaction"];
[responseDict setValue:[NSNumber numberWithBool:true] forKey:@"success"];
if (res.response != nil) {
[responseDict setValue:res.response forKey:@"data"];
}
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
} else if([response isKindOfClass: [ObjcTransactionIntentHoldingsImport class]]) {
ObjcTransactionIntentHoldingsImport *trxResponse = response ;
NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
[dict setValue: trxResponse.authToken forKey:@"smallcaseAuthToken"];
[dict setValue:[NSNumber numberWithBool:true] forKey:@"success"];
[dict setValue: trxResponse.transactionId forKey:@"transactionId"];
[dict setValue: trxResponse.broker forKey:@"broker"];
[dict setValue: trxResponse.signup forKey:@"signup"];
//[dict setValue:tranxId forKey:@"transactionId"];
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:@"HOLDING_IMPORT" forKey:@"transaction"];
[responseDict setValue:[NSNumber numberWithBool:true] forKey:@"success"];
[responseDict setValue:dict forKey:@"data"];
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
}
}];
}
- (void)launchSmallplug:(CDVInvokedUrlCommand *)command {
__block CDVPluginResult *pluginResult = nil;
NSString *targetEndpoint = [command.arguments objectAtIndex:0];
NSString *params = [command.arguments objectAtIndex:1];
SmallplugData *smallplugData = [[SmallplugData alloc] init:targetEndpoint :params];
[SCGateway.shared launchSmallPlugWithPresentingController:[[[UIApplication sharedApplication] keyWindow] rootViewController] smallplugData:smallplugData completion:^(id smallplugResponse, NSError * error) {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
if (error != nil) {
NSLog(@"%@", error.domain);
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void) {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:[NSNumber numberWithBool:false] forKey:@"success"];
[responseDict setValue:[NSNumber numberWithInteger:error.code] forKey:@"errorCode"];
[responseDict setValue:error.domain forKey:@"error"];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
} else {
if ([smallplugResponse isKindOfClass: [NSString class]]) {
NSLog(@"%@", smallplugResponse);
[responseDict setValue:[NSNumber numberWithBool: true] forKey:@"success"];
[responseDict setValue:smallplugResponse forKey:@"smallcaseAuthToken"];
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void) {
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
}
}
}];
}
- (void)launchSmallplugWithBranding:(CDVInvokedUrlCommand *)command {
__block CDVPluginResult *pluginResult = nil;
NSString *targetEndpoint = [command.arguments objectAtIndex:0];
NSString *params = [command.arguments objectAtIndex:1];
NSString *headerColor = [command.arguments objectAtIndex:2];
NSNumber *headerOpacity = [command.arguments objectAtIndex:3];
NSString *backIconColor = [command.arguments objectAtIndex:4];
NSNumber *backIconOpacity = [command.arguments objectAtIndex:5];
SmallplugData *smallplugData = [[SmallplugData alloc] init:targetEndpoint :params];
SmallplugUiConfig *smallplugUiConfig = [[SmallplugUiConfig alloc] initWithSmallplugHeaderColor:headerColor headerColorOpacity:headerOpacity backIconColor:backIconColor backIconColorOpacity:backIconOpacity];
[SCGateway.shared launchSmallPlugWithPresentingController:[[[UIApplication sharedApplication] keyWindow] rootViewController] smallplugData:smallplugData smallplugUiConfig: smallplugUiConfig completion:^(id smallplugResponse, NSError * error) {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
if (error != nil) {
NSLog(@"%@", error.domain);
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void) {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:[NSNumber numberWithBool:false] forKey:@"success"];
[responseDict setValue:[NSNumber numberWithInteger:error.code] forKey:@"errorCode"];
[responseDict setValue:error.domain forKey:@"error"];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
} else {
if ([smallplugResponse isKindOfClass: [NSString class]]) {
NSLog(@"%@", smallplugResponse);
[responseDict setValue:[NSNumber numberWithBool: true] forKey:@"success"];
[responseDict setValue:smallplugResponse forKey:@"smallcaseAuthToken"];
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void) {
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
});
}
}
}];
}
-(void)initSDK:(CDVInvokedUrlCommand*)command{
__block CDVPluginResult *pluginResult = nil;
NSString *authToken = [command.arguments objectAtIndex:0];
NSLog(@"SdkToken %@", authToken);
[SCGateway.shared initializeGatewayWithSdkToken:authToken completion:^( BOOL success, NSError * error) {
if(success){
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:[NSNumber numberWithBool:true] forKey:@"success"];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
} else {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:[NSNumber numberWithBool:false] forKey:@"success"];
if(error != nil)
{
[responseDict setValue:[NSNumber numberWithInteger:error.code] forKey:@"errorCode"];
[responseDict setValue:error.domain forKey:@"error"];
}
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
}];
}
- (void)setConfigEnvironment:(CDVInvokedUrlCommand*)command{
NSLog(@"init Called Ios");
__block CDVPluginResult *pluginResult = nil;
NSString *environmentStr = [command.arguments objectAtIndex:0];
NSString *gatewayName = [command.arguments objectAtIndex:1];
BOOL isLeprechaun = [[command.arguments objectAtIndex:2] boolValue];
BOOL isAmoEnabled = YES;//[[command.arguments objectAtIndex:3] boolValue];
NSInteger environment = EnvironmentProduction;
NSArray *brokerConfig = nil;
//NSLog(@"isLeprechaun %@",[command.arguments objectAtIndex:2]);
NSLog(isLeprechaun ? @"true" : @"false");
@try {
if([[command.arguments objectAtIndex:3] isKindOfClass:[NSArray class]]){
brokerConfig = [command.arguments objectAtIndex:3];
}
}
@catch (NSException *exception) {
}
@try {
if([[command.arguments objectAtIndex:3] isKindOfClass:[NSArray class]]){
BOOL newBOOl = [[command.arguments objectAtIndex:4] boolValue];
isAmoEnabled = newBOOl;
} else {
BOOL newBOOl = [[command.arguments objectAtIndex:3] boolValue];
isAmoEnabled = newBOOl;
}
}
@catch (NSException *exception) {
}
if([environmentStr isEqualToString:@"production"]) {
environment = EnvironmentProduction;
}
else if([environmentStr isEqualToString:@"development"]) {
environment = EnvironmentDevelopment;
} else {
environment = EnvironmentStaging;
}
GatewayConfig *config = [[GatewayConfig alloc] initWithGatewayName:gatewayName brokerConfig:brokerConfig apiEnvironment:environment isLeprechaunActive: isLeprechaun ? true : false isAmoEnabled:isAmoEnabled ? true : false];
[SCGateway.shared setupWithConfig:config completion:^(BOOL success,NSError * error){
if(success)
{
CDVPluginResult *pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
} else {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:[NSNumber numberWithBool:false] forKey:@"success"];
if(error != nil)
{
[responseDict setValue:[NSNumber numberWithInteger:error.code] forKey:@"errorCode"];
[responseDict setValue:error.domain forKey:@"error"];
}
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
}];
}
- (void)triggerLeadGenWithStatus:(CDVInvokedUrlCommand*)command{
NSDictionary *dict = [command.arguments objectAtIndex:0];
[SCGateway.shared triggerLeadGenWithPresentingController:[[[UIApplication sharedApplication] keyWindow] rootViewController] params:dict completion:^(NSString * leadStatusResponse) {
CDVPluginResult *pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:leadStatusResponse];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}];
}
- (void)triggerLeadGen:(CDVInvokedUrlCommand*)command{
NSDictionary *dict = [command.arguments objectAtIndex:0];
[SCGateway.shared triggerLeadGenWithPresentingController:[[[UIApplication sharedApplication] keyWindow] rootViewController] params:dict];
}
//MARK: logout
- (void)logout:(CDVInvokedUrlCommand*)command{
__block CDVPluginResult *pluginResult = nil;
[SCGateway.shared logoutUserWithPresentingController:[[[UIApplication sharedApplication] keyWindow] rootViewController] completion:^(BOOL success, NSError * error) {
if(success) {
CDVPluginResult *pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
} else {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
[responseDict setValue:[NSNumber numberWithBool:false] forKey:@"success"];
if(error != nil)
{
[responseDict setValue:[NSNumber numberWithInteger:error.code] forKey:@"errorCode"];
[responseDict setValue:error.domain forKey:@"error"];
}
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
}];
}
//MARK: Show orders
- (void) showOrders:(CDVInvokedUrlCommand *)command {
__block CDVPluginResult *pluginResult = nil;
[SCGateway.shared showOrdersWithPresentingController:[[[UIApplication sharedApplication] keyWindow] rootViewController] completion:^(BOOL success, NSError * error) {
if (success) {
CDVPluginResult *pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
} else {
NSMutableDictionary *responseDict = [[NSMutableDictionary alloc] init];
if(error != nil) {
[responseDict setValue:[NSNumber numberWithInteger:error.code] forKey:@"errorCode"];
[responseDict setValue:error.domain forKey:@"error"];
[responseDict setValue:[error.userInfo objectForKey: @"data"] forKey:@"data"];
}
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:responseDict];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
}];
}
@end