MyIdSdk.swift 9.83 KB
Newer Older
Javohir Savriy's avatar
Javohir Savriy committed
1
import Foundation
Javohir Savriy's avatar
Javohir Savriy committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import MyIdSDK

public class AppearancePublic: NSObject {

    public let primaryColor: UIColor?
    public let errorColor: UIColor?
    public let primaryButtonColor: UIColor?
    public let primaryButtonColorDisabled: UIColor?
    public let primaryButtonTextColor: UIColor?
    public let primaryButtonTextColorDisabled: UIColor?
    public let buttonCornerRadius: Int?
    
    public init(
        primaryColor: UIColor?,
        errorColor: UIColor?,
        primaryButtonColor: UIColor?,
        primaryButtonColorDisabled: UIColor?,
        primaryButtonTextColor: UIColor?,
        primaryButtonTextColorDisabled: UIColor?,
Javokhir's avatar
Javokhir committed
21
        buttonCornerRadius: Int?
Javohir Savriy's avatar
Javohir Savriy committed
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
    ) {
        self.primaryColor = primaryColor
        self.errorColor = errorColor
        self.primaryButtonColor = primaryButtonColor
        self.primaryButtonColorDisabled = primaryButtonColorDisabled
        self.primaryButtonTextColor = primaryButtonTextColor
        self.primaryButtonTextColorDisabled = primaryButtonTextColorDisabled
        self.buttonCornerRadius = buttonCornerRadius
    }
}

public func loadAppearance(config: NSDictionary) throws -> AppearancePublic? {
    if let jsonResult = config as? Dictionary<String, AnyObject> {
        let primaryColor = (jsonResult["primaryColor"] == nil)
                ? nil : UIColor.from(hex: jsonResult["primaryColor"] as! String)
        
        let errorColor = (jsonResult["errorColor"] == nil)
                ? nil : UIColor.from(hex: jsonResult["errorColor"] as! String)
        
        let primaryButtonColor = (jsonResult["primaryButtonColor"] == nil)
                ? nil : UIColor.from(hex: jsonResult["primaryButtonColor"] as! String)
        
        let primaryButtonColorDisabled = (jsonResult["primaryButtonColorDisabled"] == nil)
                ? nil : UIColor.from(hex: jsonResult["primaryButtonColorDisabled"] as! String)
        
        let primaryButtonTextColor = (jsonResult["primaryButtonTextColor"] == nil)
                ? nil : UIColor.from(hex: jsonResult["primaryButtonTextColor"] as! String)
        
        let primaryButtonTextColorDisabled = (jsonResult["primaryButtonTextColorDisabled"] == nil)
                ? nil : UIColor.from(hex: jsonResult["primaryButtonTextColorDisabled"] as! String)
        
        let buttonCornerRadius: Int? = (jsonResult["buttonCornerRadius"] == nil) ? nil : 8
Javokhir's avatar
Javokhir committed
54
                        
Javohir Savriy's avatar
Javohir Savriy committed
55
56
57
58
59
60
61
        let appearancePublic = AppearancePublic(
            primaryColor: primaryColor,
            errorColor: errorColor,
            primaryButtonColor: primaryButtonColor,
            primaryButtonColorDisabled: primaryButtonColorDisabled,
            primaryButtonTextColor: primaryButtonTextColor,
            primaryButtonTextColorDisabled: primaryButtonTextColorDisabled,
Javokhir's avatar
Javokhir committed
62
            buttonCornerRadius: buttonCornerRadius
Javohir Savriy's avatar
Javohir Savriy committed
63
64
65
66
67
68
69
        )
        return appearancePublic
    } else {
        return nil
    }
}

Javokhir's avatar
Javokhir committed
70
public func loadAppearanceFromConfig(appearancePublic: AppearancePublic?) throws -> MyIdAppearance {
Javohir Savriy's avatar
Javohir Savriy committed
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
    if let appearancePublic = appearancePublic {
        let appearance = MyIdAppearance()
        appearance.primaryColor = appearancePublic.primaryColor
        appearance.errorColor = appearancePublic.errorColor
        appearance.primaryButtonColor = appearancePublic.primaryButtonColor
        appearance.primaryButtonColorDisabled = appearancePublic.primaryButtonColorDisabled
        appearance.primaryButtonTextColor = appearancePublic.primaryButtonTextColor
        appearance.primaryButtonTextColorDisabled = appearancePublic.primaryButtonTextColorDisabled
        
        if let buttonCornerRadius = appearancePublic.buttonCornerRadius {
            appearance.buttonCornerRadius = Float(buttonCornerRadius)
        }
        
        return appearance
    } else {
        return MyIdAppearance()
    }
}

