80 lines
2.7 KiB
Swift
80 lines
2.7 KiB
Swift
//
|
|
// SSHKeyFileImportTableViewController.swift
|
|
// pass
|
|
//
|
|
// Created by Danny Moesch on 15.02.20.
|
|
// Copyright © 2020 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
import passKit
|
|
import SVProgressHUD
|
|
|
|
class SSHKeyFileImportTableViewController: AutoCellHeightUITableViewController {
|
|
@IBOutlet var sshPrivateKeyFile: UITableViewCell!
|
|
|
|
private var privateKey: String?
|
|
|
|
@IBAction
|
|
private func doneButtonTapped(_: Any) {
|
|
performSegue(withIdentifier: "importSSHKeySegue", sender: self)
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
|
let cell = tableView.cellForRow(at: indexPath)
|
|
let picker = UIDocumentPickerViewController(documentTypes: ["public.data"], in: .open)
|
|
cell?.isSelected = false
|
|
guard cell == sshPrivateKeyFile else {
|
|
return
|
|
}
|
|
picker.delegate = self
|
|
if #available(iOS 13.0, *) {
|
|
picker.shouldShowFileExtensions = true
|
|
}
|
|
present(picker, animated: true, completion: nil)
|
|
}
|
|
}
|
|
|
|
extension SSHKeyFileImportTableViewController: UIDocumentPickerDelegate {
|
|
func documentPicker(_: UIDocumentPickerViewController, didPickDocumentsAt url: [URL]) {
|
|
guard let url = url.first else {
|
|
return
|
|
}
|
|
let fileName = url.lastPathComponent
|
|
do {
|
|
// Start accessing a security-scoped resource.
|
|
guard url.startAccessingSecurityScopedResource() else {
|
|
// Handle the failure here.
|
|
throw AppError.readingFile(fileName: fileName)
|
|
}
|
|
|
|
// Make sure you release the security-scoped resource when you are done.
|
|
defer { url.stopAccessingSecurityScopedResource() }
|
|
|
|
privateKey = try String(contentsOf: url, encoding: .ascii)
|
|
sshPrivateKeyFile.textLabel?.text = fileName
|
|
} catch {
|
|
let message = "FileCannotBeImported.".localize(fileName) | "UnderlyingError".localize(error.localizedDescription)
|
|
Utils.alert(title: "CannotImportFile".localize(), message: message, controller: self)
|
|
}
|
|
}
|
|
}
|
|
|
|
extension SSHKeyFileImportTableViewController: KeyImporter {
|
|
static let keySource = KeySource.file
|
|
static let label = "LoadFromFiles".localize()
|
|
|
|
func isReadyToUse() -> Bool {
|
|
guard privateKey != nil else {
|
|
Utils.alert(title: "CannotSave".localize(), message: "SetPrivateKeyUrl.".localize(), controller: self)
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func importKeys() throws {
|
|
guard let privateKey = privateKey else {
|
|
return
|
|
}
|
|
try KeyFileManager.PrivateSSH.importKey(from: privateKey)
|
|
}
|
|
}
|