Skip to main content

DriverLicenseScanHelper

public class DriverLicenseScanHelper: NSObject

This is the helper class that provides Drivers License document scanning functionality.

  • All documents (Identity and Miscellaneous) must have following baseline attributes.
Parameters
StringidIt represents the document's ID eg: driver license number.
StringcategoryCurrently this SDK supports two categories for documents that can be registered i.e, identity_document or misc_document.
StringtypeThis represents the type of document that the user will try to register eg: pin, dl, ppt, liveid, nationalid.
StringproofedByThis identifies the entity responsible for proofing the document. When you use BlockID SDK Scanners, this defaults to “blockid”.
  • The identity documents must have following baseline attributes.
Parameters
StringfirstNameFirst name of document holder.
StringlastNameLast name of document holder.
StringdobDate of birth {yyyyMMdd} of document holder.
StringdoeDate of expiry {yyyyMMdd} of document.
StringfaceBase64 string of document holder's face photo.
StringimageBase64 string of document image.

** Test**

Parameters
StringActivity: The application activity from the registration screen
StringString: The user name which requires authentication.
StringString: The tenant DNS against which the user is authenticated.
StringString: The community name against which the user is authenticated.
StringString: HTML file name.
StringFIDO2Callback: The block to execute after the response is received.

Constructor

public init(isDataRequiredOnFail: Bool = false, scanningMode: ScanningMode, bidScannerView: BIDScannerView), dlScanResponseDelegate: DriverLicenseResponseDelegate, cutoutView: CGRect, expiryGracePeriod: Int)

  • Creates an object of DriverLicenseScanHelper. The scanner will throw an error if the document has already expired. If the document expires before gracePeriod, the scanner will complete the scan and return an advisory error.
note

It is the application's responsibility to decide if the scanned Drivers License should be registered or not.

Parameter
isDataRequiredOnFailBool: Indicates if the scanner must return the driver's License document data. The default value is false.
scanningModeScanningMode: An enum value. In the application, ScanningMode.SCAN_LIVE must be used.
bidScannerViewBIDScannerView: An object of BIDScannerView.
dlScanResponseDelegateDriverLicenseResponseDelegate: The block to execute after the driver's License document scanning is completed.
cutoutViewCGRect: A view frame if an additional overlay is used in the app.
expiryDateGracePeriodint: Number of days to allow as grace period ahead of Drivers License document expiry.

public init(dlScanResponseDelegate: DriverLicenseResponseDelegate)

  • Creates an object of DriverLicenseScanHelper. Used to choose an enhanced document scanner.
note

It is the application's responsibility to decide if the scanned Drivers License should be registered or not.

Parameter
dlScanResponseDelegateDriverLicenseResponseDelegate: The block to execute after the Drivers License document scanning is completed.

Method Summary

Parameters
BoolisRunning()Indicates if the Drivers License scanner is running or not.
voidstartDLScanning(scanningSide: DLScanningSide)Starts the Drivers License document scanner with the given document side.
voidstopDLScanning()Stops the Drivers License document scanner.

Method Detail

isRunning

public func isRunning() -> Bool

  • Indicates if the Drivers License scanner is running or not.

startDLScanning

public func startDLScanning(scanningSide: DLScanningSide)

  • Starts the Drivers License document scanner with the given document side.
Parameters
scanningSideDLScanningSideThe side of Drivers License with which the Drivers License scanner will start.

stopDLScanning

public func stopDLScanning()

  • Stops the Drivers License document scanner.

Protocol Summary

Parameters
DriverLicenseResponseDelegateCallback for event when Drivers License document scanning is completed.

DriverLicenseResponseDelegate

public protocol DriverLicenseResponseDelegate: AnyObject

  • Callback for event when Drivers License document scanning is completed.

Method Details

func dlScanCompleted(dlScanSide: DLScanningSide, dictDriveLicense: [String : Any]?, signatureToken signToken: String?, error: ErrorResponse?)

  • A callback method which is triggered after the Drivers License document scanning is completed.
Parameters
dlScanSideDLScanningSideProvides Driver License document side for which the scan is done.
dictDriveLicenseDictionaryReturns the Drivers License data after the scanning is completed.
signatureTokenStringA token which carries information about scanned Drivers License. This is used to verify if the Drivers License is modified or not before storing it to BlockID blockchain platform.
errorErrorResponseIn case of error, an object of ErrorResponse is returned.

optional func readyForDetection()

  • A callback method to indicate that the scanner is ready to detect the Drivers License document.

optional func scanBackSide()

  • A callback method to indicate that the scanner has started back side of Drivers License document.

optional func scanFrontSide()

  • A callback method to indicate that the scanner has started front side of Drivers License document.

optional func verifyingDocument()

  • A callback method to indicate that the scanner has started verifying the Drivers License document.