MyIdSdk.swift 9.95 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
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?
Javokhir's avatar
Javokhir committed
13
    public let logo: UIImage?
Javohir Savriy's avatar
Javohir Savriy committed
14
15
16
17
18
19
20
21
    
    public init(
        primaryColor: UIColor?,
        errorColor: UIColor?,
        primaryButtonColor: UIColor?,
        primaryButtonColorDisabled: UIColor?,
        primaryButtonTextColor: UIColor?,
        primaryButtonTextColorDisabled: UIColor?,
Javokhir's avatar
Javokhir committed
22
23
        buttonCornerRadius: Int?,
        logo: UIImage?
Javohir Savriy's avatar
Javohir Savriy committed
24
25
26
27
28
29
30
31
    ) {
        self.primaryColor = primaryColor
        self.errorColor = errorColor
        self.primaryButtonColor = primaryButtonColor
        self.primaryButtonColorDisabled = primaryButtonColorDisabled
        self.primaryButtonTextColor = primaryButtonTextColor
        self.primaryButtonTextColorDisabled = primaryButtonTextColorDisabled
        self.buttonCornerRadius = buttonCornerRadius
Javokhir's avatar
Javokhir committed
32
        self.logo = logo
Javohir Savriy's avatar
Javohir Savriy committed
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
    }
}

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
57
58
59
60
        
        let logo = (jsonResult["logo"] == nil)
                ? nil : UIImage(named: jsonResult["logo"] as! String)
                        
Javohir Savriy's avatar
Javohir Savriy committed
61
62
63
64
65
66
67
        let appearancePublic = AppearancePublic(
            primaryColor: primaryColor,
            errorColor: errorColor,
            primaryButtonColor: primaryButtonColor,
            primaryButtonColorDisabled: primaryButtonColorDisabled,
            primaryButtonTextColor: primaryButtonTextColor,
            primaryButtonTextColorDisabled: primaryButtonTextColorDisabled,
Javokhir's avatar
Javokhir committed
68
69
            buttonCornerRadius: buttonCornerRadius,
            logo: logo
Javohir Savriy's avatar
Javohir Savriy committed
70
71
72
73
74
75
76
        )
        return appearancePublic
    } else {
        return nil
    }
}

Javokhir's avatar
Javokhir committed
77
public func loadAppearanceFromConfig(appearancePublic: AppearancePublic?) throws -> MyIdAppearance {
Javohir Savriy's avatar
Javohir Savriy committed
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
    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
99
    appearanceConfig: NSDictionary
Javohir Savriy's avatar
Javohir Savriy committed
100
) throws -> MyIdConfig {
Javokhir's avatar
Javokhir committed
101
102
103
    let appearancePublic = try loadAppearance(config: appearanceConfig)
    let appearance = try loadAppearanceFromConfig(appearancePublic: appearancePublic)

Javohir Savriy's avatar
Javohir Savriy committed
104
    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
    let passportData = config["passportData"] as? String ?? ""
    let dateOfBirth = config["dateOfBirth"] as? String ?? ""
Javokhir's avatar
1.1.4    
Javokhir committed
109
    let minAge = config["minAge"] as? Int ?? 16
Javohir Savriy's avatar
Javohir Savriy committed
110
111
112
    let sdkHash = config["sdkHash"] as? String ?? ""
    let externalId = config["externalId"] as? String ?? ""
    
Javokhir's avatar
Javokhir committed
113
    let threshold = config["threshold"] as? Float ?? 0.55
Javohir Savriy's avatar
Javohir Savriy committed
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
    
    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
137
    if (localeKey == "RUSSIAN") {
Javokhir's avatar
Javokhir committed
138
        locale = MyIdLocale.RU
Javokhir's avatar
Javokhir committed
139
    } else if (localeKey == "ENGLISH") {
Javohir Savriy's avatar
Javohir Savriy committed
140
141
142
143
144
145
146
147
        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
148
149
150
151
152
153

    let cameraSelectorKey = config["cameraSelector"] as? String ?? ""
    var cameraSelector = MyIdCameraSelector.FRONT
    if (cameraSelectorKey == "BACK") {
        cameraSelector = MyIdCameraSelector.BACK
    }
Javohir Savriy's avatar
Javohir Savriy committed
154
155
156
157
158
159
160
161
162
163
164
165
    
    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 ?? ""
Javokhir's avatar
Javokhir committed
166
167
    organizationDetails.logo = appearancePublic?.logo
    
Javohir Savriy's avatar
Javohir Savriy committed
168
169
    let config = MyIdConfig()
    config.clientId = clientId
Javokhir's avatar
1.1.0    
Javokhir committed
170
171
    config.clientHash = clientHash
    config.clientHashId = clientHashId
Javohir Savriy's avatar
Javohir Savriy committed
172
173
    config.passportData = passportData
    config.dateOfBirth = dateOfBirth
Javokhir's avatar
1.1.4    
Javokhir committed
174
    config.minAge = minAge
Javohir Savriy's avatar
Javohir Savriy committed
175
176
177
178
179
180
181
182
    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
183
    config.cameraSelector = cameraSelector
Javohir Savriy's avatar
Javohir Savriy committed
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
    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
211
            fResult(FlutterError(code: "cancel", message: "User canceled flow", details: nil))
Javohir Savriy's avatar
Javohir Savriy committed
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
        }
    }
    
    @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
238
            let myidConfig = try buildMyIdConfig(config: config, appearanceConfig: appearanceConfig)
Javohir Savriy's avatar
Javohir Savriy committed
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
            
            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()
}