mirror of
https://github.com/home-assistant/iOS.git
synced 2026-02-04 20:42:53 -06:00
<!-- Thank you for submitting a Pull Request and helping to improve Home Assistant. Please complete the following sections to help the processing and review of your changes. Please do not delete anything from this template. --> ## Summary <!-- Provide a brief summary of the changes you have made and most importantly what they aim to achieve --> ## Screenshots <!-- If this is a user-facing change not in the frontend, please include screenshots in light and dark mode. --> ## Link to pull request in Documentation repository <!-- Pull requests that add, change or remove functionality must have a corresponding pull request in the Companion App Documentation repository (https://github.com/home-assistant/companion.home-assistant). Please add the number of this pull request after the "#" --> Documentation: home-assistant/companion.home-assistant# ## Any other notes <!-- If there is any other information of note, like if this Pull Request is part of a bigger change, please include it here. --> https://github.com/user-attachments/assets/e79c6e4d-13ff-405a-9463-02e597ce4996
49 lines
1.8 KiB
Swift
49 lines
1.8 KiB
Swift
import Foundation
|
|
import Shared
|
|
|
|
final class ThreadTransferCredentialToKeychainViewModel: ThreadCredentialsSharingViewModelProtocol {
|
|
@Published var showOperationSuccess: Bool = false
|
|
@Published var showAlert: Bool = false
|
|
@Published var alertType: ThreadCredentialsAlertType?
|
|
|
|
private let macExtendedAddress: String
|
|
private let activeOperationalDataset: String
|
|
|
|
init(macExtendedAddress: String, activeOperationalDataset: String) {
|
|
self.macExtendedAddress = macExtendedAddress
|
|
self.activeOperationalDataset = activeOperationalDataset
|
|
}
|
|
|
|
@MainActor
|
|
func mainOperation() async {
|
|
do {
|
|
try await Current.matter.threadClientService.saveCredential(
|
|
macExtendedAddress: macExtendedAddress,
|
|
operationalDataSet: activeOperationalDataset
|
|
)
|
|
showOperationSuccess = true
|
|
} catch {
|
|
handleError(error)
|
|
}
|
|
}
|
|
|
|
private func handleError(_ error: Error?) {
|
|
guard let error else { return }
|
|
switch error {
|
|
case ThreadClientServiceError.failedToConvertToHexadecimal:
|
|
Current.Log.error("Failed to convert input to hexadecimal while storing thread credential in keychain")
|
|
alertType = .error(
|
|
title: L10n.Thread.StoreInKeychain.Error.title,
|
|
message: L10n.Thread.StoreInKeychain.Error.HexadecimalConversion.body
|
|
)
|
|
default:
|
|
Current.Log.error("Failed to store thread credential in keychain: \(error.localizedDescription)")
|
|
alertType = .error(
|
|
title: L10n.Thread.StoreInKeychain.Error.title,
|
|
message: L10n.Thread.StoreInKeychain.Error.message(error.localizedDescription)
|
|
)
|
|
}
|
|
showAlert = true
|
|
}
|
|
}
|