Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ios screenlock #3257

Merged
merged 2 commits into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 26 additions & 24 deletions frontends/ios/BitBoxApp/BitBoxApp/BitBoxAppApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,6 @@ import SwiftUI
import Mobileserver
import LocalAuthentication

func authenticateUser(completion: @escaping (Bool) -> Void) {
let context = LAContext()
var error: NSError?

if context.canEvaluatePolicy(.deviceOwnerAuthentication, error: &error) {
// TODO: localize the reason string.
let reason = "Authentication required"
context.evaluatePolicy(.deviceOwnerAuthentication, localizedReason: reason) { success, authenticationError in
DispatchQueue.main.async {
completion(success)
}
}
} else {
// Biometric authentication not available
DispatchQueue.main.async {
completion(false)
}
}
}

protocol MessageHandlersProtocol {
func callResponseHandler(queryID: Int, response: String)
func pushNotificationHandler(msg: String)
Expand All @@ -53,9 +33,31 @@ class GoEnvironment: NSObject, MobileserverGoEnvironmentInterfaceProtocol, UIDoc
}

func auth() {
authenticateUser { success in
// TODO: enabling auth but entering wrong passcode does not remove auth screen
MobileserverAuthResult(success)
let context = LAContext()
var error: NSError?

if context.canEvaluatePolicy(.deviceOwnerAuthentication, error: &error) {
// TODO: localize the reason string.
let reason = "Authentication required"
context.evaluatePolicy(.deviceOwnerAuthentication, localizedReason: reason) { success, authenticationError in
DispatchQueue.main.async {
if success {
MobileserverAuthResult(true);
} else {
if let laError = authenticationError as? LAError,
laError.code == .userCancel {
MobileserverCancelAuth();
} else {
MobileserverAuthResult(false);
}
}
}
}
} else {
// Biometric authentication not available
DispatchQueue.main.async {
MobileserverAuthResult(false);
}
}
}

Expand All @@ -67,7 +69,7 @@ class GoEnvironment: NSObject, MobileserverGoEnvironmentInterfaceProtocol, UIDoc
if !bluetoothManager.isConnected() {
return nil
}

let productInfo = bluetoothManager.parseProduct();
guard let productInfo = productInfo else {
// Not ready or explicitly not connected (waiting for the device to enter
Expand Down
2 changes: 2 additions & 0 deletions frontends/ios/BitBoxApp/BitBoxApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@
<string>This app uses Bluetooth to connect to devices.</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>Bluetooth is needed for communication with devices.</string>
<key>NSFaceIDUsageDescription</key>
<string>Authenticate to access your BitBoxApp.</string>
</dict>
</plist>
Loading