MyIdSdk.swift 9.66 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
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
import MyIdSDK

public class AppearancePublic: NSObject {

    public let primaryColor: UIColor?
    public let secondaryColor: 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?,
        secondaryColor: UIColor?,
        errorColor: UIColor?,
        primaryButtonColor: UIColor?,
        primaryButtonColorDisabled: UIColor?,
        primaryButtonTextColor: UIColor?,
        primaryButtonTextColorDisabled: UIColor?,
        buttonCornerRadius: Int?
    ) {
        self.primaryColor = primaryColor
        self.secondaryColor = secondaryColor
        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 secondaryColor = (jsonResult["secondaryColor"] == nil)
                ? nil : UIColor.from(hex: jsonResult["secondaryColor"] 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

        let appearancePublic = AppearancePublic(
            primaryColor: primaryColor,
            secondaryColor: secondaryColor,
            errorColor: errorColor,
            primaryButtonColor: primaryButtonColor,
            primaryButtonColorDisabled: primaryButtonColorDisabled,
            primaryButtonTextColor: primaryButtonTextColor,
            primaryButtonTextColorDisabled: primaryButtonTextColorDisabled,
            buttonCornerRadius: buttonCornerRadius
        )
        return appearancePublic
    } else {
        return nil
    }
}

public func loadAppearanceFromConfig(config: NSDictionary) throws -> MyIdAppearance {
    let appearancePublic = try loadAppearance(config: config)

    if let appearancePublic = appearancePublic {
        let appearance = MyIdAppearance()
        appearance.primaryColor = appearancePublic.primaryColor
        appearance.secondaryColor = appearancePublic.secondaryColor
        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,
    appearance: MyIdAppearance
) throws -> MyIdConfig {
    let clientId = config["clientId"] as? String ?? ""
Javokhir's avatar
1.1.0    
Javokhir committed
105
106
    let clientHash = config["clientHash"] as? String ?? ""
    let clientHashId = config["clientHashId"] as? String ?? ""
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
130
131
132
133
134
135
    let passportData = config["passportData"] as? String ?? ""
    let dateOfBirth = config["dateOfBirth"] as? String ?? ""
    let sdkHash = config["sdkHash"] as? String ?? ""
    let externalId = config["externalId"] as? String ?? ""
    
    let threshold = config["threshold"] as? Float ?? 0.6
    
    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
136
    if (localeKey == "RUSSIAN") {
Javokhir's avatar
Javokhir committed
137
        locale = MyIdLocale.RU
Javokhir's avatar
Javokhir committed
138
    } else if (localeKey == "ENGLISH") {
Javohir Savriy's avatar
Javohir Savriy committed
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
        locale = MyIdLocale.EN
    }
    
    let cameraShapeKey = config["cameraShape"] as? String ?? ""
    var cameraShape = MyIdCameraShape.CIRCLE
    if (cameraShapeKey == "ELLIPSE") {
        cameraShape = MyIdCameraShape.ELLIPSE
    }
    
    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
    let organizationDetails = MyIdOrganizationDetails()
    organizationDetails.phoneNumber = organizationDetailsDict?["phone"] as? String ?? ""

    let config = MyIdConfig()
    config.clientId = clientId
Javokhir's avatar
1.1.0    
Javokhir committed
162
163
    config.clientHash = clientHash
    config.clientHashId = clientHashId
Javohir Savriy's avatar
Javohir Savriy committed
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
    config.passportData = passportData
    config.dateOfBirth = dateOfBirth
    config.sdkHash = sdkHash
    config.externalId = externalId
    config.threshold = threshold
    config.buildMode = buildMode
    config.entryType = entryType
    config.residency = residency
    config.locale = locale
    config.cameraShape = cameraShape
    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 {
            fResult(FlutterError(code: "cancel", message: "User canceled flow", details: nil))
        }
    }
    
    @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 {
            let appearance = try loadAppearanceFromConfig(config: appearanceConfig)
            let myidConfig = try buildMyIdConfig(config: config, appearance: appearance)
            
            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()
}