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//
// PaymentHandler.swift
// Hyperswitch
//
// Created by Harshit Srivastava on 10/05/23.
//
public class PaymentHandler: NSObject {
@objc public static let sharedHandler: PaymentHandler = PaymentHandler()
@objc var completion: PaymentHandlerActionPaymentIntentCompletionBlock?
@objc public class func shared() -> PaymentHandler {
return PaymentHandler.sharedHandler
}
internal init(apiClient: APIClient = .shared)
{
self.apiClient = apiClient
super.init()
}
internal var apiClient: APIClient
@objc(confirmPayment:withAuthenticationContext:completion:)
public func confirmPayment(
_ paymentParams: PaymentIntentParams,
with authenticationContext: UIViewController,
completion: @escaping PaymentHandlerActionPaymentIntentCompletionBlock
)
{
self.completion = completion
RNViewManager.sharedInstance.responseHandler = self
HyperModule.shared?.confirm(data: paymentParams.description())
}
public typealias PaymentHandlerActionPaymentIntentCompletionBlock = (
PaymentHandlerActionStatus, PaymentIntent?, NSError?
) -> Void
@objc public enum PaymentHandlerActionStatus: Int {
case succeeded
case canceled
case failed
}
}
public class PaymentIntent: NSObject {
}
extension PaymentHandler: RNResponseHandler {
func didReceiveResponse(response: String?, error: Error?) {
if let completion = completion {
if let error = error {
completion(.failed, nil, error as NSError)
}
else if response == "cancelled" {
completion(.canceled, nil, nil)
}
else {
completion(.succeeded, nil, nil)
}
}
}
}