public func buildMyIdConfig(
    config: NSDictionary,
Javokhir's avatar
Javokhir committed
92
    appearanceConfig: NSDictionary
Javohir Savriy's avatar
Javohir Savriy committed
93
) throws -> MyIdConfig {
Javokhir's avatar
Javokhir committed
94
95
96
    let appearancePublic = try loadAppearance(config: appearanceConfig)
    let appearance = try loadAppearanceFromConfig(appearancePublic: appearancePublic)

Javohir Savriy's avatar
Javohir Savriy committed
97
    let clientId = config["clientId"] as? String ?? ""
Javokhir's avatar
1.1.0    
Javokhir committed
98
99
    let clientHash = config["clientHash"] as? String ?? ""
    let clientHashId = config["clientHashId"] as? String ?? ""
Javohir Savriy's avatar
Javohir Savriy committed
100
101
    let passportData = config["passportData"] as? String ?? ""
    let dateOfBirth = config["dateOfBirth"] as? String ?? ""
Javokhir's avatar
1.1.4    
Javokhir committed
102
    let minAge = config["minAge"] as? Int ?? 16
Javohir Savriy's avatar
Javohir Savriy committed
103
104
105
    let sdkHash = config["sdkHash"] as? String ?? ""
    let externalId = config["externalId"] as? String ?? ""
    
Javokhir's avatar
Javokhir committed
106
    let threshold = config["threshold"] as? Float ?? 0.55
Javohir Savriy's avatar
Javohir Savriy committed
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
    
    let buildModeKey = config["buildMode"] as? String ?? ""
    var buildMode = MyIdBuildMode.PRODUCTION
    if (buildModeKey == "DEBUG") {
        buildMode = MyIdBuildMode.DEBUG
    }
    
    let entryTypeKey = config["entryType"] as? String ?? ""
    var entryType = MyIdEntryType.AUTH
    if (entryTypeKey == "FACE") {
        entryType = MyIdEntryType.FACE
    }
    
    let residencyKey = config["residency"] as? String ?? ""
    var residency = MyIdResidency.RESIDENT
    if (residencyKey == "USER_DEFINED") {
        residency = MyIdResidency.USER_DEFINED
    } else if (residencyKey == "NON_RESIDENT") {
        residency = MyIdResidency.NON_RESIDENT
    }
    
    let localeKey = config["locale"] as? String ?? ""
    var locale = MyIdLocale.UZ
Javokhir's avatar
Javokhir committed
130
    if (localeKey == "RUSSIAN") {
Javokhir's avatar
Javokhir committed
131
        locale = MyIdLocale.RU
Javokhir's avatar
Javokhir committed
132
    } else if (localeKey == "ENGLISH") {
Javohir Savriy's avatar
Javohir Savriy committed
133
134
135
136
137
138
139
140
        locale = MyIdLocale.EN
    }
    
    let cameraShapeKey = config["cameraShape"] as? String ?? ""
    var cameraShape = MyIdCameraShape.CIRCLE
    if (cameraShapeKey == "ELLIPSE") {
        cameraShape = MyIdCameraShape.ELLIPSE
    }
Javokhir's avatar
1.1.8    
Javokhir committed
141
142
143
144
145
146

    let cameraSelectorKey = config["cameraSelector"] as? String ?? ""
    var cameraSelector = MyIdCameraSelector.FRONT
    if (cameraSelectorKey == "BACK") {
        cameraSelector = MyIdCameraSelector.BACK
    }
Javohir Savriy's avatar
Javohir Savriy committed
147
148
149
150
151
152
153
154
155
156
    
    let resolutionKey = config["resolution"] as? String ?? ""
    var resolution = MyIdResolution.RESOLUTION_480
    if (resolutionKey == "RESOLUTION_720") {
        resolution = MyIdResolution.RESOLUTION_720
    }
    
    let withPhoto = config["withPhoto"] as? Bool ?? false

    let organizationDetailsDict = config["organizationDetails"] as? NSDictionary
Javokhir's avatar
Javokhir committed
157
158

    let logo = (organizationDetailsDict?["logo"] == nil) ? nil : UIImage(named: organizationDetailsDict?["logo"] as! String)
Javohir Savriy's avatar
Javohir Savriy committed
159
160
    let organizationDetails = MyIdOrganizationDetails()
    organizationDetails.phoneNumber = organizationDetailsDict?["phone"] as? String ?? ""
Javokhir's avatar
Javokhir committed
161
    organizationDetails.logo = logo
Javokhir's avatar
Javokhir committed
162
    
Javohir Savriy's avatar
Javohir Savriy committed
163
164
    let config = MyIdConfig()
    config.clientId = clientId
Javokhir's avatar
1.1.0    
Javokhir committed
165
166
    config.clientHash = clientHash
    config.clientHashId = clientHashId
Javohir Savriy's avatar
Javohir Savriy committed
167
168
    config.passportData = passportData
    config.dateOfBirth = dateOfBirth
Javokhir's avatar
1.1.4    
Javokhir committed
169
    config.minAge = minAge
Javohir Savriy's avatar
Javohir Savriy committed
170
171
172
173
174
175
176
177
    config.sdkHash = sdkHash
    config.externalId = externalId
    config.threshold = threshold
    config.buildMode = buildMode
    config.entryType = entryType
    config.residency = residency
    config.locale = locale
    config.cameraShape = cameraShape
Javokhir's avatar
1.1.8    
Javokhir committed
178
    config.cameraSelector = cameraSelector
Javohir Savriy's avatar
Javohir Savriy committed
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
    config.resolution = resolution
    config.withPhoto = withPhoto
    config.appearance = appearance
    config.organizationDetails = organizationDetails

    return config
}

