swiftApi.swift
41.6 KB
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
//
// swiftApi.swift
// WarplySDKFrameworkIOS
//
// Created by Βασιλης Σκουρας on 21/4/22.
//
import Foundation
import SwiftUI
public class swiftApi {
public init() {
}
public func getUserTag() -> String {
return "1"
}
public class DFY {
let couponCode: String?
let merchantId: String?
init(couponCode: String, merchantId: String) {
self.couponCode = couponCode
self.merchantId = merchantId
}
}
public func setDFY(couponCode: String, merchantId: String) {
DFY.init(couponCode: couponCode, merchantId: merchantId)
}
public class activeDFYCoupons {
let campaignIds: Array<String>
init(campaignIds: Array<String>) {
self.campaignIds = campaignIds
}
}
public func setActiveDFYCoupons(campaignIds: Array<String>) {
activeDFYCoupons.init(campaignIds: campaignIds)
}
public class CCMSLoyaltyCampaigns {
let campaigns: Array<Dictionary<String, String>>
init(campaigns: Array<Dictionary<String, String>>) {
self.campaigns = campaigns
}
}
public func setCCMSLoyaltyCampaigns(campaigns: Array<LoyaltyContextualOfferModel>) {
let ccmsCampaign: Array<LoyaltyContextualOfferModel> = campaigns
}
public func getActiveDFYCoupons() -> Array<String>{
let array: Array<String> = []
return array
}
public class CouponSetItemModel {
public let uuid: String?
public let admin_name: String?
public let name: String?
public let img_preview: String?
public let expiration: String?
public let description: String?
public let short_description: String?
public let discount: String?
public let sorting: Int?
public let inner_text: String?
public let buyable: Bool?
public let visible: Bool?
public let terms: String?
public init(dictionary: [String: Any]) {
self.uuid = dictionary["uuid"] as? String? ?? ""
self.admin_name = dictionary["admin_name"] as? String? ?? ""
self.name = dictionary["name"] as? String? ?? ""
self.img_preview = dictionary["img_preview"] as? String? ?? ""
self.description = dictionary["description"] as? String? ?? ""
self.short_description = dictionary["short_description"] as? String? ?? ""
self.discount = dictionary["discount"] as? String? ?? ""
self.sorting = dictionary["sorting"] as? Int? ?? nil
self.inner_text = dictionary["inner_text"] as? String? ?? ""
self.buyable = dictionary["buyable"] as? Bool? ?? false
self.visible = dictionary["visible"] as? Bool? ?? false
self.terms = dictionary["terms"] as? String? ?? ""
let expirationObject = dictionary["expiration"] as? [String: Any]? ?? ["":""]
let expirationString = expirationObject?["value"] as? String? ?? ""
// Example expirationString: Optional(2022-12-05 01:55)
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd hh:mm"
if let date = dateFormatter.date(from: expirationString ?? "") {
dateFormatter.dateFormat = "dd/MM/yyyy"
let resultString = dateFormatter.string(from: date)
self.expiration = resultString
} else {
self.expiration = ""
}
}
// var asDictionary : [String:Any] {
// let mirror = Mirror(reflecting: self)
// let dict = Dictionary(uniqueKeysWithValues: mirror.children.lazy.map({ (label:String?, value:Any) -> (String, Any)? in
// guard let label = label else { return nil }
// return (label, value)
// }).compactMap { $0 })
// return dict
// }
}
public class CouponSetsDataModel {
var data: Array<CouponSetItemModel> = []
init() {
}
var getData: Array<CouponSetItemModel> {
get { // getter
return data
}
}
func getCouponSetsData(_ getCouponSetsCallback: @escaping (_ couponSetsData: Array<CouponSetItemModel>?) -> Void) -> Void {
let instanceOfMyApi = MyApi()
var couponSets: [AnyHashable : Any]?
var couponSetsArray:Array<CouponSetItemModel> = []
instanceOfMyApi.getCouponsetsAsync(true, andVisible: true, andUuids: nil, couponSetsCallback, failureBlock: couponSetsFailureCallback)
func couponSetsCallback(_ couponSetsData: [AnyHashable : Any]?) -> Void {
couponSets = couponSetsData ?? ["":""]
if let myCouponsSetsDictionary = couponSets as? [String : AnyObject] {
let couponSetsData = (myCouponsSetsDictionary["MAPP_COUPON"] as! NSArray)
for couponset in couponSetsData {
let tempCouponset = CouponSetItemModel(dictionary: couponset as! [String : Any])
couponSetsArray.append(tempCouponset)
}
}
getCouponSetsCallback(couponSetsArray)
}
func couponSetsFailureCallback(_ error: Error?) -> Void {
print("getCouponSets error: ")
getCouponSetsCallback(nil)
}
}
}
public func getCouponSetsAsync(_ getCouponSetsCallback: @escaping (_ couponSetsData: Array<CouponSetItemModel>?) -> Void) -> Void {
CouponSetsDataModel().getCouponSetsData(getCouponSetsCallback)
}
public func getCouponSets() -> Array<CouponSetItemModel> {
return CouponSetsDataModel().getData
}
public class CouponItemModel {
public let couponset_uuid: String?
public let name: String?
public let image: String?
public let expiration: String?
public let description: String?
public let discount: String?
public let coupon: String?
public let category: String?
public let barcode: String?
public let status: Int?
public var couponset_data: CouponSetItemModel?
public init(dictionary: [String: Any]) {
self.couponset_uuid = dictionary["couponset_uuid"] as? String? ?? ""
self.name = dictionary["name"] as? String? ?? ""
self.image = dictionary["image"] as? String? ?? ""
self.description = dictionary["description"] as? String? ?? ""
self.discount = dictionary["discount"] as? String? ?? ""
self.coupon = dictionary["coupon"] as? String? ?? ""
self.category = dictionary["category"] as? String? ?? ""
self.barcode = dictionary["barcode"] as? String? ?? ""
self.status = dictionary["status"] as? Int? ?? nil
if let couponSetData = dictionary["couponset_data"] as? [String: Any]? ?? ["":""] {
let tempCouponset = CouponSetItemModel(dictionary: couponSetData)
self.couponset_data = tempCouponset
} else {
self.couponset_data = nil
}
let expirationString = dictionary["expiration"] as? String? ?? ""
// Example expirationString: Optional(2022-12-05 01:55)
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss"
if let date = dateFormatter.date(from: expirationString ?? "") {
dateFormatter.dateFormat = "dd/MM/yyyy"
let resultString = dateFormatter.string(from: date)
self.expiration = resultString
} else {
self.expiration = ""
}
}
public func setCouponSetData(_ couponSet: CouponSetItemModel) {
self.couponset_data = couponSet
}
// var asDictionary : [String:Any] {
// let mirror = Mirror(reflecting: self)
// let dict = Dictionary(uniqueKeysWithValues: mirror.children.lazy.map({ (label:String?, value:Any) -> (String, Any)? in
// guard let label = label else { return nil }
// return (label, value)
// }).compactMap { $0 })
// return dict
// }
}
public class CouponsDataModel {
var data: Array<CouponItemModel> = []
init() { //initializer method
}
var getData: Array<CouponItemModel> {
get { // getter
return data.filter({
return $0.status == 1
})
}
}
var getOldCoupons: Array<CouponItemModel> {
get { // getter
return data.filter({
return $0.status != 1
})
}
}
func getCouponsData(_ getCouponsCallback: @escaping (_ couponsData: Array<CouponItemModel>?) -> Void) -> Void {
var coupons: [AnyHashable : Any]?
var couponSets: [AnyHashable : Any]?
let instanceOfMyApi = MyApi()
instanceOfMyApi.getCouponsWithSuccessBlock(couponsCallback, failureBlock: (couponsFailureCallback))
func couponsCallback(_ couponsData: [AnyHashable : Any]?) -> Void {
coupons = couponsData ?? ["":""]
// On Coupons request success, make CouponSets request
instanceOfMyApi.getCouponsetsAsync(true, andVisible: true, andUuids: nil, couponSetsCallback, failureBlock: couponSetsFailureCallback)
}
func couponsFailureCallback(_ error: Error?) -> Void {
print("getCoupons error: ")
getCouponsCallback(nil)
}
func couponSetsCallback(_ couponSetsData: [AnyHashable : Any]?) -> Void {
couponSets = couponSetsData ?? ["":""]
// On CouponSets request Success, match coupons with couponsets
let tempCoupons = matchCoupons()
getCouponsCallback(tempCoupons)
}
func couponSetsFailureCallback(_ error: Error?) -> Void {
print("getCouponSets error: ")
getCouponsCallback(nil)
}
func matchCoupons() -> Array<CouponItemModel> {
var couponsArray:Array<CouponItemModel> = []
if let myCouponsSetsDictionary = couponSets as? [String : AnyObject] {
let couponSetsData = (myCouponsSetsDictionary["MAPP_COUPON"] as! Array<NSMutableDictionary>)
if let myCouponsDictionary = coupons as? [String : AnyObject] {
let couponsData = (myCouponsDictionary["result"] as! Array<NSMutableDictionary>)
if let sets = couponSetsData as? NSArray {
for set in sets {
let s = set as! NSDictionary
if let cpns = couponsData as? NSArray {
for coupon in cpns {
var c = coupon as! NSDictionary
// var temp = NSMutableDictionary(dictionary: s);
if c["couponset_uuid"] as! String == s["uuid"] as! String {
let temp = NSMutableDictionary(dictionary: c);
temp.setValue(s as! [AnyHashable : Any],forKey: "couponset_data")
let tempCoupon = CouponItemModel(dictionary: temp as! [String : Any])
couponsArray.append(tempCoupon)
}
}
}
}
}
}
}
// if let myCouponsDictionary = coupons as? [String : AnyObject] {
// let couponsData = (myCouponsDictionary["result"] as! NSArray)
//
//
// for coupon in couponsData {
// let tempCoupon = CouponItemModel(dictionary: coupon as! [String : Any])
// couponsArray.append(tempCoupon)
// }
//
// }
return couponsArray
}
}
}
public func filterActiveCoupons(_ coupons: Array<CouponItemModel>) -> Array<CouponItemModel> {
return coupons.filter({
return $0.status == 1
})
}
public func filterOldCoupons(_ coupons: Array<CouponItemModel>) -> Array<CouponItemModel> {
return coupons.filter({
return $0.status != 1
})
}
public func getCouponsAsync(_ getCouponsCallback: @escaping (_ couponsData: Array<CouponItemModel>?) -> Void) -> Void {
CouponsDataModel().getCouponsData(getCouponsCallback)
}
public class func getCoupons() -> Array<CouponItemModel> {
return CouponsDataModel().getData
}
public func getOldCoupons() -> Array<CouponItemModel> {
return CouponsDataModel().getOldCoupons
}
public class CampaignItemModel {
public let index_url: String?
public let logo_url: String?
public let offer_category: String?
public let title: String?
public let subtitle: String?
public let session_uuid: String?
public let subcategory: String?
init(dictionary: [String: Any]) {
self.index_url = dictionary["index_url"] as? String? ?? ""
self.logo_url = dictionary["logo_url"] as? String? ?? ""
self.offer_category = dictionary["offer_category"] as? String? ?? ""
self.title = dictionary["title"] as? String? ?? ""
self.subtitle = dictionary["subtitle"] as? String? ?? ""
self.session_uuid = dictionary["session_uuid"] as? String? ?? ""
// let extra_fields = dictionary["extra_fields"] as? [String: Any]? ?? ["":""]
let extra_fields = dictionary["extra_fields"] as AnyObject
var extra_fields_parsed:[String: Any]
let json = extra_fields.data(using: String.Encoding.utf8.rawValue)
do {
if let jsonArray = try JSONSerialization.jsonObject(with: json!, options: .allowFragments) as? [String:AnyObject]
{
extra_fields_parsed = jsonArray;
self.subcategory = extra_fields_parsed["subcategory"] as? String? ?? ""
} else {
self.subcategory = ""
print("bad json")
}
} catch let error as NSError {
self.subcategory = ""
print(error)
}
}
}
public class CampaignDataModel {
var data: Array<CampaignItemModel> = []
init() {
}
var getData: Array<CampaignItemModel> {
get { // getter
return data
}
}
func getCampaignsData(_ getCampaignsCallback: @escaping (_ campaignsData: Array<CampaignItemModel>?) -> Void) -> Void {
let instanceOfMyApi = MyApi()
instanceOfMyApi.getInboxAsync(campaignsCallback, failureBlock: campaignsFailureCallback)
func campaignsCallback(_ campaignsData: [Any]?) -> Void {
var campaignsArray:Array<CampaignItemModel> = []
for item in campaignsData ?? [] {
let tempCampaign = CampaignItemModel(dictionary: item as! [String : Any])
campaignsArray.append(tempCampaign)
}
getCampaignsCallback(campaignsArray);
}
func campaignsFailureCallback(_ error: Error?) -> Void {
print("getCampaigns error: ")
getCampaignsCallback(nil)
}
}
}
public func getCampaignsAsync(_ getCampaignsCallback: @escaping (_ campaignsData: Array<CampaignItemModel>?) -> Void) -> Void {
CampaignDataModel().getCampaignsData(getCampaignsCallback)
}
public func getCampaigns() -> Array<CampaignItemModel> {
return CampaignDataModel().getData
}
public class LoyaltyContextualOfferModel {
private var sessionId: String
private var eligibleAssets: Array<String>
private var id: String
private var businessAdditionalId: String
private var treatmentCode: String
public init(sessionId: String?, eligibleAssets: Array<String>?, id: String?, businessAdditionalId: String?, treatmentCode: String?) {
self.sessionId = sessionId ?? ""
self.eligibleAssets = eligibleAssets ?? []
self.id = id ?? ""
self.businessAdditionalId = businessAdditionalId ?? ""
self.treatmentCode = treatmentCode ?? ""
}
public init() {
self.sessionId = ""
self.eligibleAssets = []
self.id = ""
self.businessAdditionalId = ""
self.treatmentCode = ""
}
public var _sessionId: String {
get { // getter
return self.sessionId
}
set(newValue) { //setter
self.sessionId = newValue
}
}
public var _eligibleAssets: Array<String> {
get { // getter
return self.eligibleAssets
}
set(newValue) { //setter
self.eligibleAssets = newValue
}
}
public var _id: String {
get { // getter
return self.id
}
set(newValue) { //setter
self.id = newValue
}
}
public var _businessAdditionalId: String {
get { // getter
return self.businessAdditionalId
}
set(newValue) { //setter
self.businessAdditionalId = newValue
}
}
public var _treatmentCode: String {
get { // getter
return self.treatmentCode
}
set(newValue) { //setter
self.treatmentCode = newValue
}
}
}
// public func openCoupon(parent: UIView, coupon: CouponSetItemModel) -> UIViewController {
// return UIHostingController(rootView: CouponView(parentView: parent, coupon: coupon))
// }
//
// public func openCouponBarcode(parent: UIView, coupon: CouponItemModel) -> UIViewController {
// return UIHostingController(rootView: CouponBarcodeView(parentView: parent, coupon: coupon))
// }
//
// public func openSteps(parent: UIView) -> UIViewController {
// return UIHostingController(rootView: StepsView(parentView: parent))
// }
public class ProfileModel {
public let ack_optin: Bool?
public let billing_info: [String: Any]?
public let birthday: String?
public let burnt_points: Double?
public let company_name: String?
public let consumer_metadata: [String: Any]?
public let display_name: String?
public let email: String?
public let firstname: String?
public let gender: String?
public let image_url: String?
public let language: String?
public let lastname: String?
public let loyalty_id: String?
public let msisdn: String?
public let nameday: String?
public let nickname: String?
public let password_set: Bool?
public let profile_metadata: [String: Any]?
public let redeemed_points: Double?
public let retrieved_points: Double?
public let salutation: String?
public let subscribe: Bool?
public let tags: [String: Any]?
public let tax_id: String?
public let user_points: Double?
public let uuid: String?
public let verified: Bool?
// optin
public let optin_newsletter: Bool?
public let optin_sms: Bool?
public let optin_segmentation: Bool?
public let optin_sms_segmentation: Bool?
init(dictionary: [String: Any]) {
self.ack_optin = dictionary["ack_optin"] as? Bool? ?? false
self.billing_info = dictionary["billing_info"] as? [String: Any]? ?? ["":""]
self.birthday = dictionary["birthday"] as? String? ?? ""
self.burnt_points = dictionary["burnt_points"] as? Double? ?? 0.0
self.company_name = dictionary["company_name"] as? String? ?? ""
self.consumer_metadata = dictionary["consumer_metadata"] as? [String: Any]? ?? ["":""]
self.display_name = dictionary["display_name"] as? String? ?? ""
self.email = dictionary["email"] as? String? ?? ""
self.firstname = dictionary["firstname"] as? String? ?? ""
self.gender = dictionary["gender"] as? String? ?? ""
self.image_url = dictionary["image_url"] as? String? ?? ""
self.language = dictionary["language"] as? String? ?? ""
self.lastname = dictionary["lastname"] as? String? ?? ""
self.loyalty_id = dictionary["loyalty_id"] as? String? ?? ""
self.msisdn = dictionary["msisdn"] as? String? ?? ""
self.nameday = dictionary["nameday"] as? String? ?? ""
self.nickname = dictionary["nickname"] as? String? ?? ""
self.password_set = dictionary["password_set"] as? Bool? ?? false
self.profile_metadata = dictionary["profile_metadata"] as? [String: Any]? ?? ["":""]
self.redeemed_points = dictionary["redeemed_points"] as? Double? ?? 0.0
self.retrieved_points = dictionary["retrieved_points"] as? Double? ?? 0.0
self.salutation = dictionary["salutation"] as? String? ?? ""
self.subscribe = dictionary["subscribe"] as? Bool? ?? false
self.tags = dictionary["tags"] as? [String: Any]? ?? ["":""]
self.tax_id = dictionary["tax_id"] as? String? ?? ""
self.user_points = dictionary["user_points"] as? Double? ?? 0.0
self.uuid = dictionary["uuid"] as? String? ?? ""
self.verified = dictionary["verified"] as? Bool? ?? false
// optin
let optin = dictionary["optin"] as? [String: Any]? ?? ["":""]
self.optin_newsletter = optin?["newsletter"] as? Bool? ?? false
self.optin_sms = optin?["sms"] as? Bool? ?? false
self.optin_segmentation = optin?["segmentation"] as? Bool? ?? false
self.optin_sms_segmentation = optin?["sms_segmentation"] as? Bool? ?? false
}
}
public class ProfileDataModel {
init() {
}
func getProfileData(_ getProfileCallback: @escaping (_ profileData: ProfileModel?) -> Void) -> Void {
let instanceOfMyApi = MyApi()
instanceOfMyApi.getProfileAsync(profileCallback, failureBlock: profileFailureCallback)
func profileCallback(_ profileData: [AnyHashable: Any]?) -> Void {
if let profileDataDictionary = profileData as? [String : AnyObject] {
let profileDataResult = (profileDataDictionary["result"] as? [String: Any] ?? ["":""])
let tempProfile = ProfileModel(dictionary: profileDataResult)
getProfileCallback(tempProfile);
} else {
getProfileCallback(nil)
}
}
func profileFailureCallback(_ error: Error?) -> Void {
print("getProfile error: ")
getProfileCallback(nil)
}
}
}
public func getProfileAsync(_ getProfileCallback: @escaping (_ profileData: ProfileModel?) -> Void) -> Void {
ProfileDataModel().getProfileData(getProfileCallback)
}
public class VerifyTicketResponseModel {
public let result: String?
public let status: Int?
init(dictionary: [String: Any]) {
self.result = dictionary["result"] as? String? ?? ""
self.status = dictionary["status"] as? Int? ?? -1
}
public var getResult: String {
get { // getter
return self.result ?? ""
}
}
}
public class VerifyTicketModel {
init() {
}
func verifyTicket(guid: String, ticket: String, _ verifyTicketCallback: @escaping (_ verifyTicketData: VerifyTicketResponseModel?) -> Void) -> Void {
let instanceOfMyApi = MyApi()
instanceOfMyApi.verifyTicketAsync(guid, ticket, verifyAsyncCallback, failureBlock: verifyAsyncFailureCallback)
func verifyAsyncCallback(_ verifyTicketData: [AnyHashable: Any]?) -> Void {
if let verifyTicketDataDictionary = verifyTicketData as? [String: Any] {
let tempResponse = VerifyTicketResponseModel(dictionary: verifyTicketDataDictionary)
verifyTicketCallback(tempResponse);
} else {
verifyTicketCallback(nil)
}
}
func verifyAsyncFailureCallback(_ error: Error?) -> Void {
print("verifyTicket error: ")
print(error)
print("====================")
verifyTicketCallback(nil)
}
}
}
public func verifyTicketAsync(guid: String, ticket: String, _ verifyTicketCallback: @escaping (_ verifyTicketData: VerifyTicketResponseModel?) -> Void) -> Void {
VerifyTicketModel().verifyTicket(guid: guid, ticket: ticket, verifyTicketCallback)
}
public class WarplyPacingModel {
private var tree_co2_year: Double
private var tree_co2_month: Double
private var tree_co2_week: Double
private var tree_co2_day: Double
private var car_distance_year: Double
private var car_distance_month: Double
private var car_distance_week: Double
private var car_distance_day: Double
private var car_consumption_year: Double
private var car_consumption_month: Double
private var car_consumption_week: Double
private var car_consumption_day: Double
private var car_co2_year: Double
private var car_co2_month: Double
private var car_co2_week: Double
private var car_co2_day: Double
private var walking_distance_year: Double
private var walking_distance_month: Double
private var walking_distance_week: Double
private var walking_distance_day: Double
private var liters_saved_year: Double
private var liters_saved_month: Double
private var liters_saved_week: Double
private var liters_saved_day: Double
private var co2_saved_year: Double
private var co2_saved_month: Double
private var co2_saved_week: Double
private var co2_saved_day: Double
public init() {
self.tree_co2_year = 0.0
self.tree_co2_month = 0.0
self.tree_co2_week = 0.0
self.tree_co2_day = 0.0
self.car_distance_year = 0.0
self.car_distance_month = 0.0
self.car_distance_week = 0.0
self.car_distance_day = 0.0
self.car_consumption_year = 0.0
self.car_consumption_month = 0.0
self.car_consumption_week = 0.0
self.car_consumption_day = 0.0
self.car_co2_year = 0.0
self.car_co2_month = 0.0
self.car_co2_week = 0.0
self.car_co2_day = 0.0
self.walking_distance_year = 0.0
self.walking_distance_month = 0.0
self.walking_distance_week = 0.0
self.walking_distance_day = 0.0
self.liters_saved_year = 0.0
self.liters_saved_month = 0.0
self.liters_saved_week = 0.0
self.liters_saved_day = 0.0
self.co2_saved_year = 0.0
self.co2_saved_month = 0.0
self.co2_saved_week = 0.0
self.co2_saved_day = 0.0
}
public var _tree_co2_year: Double {
get { // getter
return self.tree_co2_year
}
set(newValue) { //setter
self.tree_co2_year = newValue
}
}
public var _tree_co2_month: Double {
get { // getter
return self.tree_co2_month
}
set(newValue) { //setter
self.tree_co2_month = newValue
}
}
public var _tree_co2_week: Double {
get { // getter
return self.tree_co2_week
}
set(newValue) { //setter
self.tree_co2_week = newValue
}
}
public var _tree_co2_day: Double {
get { // getter
return self.tree_co2_day
}
set(newValue) { //setter
self.tree_co2_day = newValue
}
}
public var _car_distance_year: Double {
get { // getter
return self.car_distance_year
}
set(newValue) { //setter
self.car_distance_year = newValue
}
}
public var _car_distance_month: Double {
get { // getter
return self.car_distance_month
}
set(newValue) { //setter
self.car_distance_month = newValue
}
}
public var _car_distance_week: Double {
get { // getter
return self.car_distance_week
}
set(newValue) { //setter
self.car_distance_week = newValue
}
}
public var _car_distance_day: Double {
get { // getter
return self.car_distance_day
}
set(newValue) { //setter
self.car_distance_day = newValue
}
}
public var _car_consumption_year: Double {
get { // getter
return self.car_consumption_year
}
set(newValue) { //setter
self.car_consumption_year = newValue
}
}
public var _car_consumption_month: Double {
get { // getter
return self.car_consumption_month
}
set(newValue) { //setter
self.car_consumption_month = newValue
}
}
public var _car_consumption_week: Double {
get { // getter
return self.car_consumption_week
}
set(newValue) { //setter
self.car_consumption_week = newValue
}
}
public var _car_consumption_day: Double {
get { // getter
return self.car_consumption_day
}
set(newValue) { //setter
self.car_consumption_day = newValue
}
}
public var _car_co2_year: Double {
get { // getter
return self.car_co2_year
}
set(newValue) { //setter
self.car_co2_year = newValue
}
}
public var _car_co2_month: Double {
get { // getter
return self.car_co2_month
}
set(newValue) { //setter
self.car_co2_month = newValue
}
}
public var _car_co2_week: Double {
get { // getter
return self.car_co2_week
}
set(newValue) { //setter
self.car_co2_week = newValue
}
}
public var _car_co2_day: Double {
get { // getter
return self.car_co2_day
}
set(newValue) { //setter
self.car_co2_day = newValue
}
}
public var _walking_distance_year: Double {
get { // getter
return self.walking_distance_year
}
set(newValue) { //setter
self.walking_distance_year = newValue
}
}
public var _walking_distance_month: Double {
get { // getter
return self.walking_distance_month
}
set(newValue) { //setter
self.walking_distance_month = newValue
}
}
public var _walking_distance_week: Double {
get { // getter
return self.walking_distance_week
}
set(newValue) { //setter
self.walking_distance_week = newValue
}
}
public var _walking_distance_day: Double {
get { // getter
return self.walking_distance_day
}
set(newValue) { //setter
self.walking_distance_day = newValue
}
}
public var _liters_saved_year: Double {
get { // getter
return self.liters_saved_year
}
set(newValue) { //setter
self.liters_saved_year = newValue
}
}
public var _liters_saved_month: Double {
get { // getter
return self.liters_saved_month
}
set(newValue) { //setter
self.liters_saved_month = newValue
}
}
public var _liters_saved_week: Double {
get { // getter
return self.liters_saved_week
}
set(newValue) { //setter
self.liters_saved_week = newValue
}
}
public var _liters_saved_day: Double {
get { // getter
return self.liters_saved_day
}
set(newValue) { //setter
self.liters_saved_day = newValue
}
}
public var _co2_saved_year: Double {
get { // getter
return self.co2_saved_year
}
set(newValue) { //setter
self.co2_saved_year = newValue
}
}
public var _co2_saved_month: Double {
get { // getter
return self.co2_saved_month
}
set(newValue) { //setter
self.co2_saved_month = newValue
}
}
public var _co2_saved_week: Double {
get { // getter
return self.co2_saved_week
}
set(newValue) { //setter
self.co2_saved_week = newValue
}
}
public var _co2_saved_day: Double {
get { // getter
return self.co2_saved_day
}
set(newValue) { //setter
self.co2_saved_day = newValue
}
}
}
public class LoyaltySDKFirebaseEventModel {
private var eventName: String
private var parameters: [String: String]
public init() {
self.eventName = ""
self.parameters = [String: String]()
}
public var _eventName: String {
get { // getter
return self.eventName
}
set(newValue) { //setter
self.eventName = newValue
}
}
public var _parameters: [String: String] {
get { // getter
return self.parameters
}
set(newValue) { //setter
self.parameters = newValue
}
}
public var setParameter: (key: String, value: String) {
@available(*, unavailable)
get {
// fatalError("You cannot read from this object.")
return (key: "", value: "")
}
set(newValue) { //setter
self.parameters.updateValue(newValue.1, forKey: newValue.0)
}
}
}
public func constructCampaignUrl(_ campaign: CampaignItemModel) -> String {
return campaign.index_url ?? ""
}
public func constructCcmsUrl(_ campaign: LoyaltyContextualOfferModel) -> String {
return ""
}
public class LoyaltyGiftsForYouOfferClickEvent {
private var title: String
private var imageUrl: String
private var loyaltyPackageId: String
public init() {
self.title = ""
self.imageUrl = ""
self.loyaltyPackageId = ""
}
public var _title: String {
get { // getter
return self.title
}
set(newValue) { //setter
self.title = newValue
}
}
public var _imageUrl: String {
get { // getter
return self.imageUrl
}
set(newValue) { //setter
self.imageUrl = newValue
}
}
public var _loyaltyPackageId: String {
get { // getter
return self.loyaltyPackageId
}
set(newValue) { //setter
self.loyaltyPackageId = newValue
}
}
}
public class CustomerStateModel {
private var nonTelco: Bool
private var acceptedConsent: Bool
public init() {
self.nonTelco = false
self.acceptedConsent = false
}
public var _nonTelco: Bool {
get { // getter
return self.nonTelco
}
set(newValue) { //setter
self.nonTelco = newValue
}
}
public var _acceptedConsent: Bool {
get { // getter
return self.acceptedConsent
}
set(newValue) { //setter
self.acceptedConsent = newValue
}
}
}
public func loadCustomerState(_ customer: CustomerStateModel) -> Void {
}
public class LoyaltySDKDeeplinkEventModel {
private var deeplinkUrl: String
private var parameters: [String: Any]
public init() {
self.deeplinkUrl = ""
self.parameters = [String: Any]()
}
public var _deeplinkUrl: String {
get { // getter
return self.deeplinkUrl
}
set(newValue) { //setter
self.deeplinkUrl = newValue
}
}
public var _parameters: [String: Any] {
get { // getter
return self.parameters
}
set(newValue) { //setter
self.parameters = newValue
}
}
}
public class WarplyPacingCardEventModel {
private var isVisible: Bool
public init() {
self.isVisible = false
}
public var _isVisible: Bool {
get { // getter
return self.isVisible
}
set(newValue) { //setter
self.isVisible = newValue
}
}
}
public class WarplyPacingCardServiceEnabledModel {
private var isEnabled: Bool
public init() {
self.isEnabled = false
}
public var _isEnabled: Bool {
get { // getter
return self.isEnabled
}
set(newValue) { //setter
self.isEnabled = newValue
}
}
}
public func openQuestionnaire(_ controller: UIViewController) -> Void {
for item in GlobalVariables.campaigns {
if (item.offer_category == "questionnaire") {
let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self))
let vc = storyboard.instantiateViewController(withIdentifier: "CampaignViewController") as! CampaignViewController
vc.campaignUrl = item.index_url ?? ""
controller.navigationController?.pushViewController(vc, animated: true)
break;
}
}
}
public func setCampaignList(_ campaigns: Array<CampaignItemModel>) -> Void {
GlobalVariables.campaigns = campaigns
}
}