mirror of
https://github.com/mssun/passforios.git
synced 2025-12-14 20:35:41 +01:00
51 lines
1.5 KiB
Swift
51 lines
1.5 KiB
Swift
//
|
|
// AddPasswordTableViewController.swift
|
|
// pass
|
|
//
|
|
// Created by Mingshen Sun on 10/2/2017.
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
import passKit
|
|
import UIKit
|
|
|
|
class AddPasswordTableViewController: PasswordEditorTableViewController {
|
|
var defaultDirPrefix = ""
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
tableData[0][0][PasswordEditorCellKey.content] = defaultDirPrefix
|
|
}
|
|
|
|
override func shouldPerformSegue(withIdentifier identifier: String, sender _: Any?) -> Bool {
|
|
if identifier == "saveAddPasswordSegue" {
|
|
// check PGP key
|
|
guard PGPAgent.shared.isPrepared else {
|
|
let alertTitle = "CannotAddPassword".localize()
|
|
let alertMessage = "PgpKeyNotSet.".localize()
|
|
Utils.alert(title: alertTitle, message: alertMessage, controller: self, completion: nil)
|
|
return false
|
|
}
|
|
|
|
// check name
|
|
guard checkName() else {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
@IBAction
|
|
private func cancel(_: Any) {
|
|
navigationController?.popViewController(animated: true)
|
|
}
|
|
|
|
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
|
super.prepare(for: segue, sender: sender)
|
|
if segue.identifier == "saveAddPasswordSegue" {
|
|
let (name, path) = getNamePath()
|
|
password = Password(name: name, path: path, plainText: plainText)
|
|
}
|
|
}
|
|
}
|