@objc(MyIdSdk)
class MyIdSdk: NSObject, MyIdClientDelegate {
    
    private var flutterResult: FlutterResult? = nil
    
    func onSuccess(result: MyIdResult) {
        if let fResult = flutterResult {
            fResult(createResponse(result))
        }
    }
    
    func onError(exception: MyIdException) {
        if let fResult = flutterResult {
            fResult(FlutterError(code: "error", message: "\(exception.code ?? "101") - \(exception.message ?? "Unexpected error starting MyID")", details: nil))
        }
    }
    
    func onUserExited() {
        if let fResult = flutterResult {
Javokhir's avatar
1.1.4    
Javokhir committed
206
            fResult(FlutterError(code: "cancel", message: "User canceled flow", details: nil))
Javohir Savriy's avatar
Javohir Savriy committed
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
        }
    }
    
    @objc static func requiresMainQueueSetup() -> Bool {
      return false
    }

    @objc func start(
        _ config: NSDictionary,
        result: @escaping FlutterResult
    ) -> Void {
        flutterResult = result
        
        DispatchQueue.main.async {
          let withConfig = config["config"] as! NSDictionary
          let withAppearance = config["appearance"] as! NSDictionary
          self.run(withConfig: withConfig, withAppearance: withAppearance, result: result)
        }
    }
    
    private func run(
        withConfig config: NSDictionary,
        withAppearance appearanceConfig: NSDictionary,
        result: @escaping FlutterResult
    ) {
        do {
Javokhir's avatar
Javokhir committed
233
            let myidConfig = try buildMyIdConfig(config: config, appearanceConfig: appearanceConfig)
Javohir Savriy's avatar
Javohir Savriy committed
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
            
            MyIdClient.start(withConfig: myidConfig, withDelegate: self)
        } catch let error as NSError {
            result(FlutterError(code: "error", message: error.domain, details: nil))
            return;
        } catch {
            result(FlutterError(code: "error", message: "Unexpected error starting MyID", details: nil))
            return;
        }
    }
}

extension UIColor {

    static func from(hex: String) -> UIColor {
        let hexString = hex.trimmingCharacters(in: .whitespacesAndNewlines)
        let scanner = Scanner(string: hexString)

        if hexString.hasPrefix("#") {
            scanner.scanLocation = 1
        }

        var color: UInt32 = 0
        scanner.scanHexInt32(&color)

        let mask = 0x000000FF
        let redInt = Int(color >> 16) & mask
        let greenInt = Int(color >> 8) & mask
        let blueInt = Int(color) & mask

        let red = CGFloat(redInt) / 255.0
        let green = CGFloat(greenInt) / 255.0
        let blue = CGFloat(blueInt) / 255.0

        return UIColor(red: red, green: green, blue: blue, alpha: 1.0)
    }
}

extension MyIdAppearance {

    static let `default` = MyIdAppearance()
}