Manos Chorianopoulos

add redeemCouponSetAsync request

...@@ -80,14 +80,31 @@ import UIKit ...@@ -80,14 +80,31 @@ import UIKit
80 } 80 }
81 } 81 }
82 82
83 + func redeemCouponSetRequest(uuid: String) {
84 + swiftApi().redeemCouponSetAsync(uuid: uuid, redeemCouponSetCallback)
85 + }
86 +
87 + func redeemCouponSetCallback (_ response: swiftApi.GenericResponseModel?) -> Void {
88 + if (response != nil) {
89 + DispatchQueue.main.async {
90 + if (response?.getStatus == 1) {
91 + // Do something
92 + }
93 + }
94 + } else {
95 + }
96 + }
97 +
83 // MARK: - Actions 98 // MARK: - Actions
84 99
85 @IBAction func redeemButtomAction(_ sender: Any) { 100 @IBAction func redeemButtomAction(_ sender: Any) {
86 // SwiftEventBus.post("couponRedeem", sender: coupon) 101 // SwiftEventBus.post("couponRedeem", sender: coupon)
87 102
88 - let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self)) 103 + redeemCouponSetRequest(uuid: couponset?.uuid ?? "")
89 - let vc = storyboard.instantiateViewController(withIdentifier: "MakeItAPresentViewController") as UIViewController 104 +
90 - self.navigationController?.pushViewController(vc, animated: true) 105 + // let storyboard = UIStoryboard(name: "Main", bundle: Bundle(for: MyEmptyClass.self))
106 + // let vc = storyboard.instantiateViewController(withIdentifier: "MakeItAPresentViewController") as UIViewController
107 + // self.navigationController?.pushViewController(vc, animated: true)
91 } 108 }
92 109
93 @IBAction func termsButtonAction(_ sender: Any) { 110 @IBAction func termsButtonAction(_ sender: Any) {
......
...@@ -82,6 +82,7 @@ ...@@ -82,6 +82,7 @@
82 - (void)verifyTicketAsync:(NSString*)guid :(NSString*)ticket :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure; 82 - (void)verifyTicketAsync:(NSString*)guid :(NSString*)ticket :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure;
83 - (void)getProfileAsync:(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure; 83 - (void)getProfileAsync:(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure;
84 - (void)consumerIntegrationAsync:(NSNumber*)nonTelco :(NSNumber*)acceptedConsent :(NSArray*)msisdnList :(NSString*)guid :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure; 84 - (void)consumerIntegrationAsync:(NSNumber*)nonTelco :(NSNumber*)acceptedConsent :(NSArray*)msisdnList :(NSString*)guid :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure;
85 +- (void)redeemCouponSetAsync:(NSString*)uuid :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure;
85 86
86 @end 87 @end
87 #endif /* MyApi_h */ 88 #endif /* MyApi_h */
......
...@@ -1366,4 +1366,17 @@ NSString *VERIFY_URL = @"/partners/cosmote/verify"; ...@@ -1366,4 +1366,17 @@ NSString *VERIFY_URL = @"/partners/cosmote/verify";
1366 }]; 1366 }];
1367 } 1367 }
1368 1368
1369 +- (void)redeemCouponSetAsync:(NSString*)uuid :(void(^)(NSDictionary *response))success failureBlock:(void(^)(NSError *error))failure
1370 +{
1371 + [[Warply sharedService] redeemCouponSetsWithSuccessBlock:uuid :^(NSDictionary *response) {
1372 + if (success) {
1373 + success(response);
1374 + }
1375 + } failureBlock:^(NSError *error) {
1376 + if (failure) {
1377 + failure(error);
1378 + }
1379 + }];
1380 +}
1381 +
1369 @end 1382 @end
......
...@@ -1562,7 +1562,33 @@ public class swiftApi { ...@@ -1562,7 +1562,33 @@ public class swiftApi {
1562 print("====================") 1562 print("====================")
1563 consumerIntegrationCallback(nil) 1563 consumerIntegrationCallback(nil)
1564 } 1564 }
1565 + }
1566 +
1567 + public func redeemCouponSetAsync(uuid: String, _ redeemCouponSetCallback: @escaping (_ responseData: GenericResponseModel?) -> Void) -> Void {
1568 +
1569 + let instanceOfMyApi = MyApi()
1570 + instanceOfMyApi.redeemCouponSetAsync(uuid, requestCallback, failureBlock: requestFailureCallback)
1571 +
1572 + func requestCallback(_ responseData: [AnyHashable: Any]?) -> Void {
1573 +
1574 + if let responseDataDictionary = responseData as? [String: Any] {
1575 +
1576 + let tempResponse = GenericResponseModel(dictionary: responseDataDictionary)
1577 +
1578 + redeemCouponSetCallback(tempResponse);
1565 1579
1580 + } else {
1581 + redeemCouponSetCallback(nil)
1582 + }
1583 +
1584 + }
1585 +
1586 + func requestFailureCallback(_ error: Error?) -> Void {
1587 + print("consumerIntegration error: ")
1588 + print(error)
1589 + print("====================")
1590 + redeemCouponSetCallback(nil)
1591 + }
1566 } 1592 }
1567 1593
1568 } 1594 }
......