@regulaforensics/document-reader 8.2.186-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/RNDocumentReader.podspec +21 -0
- package/android/CVDDocumentReader.kt +74 -0
- package/android/build.gradle +36 -0
- package/android/cordova.gradle +12 -0
- package/android/src/main/java/com/regula/plugin/documentreader/BluetoothUtil.kt +160 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +826 -0
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +1795 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +573 -0
- package/android/src/main/java/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +100 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +181 -0
- package/examples/capacitor/README.md +12 -0
- package/examples/capacitor/android/app/build.gradle +50 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +27 -0
- package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/dr/fullauthrfid/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +252 -0
- package/examples/capacitor/android/gradlew.bat +94 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/index.html +10 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +5 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +53 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +26 -0
- package/examples/capacitor/ios/App/Podfile.lock +56 -0
- package/examples/capacitor/package-lock.json +3467 -0
- package/examples/capacitor/package.json +29 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- package/examples/capacitor/public/images/document.png +0 -0
- package/examples/capacitor/public/images/portrait.png +0 -0
- package/examples/capacitor/scripts/android.sh +9 -0
- package/examples/capacitor/scripts/ios.sh +8 -0
- package/examples/capacitor/scripts/setup.sh +6 -0
- package/examples/capacitor/src/extra/bt_device.tsx +32 -0
- package/examples/capacitor/src/extra/custom_rfid.tsx +74 -0
- package/examples/capacitor/src/main.css +131 -0
- package/examples/capacitor/src/main.html +41 -0
- package/examples/capacitor/src/main.tsx +175 -0
- package/examples/capacitor/tsconfig.json +5 -0
- package/examples/capacitor/vite.config.ts +17 -0
- package/examples/cordova/.vscode/launch.json +28 -0
- package/examples/cordova/.vscode/typings/cordova/cordova.d.ts +80 -0
- package/examples/cordova/README.md +12 -0
- package/examples/cordova/config.xml +29 -0
- package/examples/cordova/package-lock.json +1314 -0
- package/examples/cordova/package.json +32 -0
- package/examples/cordova/scripts/android.sh +8 -0
- package/examples/cordova/scripts/ios.sh +8 -0
- package/examples/cordova/scripts/setup.sh +8 -0
- package/examples/cordova/www/images/document.png +0 -0
- package/examples/cordova/www/images/logo.png +0 -0
- package/examples/cordova/www/images/portrait.png +0 -0
- package/examples/cordova/www/index.html +21 -0
- package/examples/cordova/www/src/main.css +130 -0
- package/examples/cordova/www/src/main.html +63 -0
- package/examples/cordova/www/src/main.js +50 -0
- package/examples/ionic/README.md +12 -0
- package/examples/ionic/angular.json +39 -0
- package/examples/ionic/config.xml +28 -0
- package/examples/ionic/index.html +19 -0
- package/examples/ionic/index.ts +17 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/package-lock.json +16559 -0
- package/examples/ionic/package.json +47 -0
- package/examples/ionic/scripts/android.sh +8 -0
- package/examples/ionic/scripts/ios.sh +8 -0
- package/examples/ionic/scripts/setup.sh +8 -0
- package/examples/ionic/src/assets/.gitkeep +0 -0
- package/examples/ionic/src/images/document.png +0 -0
- package/examples/ionic/src/images/icon.png +0 -0
- package/examples/ionic/src/images/portrait.png +0 -0
- package/examples/ionic/src/main.css +130 -0
- package/examples/ionic/src/main.html +63 -0
- package/examples/ionic/src/main.ts +66 -0
- package/examples/ionic/tsconfig.json +12 -0
- package/examples/react_native/README.md +12 -0
- package/examples/react_native/app.config.ts +53 -0
- package/examples/react_native/assets/.gitkeep +0 -0
- package/examples/react_native/images/document.png +0 -0
- package/examples/react_native/images/icon/adaptive-icon.png +0 -0
- package/examples/react_native/images/icon/icon.png +0 -0
- package/examples/react_native/images/portrait.png +0 -0
- package/examples/react_native/index.html +11 -0
- package/examples/react_native/index.tsx +52 -0
- package/examples/react_native/metro.config.js +7 -0
- package/examples/react_native/package-lock.json +9254 -0
- package/examples/react_native/package.json +27 -0
- package/examples/react_native/scripts/android.sh +12 -0
- package/examples/react_native/scripts/ios.sh +11 -0
- package/examples/react_native/scripts/setup.sh +8 -0
- package/examples/react_native/src/main.css +130 -0
- package/examples/react_native/src/main.html +63 -0
- package/examples/react_native/src/main.tsx +50 -0
- package/ios/CVDDocumentReader.h +7 -0
- package/ios/CVDDocumentReader.m +39 -0
- package/ios/RGLWConfig.h +42 -0
- package/ios/RGLWConfig.m +1398 -0
- package/ios/RGLWJSONConstructor.h +185 -0
- package/ios/RGLWJSONConstructor.m +2379 -0
- package/ios/RGLWMain.h +36 -0
- package/ios/RGLWMain.m +610 -0
- package/ios/RNDocumentReader.h +8 -0
- package/ios/RNDocumentReader.m +49 -0
- package/package.json +36 -0
- package/plugin.xml +51 -0
- package/www/capacitor/config/InitConfig.js +25 -0
- package/www/capacitor/config/OnlineProcessingConfig.js +41 -0
- package/www/capacitor/config/RFIDConfig.js +31 -0
- package/www/capacitor/config/RecognizeConfig.js +103 -0
- package/www/capacitor/config/ScannerConfig.js +38 -0
- package/www/capacitor/index.js +486 -0
- package/www/capacitor/info/DocReaderException.js +57 -0
- package/www/capacitor/info/DocReaderScenario.js +71 -0
- package/www/capacitor/info/DocReaderVersion.js +23 -0
- package/www/capacitor/info/DocumentsDatabase.js +27 -0
- package/www/capacitor/info/License.js +22 -0
- package/www/capacitor/info/PrepareProgress.js +23 -0
- package/www/capacitor/info/RFIDException.js +19 -0
- package/www/capacitor/internal/bridge.js +98 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/capacitor/params/Functionality.js +303 -0
- package/www/capacitor/params/customization/Customization.js +550 -0
- package/www/capacitor/params/customization/CustomizationColors.js +74 -0
- package/www/capacitor/params/customization/CustomizationFonts.js +40 -0
- package/www/capacitor/params/customization/CustomizationImages.js +25 -0
- package/www/capacitor/params/customization/Font.js +28 -0
- package/www/capacitor/params/process_params/AuthenticityParams.js +129 -0
- package/www/capacitor/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/capacitor/params/process_params/FaceApiParams.js +38 -0
- package/www/capacitor/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/capacitor/params/process_params/GlaresCheckParams.js +18 -0
- package/www/capacitor/params/process_params/ImageQA.js +97 -0
- package/www/capacitor/params/process_params/LivenessParams.js +67 -0
- package/www/capacitor/params/process_params/ProcessParams.js +570 -0
- package/www/capacitor/params/process_params/RfidParams.js +15 -0
- package/www/capacitor/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/capacitor/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/capacitor/results/DocumentType.js +285 -0
- package/www/capacitor/results/Position.js +60 -0
- package/www/capacitor/results/Results.js +318 -0
- package/www/capacitor/results/TransactionInfo.js +16 -0
- package/www/capacitor/results/authenticity/Authenticity.js +23 -0
- package/www/capacitor/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/capacitor/results/authenticity/AuthenticityElement.js +27 -0
- package/www/capacitor/results/authenticity/AuthenticityResult.js +26 -0
- package/www/capacitor/results/authenticity/CheckDiagnose.js +124 -0
- package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/capacitor/results/barcode/BarcodeField.js +24 -0
- package/www/capacitor/results/barcode/BarcodeResult.js +24 -0
- package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
- package/www/capacitor/results/barcode/BarcodeType.js +21 -0
- package/www/capacitor/results/barcode/PDF417Info.js +16 -0
- package/www/capacitor/results/image_quality/ImageQuality.js +31 -0
- package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/capacitor/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/capacitor/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/capacitor/results/rfid/Application.js +47 -0
- package/www/capacitor/results/rfid/Attribute.js +16 -0
- package/www/capacitor/results/rfid/Authority.js +28 -0
- package/www/capacitor/results/rfid/CardProperties.js +38 -0
- package/www/capacitor/results/rfid/CertificateChain.js +51 -0
- package/www/capacitor/results/rfid/CertificateData.js +14 -0
- package/www/capacitor/results/rfid/DataField.js +16 -0
- package/www/capacitor/results/rfid/Extension.js +14 -0
- package/www/capacitor/results/rfid/File.js +39 -0
- package/www/capacitor/results/rfid/FileData.js +18 -0
- package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
- package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
- package/www/capacitor/results/rfid/RFIDSessionData.js +76 -0
- package/www/capacitor/results/rfid/RFIDValidity.js +16 -0
- package/www/capacitor/results/rfid/RFIDValue.js +20 -0
- package/www/capacitor/results/rfid/SecurityObject.js +31 -0
- package/www/capacitor/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/capacitor/results/rfid/SignerInfo.js +57 -0
- package/www/capacitor/results/status/CheckResult.js +5 -0
- package/www/capacitor/results/status/OpticalStatus.js +30 -0
- package/www/capacitor/results/status/RFIDStatus.js +26 -0
- package/www/capacitor/results/status/ResultsStatus.js +28 -0
- package/www/capacitor/results/visible_digital_seals/BytesData.js +18 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/capacitor/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/capacitor/results/visual_results/Comparison.js +19 -0
- package/www/capacitor/results/visual_results/FieldType.js +658 -0
- package/www/capacitor/results/visual_results/GraphicField.js +33 -0
- package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
- package/www/capacitor/results/visual_results/GraphicResult.js +22 -0
- package/www/capacitor/results/visual_results/LCID.js +174 -0
- package/www/capacitor/results/visual_results/Lights.js +11 -0
- package/www/capacitor/results/visual_results/RFIDOrigin.js +18 -0
- package/www/capacitor/results/visual_results/Rect.js +18 -0
- package/www/capacitor/results/visual_results/Symbol.js +18 -0
- package/www/capacitor/results/visual_results/TextField.js +68 -0
- package/www/capacitor/results/visual_results/TextResult.js +42 -0
- package/www/capacitor/results/visual_results/TextSource.js +19 -0
- package/www/capacitor/results/visual_results/Validity.js +17 -0
- package/www/capacitor/results/visual_results/Value.js +39 -0
- package/www/capacitor/rfid/PAAttribute.js +17 -0
- package/www/capacitor/rfid/PAResourcesIssuer.js +27 -0
- package/www/capacitor/rfid/PKDCertificate.js +54 -0
- package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
- package/www/capacitor/rfid/RFIDNotification.js +60 -0
- package/www/capacitor/rfid/TAChallenge.js +23 -0
- package/www/capacitor/rfid/TccParams.js +24 -0
- package/www/cordova.js +9816 -0
- package/www/react-native/config/InitConfig.js +25 -0
- package/www/react-native/config/OnlineProcessingConfig.js +41 -0
- package/www/react-native/config/RFIDConfig.js +31 -0
- package/www/react-native/config/RecognizeConfig.js +103 -0
- package/www/react-native/config/ScannerConfig.js +38 -0
- package/www/react-native/index.js +486 -0
- package/www/react-native/info/DocReaderException.js +57 -0
- package/www/react-native/info/DocReaderScenario.js +71 -0
- package/www/react-native/info/DocReaderVersion.js +23 -0
- package/www/react-native/info/DocumentsDatabase.js +27 -0
- package/www/react-native/info/License.js +22 -0
- package/www/react-native/info/PrepareProgress.js +23 -0
- package/www/react-native/info/RFIDException.js +19 -0
- package/www/react-native/internal/bridge.js +98 -0
- package/www/react-native/params/Functionality.js +303 -0
- package/www/react-native/params/customization/Customization.js +550 -0
- package/www/react-native/params/customization/CustomizationColors.js +74 -0
- package/www/react-native/params/customization/CustomizationFonts.js +40 -0
- package/www/react-native/params/customization/CustomizationImages.js +25 -0
- package/www/react-native/params/customization/Font.js +28 -0
- package/www/react-native/params/process_params/AuthenticityParams.js +129 -0
- package/www/react-native/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/react-native/params/process_params/FaceApiParams.js +38 -0
- package/www/react-native/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/react-native/params/process_params/GlaresCheckParams.js +18 -0
- package/www/react-native/params/process_params/ImageQA.js +97 -0
- package/www/react-native/params/process_params/LivenessParams.js +67 -0
- package/www/react-native/params/process_params/ProcessParams.js +570 -0
- package/www/react-native/params/process_params/RfidParams.js +15 -0
- package/www/react-native/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/react-native/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/react-native/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/react-native/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/react-native/results/DocumentType.js +285 -0
- package/www/react-native/results/Position.js +60 -0
- package/www/react-native/results/Results.js +318 -0
- package/www/react-native/results/TransactionInfo.js +16 -0
- package/www/react-native/results/authenticity/Authenticity.js +23 -0
- package/www/react-native/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/react-native/results/authenticity/AuthenticityElement.js +27 -0
- package/www/react-native/results/authenticity/AuthenticityResult.js +26 -0
- package/www/react-native/results/authenticity/CheckDiagnose.js +124 -0
- package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/react-native/results/barcode/BarcodeField.js +24 -0
- package/www/react-native/results/barcode/BarcodeResult.js +24 -0
- package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
- package/www/react-native/results/barcode/BarcodeType.js +21 -0
- package/www/react-native/results/barcode/PDF417Info.js +16 -0
- package/www/react-native/results/image_quality/ImageQuality.js +31 -0
- package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/react-native/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/react-native/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/react-native/results/rfid/Application.js +47 -0
- package/www/react-native/results/rfid/Attribute.js +16 -0
- package/www/react-native/results/rfid/Authority.js +28 -0
- package/www/react-native/results/rfid/CardProperties.js +38 -0
- package/www/react-native/results/rfid/CertificateChain.js +51 -0
- package/www/react-native/results/rfid/CertificateData.js +14 -0
- package/www/react-native/results/rfid/DataField.js +16 -0
- package/www/react-native/results/rfid/Extension.js +14 -0
- package/www/react-native/results/rfid/File.js +39 -0
- package/www/react-native/results/rfid/FileData.js +18 -0
- package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
- package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
- package/www/react-native/results/rfid/RFIDSessionData.js +76 -0
- package/www/react-native/results/rfid/RFIDValidity.js +16 -0
- package/www/react-native/results/rfid/RFIDValue.js +20 -0
- package/www/react-native/results/rfid/SecurityObject.js +31 -0
- package/www/react-native/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/react-native/results/rfid/SignerInfo.js +57 -0
- package/www/react-native/results/status/CheckResult.js +5 -0
- package/www/react-native/results/status/OpticalStatus.js +30 -0
- package/www/react-native/results/status/RFIDStatus.js +26 -0
- package/www/react-native/results/status/ResultsStatus.js +28 -0
- package/www/react-native/results/visible_digital_seals/BytesData.js +18 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/react-native/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/react-native/results/visual_results/Comparison.js +19 -0
- package/www/react-native/results/visual_results/FieldType.js +658 -0
- package/www/react-native/results/visual_results/GraphicField.js +33 -0
- package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
- package/www/react-native/results/visual_results/GraphicResult.js +22 -0
- package/www/react-native/results/visual_results/LCID.js +174 -0
- package/www/react-native/results/visual_results/Lights.js +11 -0
- package/www/react-native/results/visual_results/RFIDOrigin.js +18 -0
- package/www/react-native/results/visual_results/Rect.js +18 -0
- package/www/react-native/results/visual_results/Symbol.js +18 -0
- package/www/react-native/results/visual_results/TextField.js +68 -0
- package/www/react-native/results/visual_results/TextResult.js +42 -0
- package/www/react-native/results/visual_results/TextSource.js +19 -0
- package/www/react-native/results/visual_results/Validity.js +17 -0
- package/www/react-native/results/visual_results/Value.js +39 -0
- package/www/react-native/rfid/PAAttribute.js +17 -0
- package/www/react-native/rfid/PAResourcesIssuer.js +27 -0
- package/www/react-native/rfid/PKDCertificate.js +54 -0
- package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
- package/www/react-native/rfid/RFIDNotification.js +60 -0
- package/www/react-native/rfid/TAChallenge.js +23 -0
- package/www/react-native/rfid/TccParams.js +24 -0
- package/www/types/config/InitConfig.d.ts +63 -0
- package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
- package/www/types/config/RFIDConfig.d.ts +131 -0
- package/www/types/config/RecognizeConfig.d.ts +119 -0
- package/www/types/config/ScannerConfig.d.ts +54 -0
- package/www/types/index.d.ts +421 -0
- package/www/types/info/DocReaderException.d.ts +79 -0
- package/www/types/info/DocReaderScenario.d.ts +90 -0
- package/www/types/info/DocReaderVersion.d.ts +28 -0
- package/www/types/info/DocumentsDatabase.d.ts +42 -0
- package/www/types/info/License.d.ts +23 -0
- package/www/types/info/PrepareProgress.d.ts +15 -0
- package/www/types/info/RFIDException.d.ts +8 -0
- package/www/types/params/Functionality.d.ts +316 -0
- package/www/types/params/customization/Customization.d.ts +558 -0
- package/www/types/params/customization/CustomizationColors.d.ts +16 -0
- package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
- package/www/types/params/customization/CustomizationImages.d.ts +12 -0
- package/www/types/params/customization/Font.d.ts +36 -0
- package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
- package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
- package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
- package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
- package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
- package/www/types/params/process_params/ImageQA.d.ts +79 -0
- package/www/types/params/process_params/LivenessParams.d.ts +20 -0
- package/www/types/params/process_params/ProcessParams.d.ts +465 -0
- package/www/types/params/process_params/RfidParams.d.ts +19 -0
- package/www/types/params/rfid_scenario/DTCDataGroups.d.ts +13 -0
- package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
- package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
- package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
- package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
- package/www/types/results/DocumentType.d.ts +525 -0
- package/www/types/results/Position.d.ts +50 -0
- package/www/types/results/Results.d.ts +283 -0
- package/www/types/results/TransactionInfo.d.ts +9 -0
- package/www/types/results/authenticity/Authenticity.d.ts +67 -0
- package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
- package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
- package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
- package/www/types/results/authenticity/CheckDiagnose.d.ts +229 -0
- package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
- package/www/types/results/barcode/BarcodeField.d.ts +37 -0
- package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
- package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
- package/www/types/results/barcode/BarcodeType.d.ts +45 -0
- package/www/types/results/barcode/PDF417Info.d.ts +15 -0
- package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
- package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
- package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
- package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
- package/www/types/results/rfid/Application.d.ts +44 -0
- package/www/types/results/rfid/Attribute.d.ts +9 -0
- package/www/types/results/rfid/Authority.d.ts +11 -0
- package/www/types/results/rfid/CardProperties.d.ts +48 -0
- package/www/types/results/rfid/CertificateChain.d.ts +28 -0
- package/www/types/results/rfid/CertificateData.d.ts +7 -0
- package/www/types/results/rfid/DataField.d.ts +9 -0
- package/www/types/results/rfid/Extension.d.ts +7 -0
- package/www/types/results/rfid/File.d.ts +22 -0
- package/www/types/results/rfid/FileData.d.ts +9 -0
- package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
- package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
- package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
- package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
- package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
- package/www/types/results/rfid/RFIDValue.d.ts +10 -0
- package/www/types/results/rfid/SecurityObject.d.ts +28 -0
- package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
- package/www/types/results/rfid/SignerInfo.d.ts +41 -0
- package/www/types/results/status/CheckResult.d.ts +8 -0
- package/www/types/results/status/OpticalStatus.d.ts +29 -0
- package/www/types/results/status/RFIDStatus.d.ts +22 -0
- package/www/types/results/status/ResultsStatus.d.ts +24 -0
- package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
- package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
- package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
- package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
- package/www/types/results/visual_results/Comparison.d.ts +15 -0
- package/www/types/results/visual_results/FieldType.d.ts +1310 -0
- package/www/types/results/visual_results/GraphicField.d.ts +29 -0
- package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
- package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
- package/www/types/results/visual_results/LCID.d.ts +173 -0
- package/www/types/results/visual_results/Lights.d.ts +23 -0
- package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
- package/www/types/results/visual_results/Rect.d.ts +9 -0
- package/www/types/results/visual_results/Symbol.d.ts +14 -0
- package/www/types/results/visual_results/TextField.d.ts +40 -0
- package/www/types/results/visual_results/TextResult.d.ts +23 -0
- package/www/types/results/visual_results/TextSource.d.ts +15 -0
- package/www/types/results/visual_results/Validity.d.ts +13 -0
- package/www/types/results/visual_results/Value.d.ts +27 -0
- package/www/types/rfid/PAAttribute.d.ts +4 -0
- package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
- package/www/types/rfid/PKDCertificate.d.ts +34 -0
- package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
- package/www/types/rfid/RFIDNotification.d.ts +153 -0
- package/www/types/rfid/TAChallenge.d.ts +7 -0
- package/www/types/rfid/TccParams.d.ts +25 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "document-reader",
|
|
3
|
+
"scripts": {
|
|
4
|
+
"setup": "scripts/setup.sh",
|
|
5
|
+
"ios": "scripts/ios.sh",
|
|
6
|
+
"android": "scripts/android.sh"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@regulaforensics/document-reader": "8.2.186-beta",
|
|
10
|
+
"@regulaforensics/document-reader-core-fullauthrfid": "8.2.8-beta",
|
|
11
|
+
"@regulaforensics/document-reader-btdevice": "8.2.8-beta",
|
|
12
|
+
"@awesome-cordova-plugins/file": "6.6.0",
|
|
13
|
+
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
14
|
+
"@awesome-cordova-plugins/dialogs": "6.6.0",
|
|
15
|
+
"cordova-plugin-file": "8.1.3",
|
|
16
|
+
"cordova-plugin-camera": "8.0.0",
|
|
17
|
+
"cordova-plugin-dialogs": "2.0.2",
|
|
18
|
+
"@capacitor/cli": "7.0.1",
|
|
19
|
+
"@capacitor/core": "7.0.1",
|
|
20
|
+
"@capacitor/app": "7.0.0",
|
|
21
|
+
"@capacitor/ios": "7.0.1",
|
|
22
|
+
"@capacitor/android": "7.0.1",
|
|
23
|
+
"@capacitor/status-bar": "7.0.0",
|
|
24
|
+
"@ionic/react": "8.4.3",
|
|
25
|
+
"@vitejs/plugin-react": "4.3.4",
|
|
26
|
+
"vite-plugin-static-copy": "^2.3.1",
|
|
27
|
+
"@types/react-router-dom": "5.3.3"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { DocumentReader, InitConfig } from "@regulaforensics/document-reader"
|
|
2
|
+
import { handleException, setStatus } from "../main"
|
|
3
|
+
|
|
4
|
+
export const useBtDevice = false
|
|
5
|
+
const btDeviceName = "Regula 0000"
|
|
6
|
+
|
|
7
|
+
export function setupBTDevice() {
|
|
8
|
+
document.getElementById("bt-device").style.display = "flex"
|
|
9
|
+
document.getElementById("connect").onclick = () => connect()
|
|
10
|
+
setStatus("Connect to a bluetooth device")
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
async function connect() {
|
|
14
|
+
setStatus("Searching for devices...")
|
|
15
|
+
if (await DocumentReader.instance.connectBluetoothDevice(btDeviceName)) {
|
|
16
|
+
await initializeBTDevice()
|
|
17
|
+
DocumentReader.instance.functionality.useAuthenticator = true
|
|
18
|
+
document.getElementById("bt-device").style.display = "none"
|
|
19
|
+
} else
|
|
20
|
+
setStatus("Failed to connect")
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
async function initializeBTDevice() {
|
|
24
|
+
setStatus("Initializing...")
|
|
25
|
+
|
|
26
|
+
var initConfig = InitConfig.withBleDevice()
|
|
27
|
+
initConfig.delayedNNLoad = true
|
|
28
|
+
var [success, error] = await DocumentReader.instance.initialize(initConfig)
|
|
29
|
+
|
|
30
|
+
handleException(error)
|
|
31
|
+
return success
|
|
32
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { DocReaderAction, DocumentReader, Results, RFIDConfig, RFIDDataFileType, RFIDErrorCodes, RFIDNotificationCodes } from "@regulaforensics/document-reader"
|
|
2
|
+
import { displayResults, handleCompletion, setStatus } from "../main"
|
|
3
|
+
|
|
4
|
+
export enum RfidOption {
|
|
5
|
+
Basic,
|
|
6
|
+
Advanced,
|
|
7
|
+
SelfHostedUI
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const rfidOption: RfidOption = RfidOption.Basic
|
|
11
|
+
|
|
12
|
+
export function advancedRfid() {
|
|
13
|
+
var config = new RFIDConfig(handleCompletion)
|
|
14
|
+
|
|
15
|
+
config.onChipDetected = () => console.log("Chip detected, reading rfid.")
|
|
16
|
+
config.onRetryReadChip = async (error) => console.log(await RFIDErrorCodes.getTranslation(error.code) + ". Retrying...")
|
|
17
|
+
|
|
18
|
+
DocumentReader.instance.rfid(config)
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export function selfHostedUIRfid() {
|
|
22
|
+
var config = RFIDConfig.withoutUI((action, results, error) => {
|
|
23
|
+
if (DocReaderAction.stopped(action)) finish(results)
|
|
24
|
+
if (error != null) {
|
|
25
|
+
setStatus("Try again")
|
|
26
|
+
setDescription("Error" + error.message)
|
|
27
|
+
console.log(error.code + ": " + error.message)
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
31
|
+
config.onProgress = async (notification) => {
|
|
32
|
+
if (notification.progress == 1) return
|
|
33
|
+
if (notification.notificationCode == RFIDNotificationCodes.PCSC_READING_DATAGROUP)
|
|
34
|
+
setDescription(await RFIDDataFileType.getTranslation(notification.dataFileType))
|
|
35
|
+
setStatus("Reading RFID")
|
|
36
|
+
setProgress(notification.progress)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
setup()
|
|
40
|
+
DocumentReader.instance.rfid(config)
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
function finish(results: Results) {
|
|
44
|
+
DocumentReader.instance.stopRFIDReader()
|
|
45
|
+
setShowing(false)
|
|
46
|
+
displayResults(results)
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function setup() {
|
|
50
|
+
document.getElementById("cancel-rfid").onclick = () => finish(null)
|
|
51
|
+
|
|
52
|
+
setStatus("Reading RFID")
|
|
53
|
+
setDescription("Place your phone on top of the NFC tag")
|
|
54
|
+
setProgress(0)
|
|
55
|
+
setShowing(true)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
var setDescription = (data: string) => document.getElementById("rfid-description").innerHTML = data
|
|
59
|
+
var setProgress = (next: number) => {
|
|
60
|
+
var progress = document.getElementById("progress")
|
|
61
|
+
var previous = parseInt(progress.style.width.substring(0, progress.style.width.length - 1))
|
|
62
|
+
// make progress bar look better
|
|
63
|
+
if (next <= 0) return // ignore idle 0s, leave progress at 100 while its not moving
|
|
64
|
+
if (next < previous) next = 0 // move to 0 if progress finaly started moving
|
|
65
|
+
if (next >= 95) next = 100 // rfid never returns 100 and it looks ugly, fix it
|
|
66
|
+
if (next < previous) progress.style.transition = 'none' // instantly reset progress
|
|
67
|
+
else progress.style.transition = 'width 0.5s' // smoothly increase progress
|
|
68
|
+
|
|
69
|
+
progress.style.width = next + "%"
|
|
70
|
+
}
|
|
71
|
+
var setShowing = (data: boolean) => {
|
|
72
|
+
document.getElementById("main").style.display = data ? "none" : "flex"
|
|
73
|
+
document.getElementById("custom-rfid").style.display = data ? "flex" : "none"
|
|
74
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
html,
|
|
2
|
+
body {
|
|
3
|
+
width: 99%;
|
|
4
|
+
height: 99vh;
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.column {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
width: 100%;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.row {
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: row;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.header {
|
|
25
|
+
text-align: center;
|
|
26
|
+
padding-top: 80px;
|
|
27
|
+
margin-top: -10px;
|
|
28
|
+
background-color: rgba(0, 0, 0, 0.03);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.title {
|
|
32
|
+
font-weight: 600;
|
|
33
|
+
font-size: 18px;
|
|
34
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.divider {
|
|
38
|
+
height: 1px;
|
|
39
|
+
background-color: rgba(0, 0, 0, 0.075);
|
|
40
|
+
margin-top: 13px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.scroll {
|
|
44
|
+
flex-grow: 1;
|
|
45
|
+
overflow-y: auto;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.no-scroll {
|
|
49
|
+
flex-grow: 1;
|
|
50
|
+
overflow-y: hidden;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.button {
|
|
54
|
+
width: 175px;
|
|
55
|
+
height: 40px;
|
|
56
|
+
margin: 5px;
|
|
57
|
+
margin-top: 10px;
|
|
58
|
+
background-color: #4285F4;
|
|
59
|
+
color: white;
|
|
60
|
+
border: none;
|
|
61
|
+
padding: 10px 20px;
|
|
62
|
+
font-size: 16px;
|
|
63
|
+
border-radius: 100px;
|
|
64
|
+
cursor: pointer;
|
|
65
|
+
transition: all 0.3s ease;
|
|
66
|
+
user-select: none;
|
|
67
|
+
-webkit-user-select: none;
|
|
68
|
+
-moz-user-select: none;
|
|
69
|
+
-ms-user-select: none;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.button:active {
|
|
73
|
+
position: relative;
|
|
74
|
+
top: 1px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.text-button {
|
|
78
|
+
background: none;
|
|
79
|
+
border: none;
|
|
80
|
+
color: #2196f3;
|
|
81
|
+
font-size: 20px;
|
|
82
|
+
font-weight: bold;
|
|
83
|
+
padding: 5px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.text-button:active {
|
|
87
|
+
position: relative;
|
|
88
|
+
top: 1px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.radio {
|
|
92
|
+
align-items: baseline;
|
|
93
|
+
padding: 15px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
input[type="checkbox"] {
|
|
97
|
+
width: 20px;
|
|
98
|
+
height: 20px;
|
|
99
|
+
border: 2px solid black;
|
|
100
|
+
background-color: white;
|
|
101
|
+
display: inline-block;
|
|
102
|
+
position: relative;
|
|
103
|
+
cursor: pointer;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
input[type="text"] {
|
|
107
|
+
width: 173px;
|
|
108
|
+
height: 40px;
|
|
109
|
+
font-size: 15px;
|
|
110
|
+
margin: 5px;
|
|
111
|
+
border-radius: 100px;
|
|
112
|
+
padding-left: 10px;
|
|
113
|
+
padding-right: 10px;
|
|
114
|
+
margin-top: 10px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.progress-bar {
|
|
118
|
+
width: 75%;
|
|
119
|
+
padding: 3px;
|
|
120
|
+
margin-top: 40px;
|
|
121
|
+
background-color: #eee;
|
|
122
|
+
border-radius: 8px;
|
|
123
|
+
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
#progress {
|
|
127
|
+
width: 0%;
|
|
128
|
+
height: 20px;
|
|
129
|
+
background-color: #4285F4;
|
|
130
|
+
border-radius: 5px;
|
|
131
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<div class="column" style="height: 100%">
|
|
2
|
+
<div class="column header">
|
|
3
|
+
<span id="status" class="title">Loading...</span>
|
|
4
|
+
<div class="column divider"></div>
|
|
5
|
+
</div>
|
|
6
|
+
<div id="main" class="column no-scroll">
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="column" style="padding: 5px;">
|
|
9
|
+
<p>Portrait</p>
|
|
10
|
+
<img id="portrait-image" src="images/portrait.png" height="160px" width="120px">
|
|
11
|
+
</div>
|
|
12
|
+
<div class="column" style="padding: 5px;">
|
|
13
|
+
<p>Document image</p>
|
|
14
|
+
<img id="document-image" src="images/document.png" height="160px" width="200px">
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
<div id="bt-device" class="row" style="display: none;">
|
|
18
|
+
<input type="text" placeholder="Regula 0000" />
|
|
19
|
+
<button id="connect" class="button">Connect</button>
|
|
20
|
+
</div>
|
|
21
|
+
<div id="scenario-container" class="column no-scroll" style="margin-top: 15px; background-color: rgba(0, 0, 0, 0.03);">
|
|
22
|
+
<div id="scenarios" class="scroll"></div>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="row" style="width: 360px; padding-top: 15px;">
|
|
25
|
+
<span id="rfid-checkbox-description" style="font-size: 18px;width: 100%;">Process rfid reading(unavailable)</span>
|
|
26
|
+
<input id="rfid-checkbox" type="checkbox" style="margin-left: auto;" disabled />
|
|
27
|
+
</div>
|
|
28
|
+
<div class="row">
|
|
29
|
+
<button id="scan" class="button">Scan document</button>
|
|
30
|
+
<button id="recognize" class="button">Scan image</button>
|
|
31
|
+
</div>
|
|
32
|
+
<div style="padding-top: 20px;"></div>
|
|
33
|
+
</div>
|
|
34
|
+
<div id="custom-rfid" class="column no-scroll" style="display: none;">
|
|
35
|
+
<span id="rfid-description" style="font-size: 22px">Place your phone on top of the NFC tag</span>
|
|
36
|
+
<div class="progress-bar">
|
|
37
|
+
<div id="progress"></div>
|
|
38
|
+
</div>
|
|
39
|
+
<button id="cancel-rfid" class="text-button" style="margin-top: 50px;">X</button>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import { setupIonicReact } from '@ionic/react'
|
|
2
|
+
import '@ionic/react/css/core.css'
|
|
3
|
+
import './main.css'
|
|
4
|
+
import { File } from '@awesome-cordova-plugins/file'
|
|
5
|
+
import { DocumentReader, DocReaderException, InitConfig, DocReaderAction, Results, FieldType, GraphicFieldType, ResultType, RFIDConfig, ScannerConfig, Scenario, DocReaderScenario, RecognizeConfig } from '@regulaforensics/document-reader'
|
|
6
|
+
import { StatusBar, Style } from '@capacitor/status-bar'
|
|
7
|
+
import { setupBTDevice, useBtDevice } from './extra/bt_device'
|
|
8
|
+
import { advancedRfid, rfidOption, RfidOption, selfHostedUIRfid } from './extra/custom_rfid'
|
|
9
|
+
import { Camera, DestinationType, MediaType, PictureSourceType } from '@awesome-cordova-plugins/camera'
|
|
10
|
+
|
|
11
|
+
const documentReader = DocumentReader.instance
|
|
12
|
+
var selectedScenario = Scenario.MRZ
|
|
13
|
+
var doRfid = false
|
|
14
|
+
var isReadingRfid = false
|
|
15
|
+
|
|
16
|
+
async function init() {
|
|
17
|
+
if (!await initializeReader()) return
|
|
18
|
+
setScenarios(documentReader.availableScenarios)
|
|
19
|
+
setCanRfid(await documentReader.isRFIDAvailableForUse())
|
|
20
|
+
setStatus("Ready")
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
async function scan() {
|
|
24
|
+
if (!await documentReader.isReady()) return
|
|
25
|
+
clearResults()
|
|
26
|
+
documentReader.startScanner(
|
|
27
|
+
ScannerConfig.withScenario(selectedScenario),
|
|
28
|
+
handleCompletion,
|
|
29
|
+
)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
async function recognize() {
|
|
33
|
+
if (!await documentReader.isReady()) return
|
|
34
|
+
var image = await Camera.getPicture({
|
|
35
|
+
destinationType: DestinationType.DATA_URL,
|
|
36
|
+
mediaType: MediaType.PICTURE,
|
|
37
|
+
sourceType: PictureSourceType.PHOTOLIBRARY
|
|
38
|
+
})
|
|
39
|
+
clearResults()
|
|
40
|
+
documentReader.recognize(
|
|
41
|
+
RecognizeConfig.withScenario(selectedScenario, { image: image }),
|
|
42
|
+
handleCompletion,
|
|
43
|
+
)
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export function handleCompletion(action: DocReaderAction, results?: Results, error?: DocReaderException) {
|
|
47
|
+
handleException(error)
|
|
48
|
+
if (DocReaderAction.stopped(action) && !shouldRfid(results)) {
|
|
49
|
+
displayResults(results)
|
|
50
|
+
} else if (DocReaderAction.finished(action) && shouldRfid(results)) {
|
|
51
|
+
isReadingRfid = true
|
|
52
|
+
readRfid()
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export async function displayResults(results?: Results) {
|
|
57
|
+
isReadingRfid = false
|
|
58
|
+
clearResults()
|
|
59
|
+
if (results == null) return
|
|
60
|
+
|
|
61
|
+
var name = await results.textFieldValueByType(FieldType.SURNAME_AND_GIVEN_NAMES)
|
|
62
|
+
var docImage = await results.graphicFieldImageByType(GraphicFieldType.DOCUMENT_IMAGE)
|
|
63
|
+
var portrait = await results.graphicFieldImageByType(GraphicFieldType.PORTRAIT)
|
|
64
|
+
portrait = await results.graphicFieldImageByTypeSource(GraphicFieldType.PORTRAIT, ResultType.RFID_IMAGE_DATA) ?? portrait
|
|
65
|
+
|
|
66
|
+
setStatus(name)
|
|
67
|
+
setPortrait(portrait)
|
|
68
|
+
setDocImage(docImage)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
var readRfid = () => documentReader.rfid(new RFIDConfig(handleCompletion))
|
|
72
|
+
|
|
73
|
+
var shouldRfid = (results?: Results) => doRfid && !isReadingRfid && results != null && results.chipPage != 0
|
|
74
|
+
|
|
75
|
+
async function initializeReader() {
|
|
76
|
+
setStatus("Initializing...")
|
|
77
|
+
|
|
78
|
+
var license = await loadAsset("regula.license")
|
|
79
|
+
var initConfig = new InitConfig(license)
|
|
80
|
+
var [success, error] = await documentReader.initialize(initConfig)
|
|
81
|
+
|
|
82
|
+
handleException(error)
|
|
83
|
+
return success
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export function handleException(error: DocReaderException) {
|
|
87
|
+
if (error != null) {
|
|
88
|
+
setStatus(error.message)
|
|
89
|
+
console.log(error.code + ": " + error.message)
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// --------------------------------------------------------------------------------------------------------------------
|
|
94
|
+
|
|
95
|
+
async function loadAsset(path: string): Promise<string> {
|
|
96
|
+
var dir = await File.resolveDirectoryUrl(File.applicationDirectory + "public/assets")
|
|
97
|
+
var fileEntry = await File.getFile(dir, path, {})
|
|
98
|
+
var result = await new Promise<string>((resolve, _) => {
|
|
99
|
+
fileEntry.file(file => {
|
|
100
|
+
var reader = new FileReader()
|
|
101
|
+
reader.onloadend = (_) => resolve(reader.result as string)
|
|
102
|
+
reader.readAsDataURL(file)
|
|
103
|
+
})
|
|
104
|
+
})
|
|
105
|
+
return result
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
var documentUIImage: HTMLImageElement
|
|
109
|
+
var portraitUIImage: HTMLImageElement
|
|
110
|
+
document.addEventListener('deviceready', () => {
|
|
111
|
+
documentUIImage = document.getElementById("document-image") as HTMLImageElement
|
|
112
|
+
portraitUIImage = document.getElementById("portrait-image") as HTMLImageElement
|
|
113
|
+
document.getElementById("scan").onclick = () => scan()
|
|
114
|
+
document.getElementById("recognize").onclick = () => recognize()
|
|
115
|
+
|
|
116
|
+
// btDevice
|
|
117
|
+
if (!useBtDevice) init()
|
|
118
|
+
else setupBTDevice()
|
|
119
|
+
|
|
120
|
+
// rfid
|
|
121
|
+
if (rfidOption == RfidOption.Advanced) readRfid = () => advancedRfid()
|
|
122
|
+
if (rfidOption == RfidOption.SelfHostedUI) readRfid = () => selfHostedUIRfid()
|
|
123
|
+
})
|
|
124
|
+
|
|
125
|
+
export var setStatus = (data: string) => { if (data != null) document.getElementById("status").innerHTML = data }
|
|
126
|
+
var setPortrait = (data: string) => { if (data != null) portraitUIImage.src = "data:image/png;base64," + data }
|
|
127
|
+
var setDocImage = (data: string) => { if (data != null) documentUIImage.src = "data:image/png;base64," + data }
|
|
128
|
+
var clearResults = () => {
|
|
129
|
+
setStatus("Ready")
|
|
130
|
+
portraitUIImage.src = "images/portrait.png"
|
|
131
|
+
documentUIImage.src = "images/document.png"
|
|
132
|
+
}
|
|
133
|
+
var setScenarios = (data: DocReaderScenario[]) => {
|
|
134
|
+
const scenariosContainer = document.getElementById("scenarios")
|
|
135
|
+
data.forEach(scenario => scenariosContainer.appendChild(createScenarioElement(scenario)))
|
|
136
|
+
}
|
|
137
|
+
var createScenarioElement = (scenario: DocReaderScenario) => {
|
|
138
|
+
const div = document.createElement('div')
|
|
139
|
+
div.className = 'row radio'
|
|
140
|
+
|
|
141
|
+
const input = document.createElement('input')
|
|
142
|
+
input.type = 'radio'
|
|
143
|
+
input.name = 'scenario'
|
|
144
|
+
input.value = scenario.name
|
|
145
|
+
input.checked = scenario.name === selectedScenario
|
|
146
|
+
|
|
147
|
+
const span = document.createElement('span')
|
|
148
|
+
span.style.width = '200px'
|
|
149
|
+
span.style.paddingLeft = '5px'
|
|
150
|
+
span.textContent = scenario.caption
|
|
151
|
+
|
|
152
|
+
input.onclick = () => selectedScenario = scenario.name as Scenario
|
|
153
|
+
span.onclick = () => input.click()
|
|
154
|
+
|
|
155
|
+
div.appendChild(input)
|
|
156
|
+
div.appendChild(span)
|
|
157
|
+
|
|
158
|
+
return div
|
|
159
|
+
}
|
|
160
|
+
var setCanRfid = (data: boolean) => {
|
|
161
|
+
var checkbox = document.getElementById('rfid-checkbox') as HTMLInputElement
|
|
162
|
+
var checkboxDescription = document.getElementById("rfid-checkbox-description")
|
|
163
|
+
if (data) {
|
|
164
|
+
checkbox.disabled = false
|
|
165
|
+
checkbox.onclick = () => {
|
|
166
|
+
doRfid = !doRfid
|
|
167
|
+
checkbox.checked = doRfid
|
|
168
|
+
}
|
|
169
|
+
checkboxDescription.innerHTML = "Process rfid reading"
|
|
170
|
+
checkboxDescription.onclick = () => checkbox.click()
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
setupIonicReact()
|
|
175
|
+
StatusBar.setStyle({ style: Style.Light })
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import react from '@vitejs/plugin-react'
|
|
2
|
+
import { defineConfig } from 'vite'
|
|
3
|
+
import { viteStaticCopy } from 'vite-plugin-static-copy';
|
|
4
|
+
|
|
5
|
+
export default defineConfig({
|
|
6
|
+
plugins: [
|
|
7
|
+
react(),
|
|
8
|
+
viteStaticCopy({
|
|
9
|
+
targets: [
|
|
10
|
+
{
|
|
11
|
+
src: 'src/main.html',
|
|
12
|
+
dest: '.'
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
})],
|
|
16
|
+
build: { outDir: 'www' }
|
|
17
|
+
})
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
|
3
|
+
// Hover to view descriptions of existing attributes.
|
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
+
"version": "0.2.0",
|
|
6
|
+
"configurations": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Debug Android on emulator",
|
|
9
|
+
"type": "cordova",
|
|
10
|
+
"request": "launch",
|
|
11
|
+
"platform": "android",
|
|
12
|
+
"target": "emulator",
|
|
13
|
+
"port": 9222,
|
|
14
|
+
"sourceMaps": true,
|
|
15
|
+
"cwd": "${workspaceFolder}"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "Debug Android on device",
|
|
19
|
+
"type": "cordova",
|
|
20
|
+
"request": "launch",
|
|
21
|
+
"platform": "android",
|
|
22
|
+
"target": "device",
|
|
23
|
+
"port": 9222,
|
|
24
|
+
"sourceMaps": true,
|
|
25
|
+
"cwd": "${workspaceFolder}"
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
// Type definitions for Apache Cordova
|
|
2
|
+
// Project: http://cordova.apache.org
|
|
3
|
+
// Definitions by: Microsoft Open Technologies Inc. <http://msopentech.com>
|
|
4
|
+
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
5
|
+
//
|
|
6
|
+
// Copyright (c) Microsoft Open Technologies, Inc.
|
|
7
|
+
// Licensed under the MIT license.
|
|
8
|
+
|
|
9
|
+
interface Cordova {
|
|
10
|
+
/** Invokes native functionality by specifying corresponding service name, action and optional parameters.
|
|
11
|
+
* @param success A success callback function.
|
|
12
|
+
* @param fail An error callback function.
|
|
13
|
+
* @param service The service name to call on the native side (corresponds to a native class).
|
|
14
|
+
* @param action The action name to call on the native side (generally corresponds to the native class method).
|
|
15
|
+
* @param args An array of arguments to pass into the native environment.
|
|
16
|
+
*/
|
|
17
|
+
exec(success: () => any, fail: () => any, service: string, action: string, args?: string[]): void;
|
|
18
|
+
/** Gets the operating system name. */
|
|
19
|
+
platformId: string;
|
|
20
|
+
/** Gets Cordova framework version */
|
|
21
|
+
version: string;
|
|
22
|
+
/** Defines custom logic as a Cordova module. Other modules can later access it using module name provided. */
|
|
23
|
+
define(moduleName: string, factory: (require: any, exports: any, module: any) => any): void;
|
|
24
|
+
/** Access a Cordova module by name. */
|
|
25
|
+
require(moduleName: string): any;
|
|
26
|
+
/** Namespace for Cordova plugin functionality */
|
|
27
|
+
plugins:CordovaPlugins;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
interface CordovaPlugins {}
|
|
31
|
+
|
|
32
|
+
interface Document {
|
|
33
|
+
addEventListener(type: "deviceready", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
34
|
+
addEventListener(type: "pause", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
35
|
+
addEventListener(type: "resume", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
36
|
+
addEventListener(type: "backbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
37
|
+
addEventListener(type: "menubutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
38
|
+
addEventListener(type: "searchbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
39
|
+
addEventListener(type: "startcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
40
|
+
addEventListener(type: "endcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
41
|
+
addEventListener(type: "volumedownbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
42
|
+
addEventListener(type: "volumeupbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
43
|
+
|
|
44
|
+
removeEventListener(type: "deviceready", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
45
|
+
removeEventListener(type: "pause", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
46
|
+
removeEventListener(type: "resume", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
47
|
+
removeEventListener(type: "backbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
48
|
+
removeEventListener(type: "menubutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
49
|
+
removeEventListener(type: "searchbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
50
|
+
removeEventListener(type: "startcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
51
|
+
removeEventListener(type: "endcallbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
52
|
+
removeEventListener(type: "volumedownbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
53
|
+
removeEventListener(type: "volumeupbutton", listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
54
|
+
|
|
55
|
+
addEventListener(type: string, listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
56
|
+
removeEventListener(type: string, listener: (ev: Event) => any, useCapture?: boolean): void;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
interface Window {
|
|
60
|
+
cordova:Cordova;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// cordova/argscheck module
|
|
64
|
+
interface ArgsCheck {
|
|
65
|
+
checkArgs(argsSpec: string, functionName: string, args: any[], callee?: any): void;
|
|
66
|
+
getValue(value?: any, defaultValue?: any): any;
|
|
67
|
+
enableChecks: boolean;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// cordova/urlutil module
|
|
71
|
+
interface UrlUtil {
|
|
72
|
+
makeAbsolute(url: string): string
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/** Apache Cordova instance */
|
|
76
|
+
declare var cordova: Cordova;
|
|
77
|
+
|
|
78
|
+
declare module 'cordova' {
|
|
79
|
+
export = cordova;
|
|
80
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Regula Document Reader Cordova demo application
|
|
2
|
+
|
|
3
|
+
## How to build demo application
|
|
4
|
+
1. Download or the clone current repository using the command `git clone https://github.com/regulaforensics/npm-document-reader.git`.
|
|
5
|
+
|
|
6
|
+
2. Execute `npm run setup` within this directory.
|
|
7
|
+
|
|
8
|
+
3. Run the app:
|
|
9
|
+
* IOS: `npm run ios`.
|
|
10
|
+
* Android: `npm run android`.
|
|
11
|
+
|
|
12
|
+
**Note**: this is just one way of running the app. You can also pass `-o` or `--open` argument to the command, and this will open Xcode/Android Studio, then run the app directly from the IDE. Overall, this is a more consistent way, so if you're having troubles running the app from terminal, try running it from the IDE.
|