- Move bundle/group identifiers to passKit/Global - Fix Core Data - Change Defaults to SharedDefaults
218 lines
9.7 KiB
Swift
218 lines
9.7 KiB
Swift
//
|
|
// GitServerSettingTableViewController.swift
|
|
// pass
|
|
//
|
|
// Created by Mingshen Sun on 21/1/2017.
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SVProgressHUD
|
|
import passKit
|
|
|
|
class GitServerSettingTableViewController: UITableViewController {
|
|
|
|
@IBOutlet weak var gitURLTextField: UITextField!
|
|
@IBOutlet weak var usernameTextField: UITextField!
|
|
@IBOutlet weak var authSSHKeyCell: UITableViewCell!
|
|
@IBOutlet weak var authPasswordCell: UITableViewCell!
|
|
let passwordStore = PasswordStore.shared
|
|
var sshLabel: UILabel? = nil
|
|
|
|
var authenticationMethod = SharedDefaults[.gitAuthenticationMethod] ?? "Password"
|
|
|
|
private func checkAuthenticationMethod(method: String) {
|
|
let passwordCheckView = authPasswordCell.viewWithTag(1001)!
|
|
let sshKeyCheckView = authSSHKeyCell.viewWithTag(1001)!
|
|
|
|
switch method {
|
|
case "Password":
|
|
passwordCheckView.isHidden = false
|
|
sshKeyCheckView.isHidden = true
|
|
case "SSH Key":
|
|
passwordCheckView.isHidden = true
|
|
sshKeyCheckView.isHidden = false
|
|
default:
|
|
passwordCheckView.isHidden = false
|
|
sshKeyCheckView.isHidden = true
|
|
}
|
|
}
|
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
super.viewWillAppear(animated)
|
|
// Grey out ssh option if ssh_key is not present
|
|
if let sshLabel = sshLabel {
|
|
sshLabel.isEnabled = passwordStore.gitSSHKeyExists()
|
|
}
|
|
}
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
if let url = SharedDefaults[.gitURL] {
|
|
gitURLTextField.text = url.absoluteString
|
|
}
|
|
usernameTextField.text = SharedDefaults[.gitUsername]
|
|
sshLabel = authSSHKeyCell.subviews[0].subviews[0] as? UILabel
|
|
checkAuthenticationMethod(method: authenticationMethod)
|
|
authSSHKeyCell.accessoryType = .detailButton
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, accessoryButtonTappedForRowWith indexPath: IndexPath) {
|
|
let cell = tableView.cellForRow(at: indexPath)
|
|
if cell == authSSHKeyCell {
|
|
showSSHKeyActionSheet()
|
|
}
|
|
}
|
|
|
|
override func viewDidAppear(_ animated: Bool) {
|
|
super.viewDidAppear(animated)
|
|
|
|
}
|
|
|
|
override func viewWillDisappear(_ animated: Bool) {
|
|
super.viewWillDisappear(animated)
|
|
view.endEditing(true)
|
|
}
|
|
|
|
private func cloneAndSegueIfSuccess() {
|
|
// try to clone
|
|
let gitRepostiroyURL = gitURLTextField.text!
|
|
let username = usernameTextField.text!
|
|
let auth = authenticationMethod
|
|
|
|
SVProgressHUD.setDefaultMaskType(.black)
|
|
SVProgressHUD.setDefaultStyle(.light)
|
|
SVProgressHUD.show(withStatus: "Prepare Repository")
|
|
var gitCredential: GitCredential
|
|
if auth == "Password" {
|
|
gitCredential = GitCredential(credential: GitCredential.Credential.http(userName: username, controller: self))
|
|
} else {
|
|
gitCredential = GitCredential(
|
|
credential: GitCredential.Credential.ssh(
|
|
userName: username,
|
|
privateKeyFile: Globals.gitSSHPrivateKeyURL,
|
|
controller: self
|
|
)
|
|
)
|
|
}
|
|
let dispatchQueue = DispatchQueue.global(qos: .userInitiated)
|
|
dispatchQueue.async {
|
|
do {
|
|
try self.passwordStore.cloneRepository(remoteRepoURL: URL(string: gitRepostiroyURL)!,
|
|
credential: gitCredential,
|
|
transferProgressBlock: { (git_transfer_progress, stop) in
|
|
DispatchQueue.main.async {
|
|
SVProgressHUD.showProgress(Float(git_transfer_progress.pointee.received_objects)/Float(git_transfer_progress.pointee.total_objects), status: "Clone Remote Repository")
|
|
}
|
|
},
|
|
checkoutProgressBlock: { (path, completedSteps, totalSteps) in
|
|
DispatchQueue.main.async {
|
|
SVProgressHUD.showProgress(Float(completedSteps)/Float(totalSteps), status: "Checkout Master Branch")
|
|
}
|
|
})
|
|
DispatchQueue.main.async {
|
|
SharedDefaults[.gitURL] = URL(string: gitRepostiroyURL)
|
|
SharedDefaults[.gitUsername] = username
|
|
SharedDefaults[.gitAuthenticationMethod] = auth
|
|
SVProgressHUD.showSuccess(withStatus: "Done")
|
|
SVProgressHUD.dismiss(withDelay: 1)
|
|
self.performSegue(withIdentifier: "saveGitServerSettingSegue", sender: self)
|
|
}
|
|
} catch {
|
|
DispatchQueue.main.async {
|
|
Utils.alert(title: "Error", message: error.localizedDescription, controller: self, completion: nil)
|
|
}
|
|
}
|
|
} }
|
|
|
|
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
|
let cell = tableView.cellForRow(at: indexPath)
|
|
if cell == authPasswordCell {
|
|
authenticationMethod = "Password"
|
|
} else if cell == authSSHKeyCell {
|
|
|
|
if !passwordStore.gitSSHKeyExists() {
|
|
Utils.alert(title: "Cannot Select SSH Key", message: "Please setup SSH key first.", controller: self, completion: nil)
|
|
authenticationMethod = "Password"
|
|
} else {
|
|
authenticationMethod = "SSH Key"
|
|
}
|
|
}
|
|
checkAuthenticationMethod(method: authenticationMethod)
|
|
tableView.deselectRow(at: indexPath, animated: true)
|
|
}
|
|
|
|
@IBAction func save(_ sender: Any) {
|
|
guard let _ = URL(string: gitURLTextField.text!) else {
|
|
Utils.alert(title: "Cannot Save", message: "Git Server is not set.", controller: self, completion: nil)
|
|
return
|
|
}
|
|
|
|
if passwordStore.repositoryExisted() {
|
|
let alert = UIAlertController(title: "Erase Current Password Store Data?", message: "A cloned password store exists. This operation will erase all local data. Data on your remote server will not be affected.", preferredStyle: UIAlertControllerStyle.alert)
|
|
alert.addAction(UIAlertAction(title: "Erase", style: UIAlertActionStyle.destructive, handler: { _ in
|
|
// perform segue only after a successful clone
|
|
self.cloneAndSegueIfSuccess()
|
|
}))
|
|
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel, handler: nil))
|
|
self.present(alert, animated: true, completion: nil)
|
|
} else {
|
|
// perform segue only after a successful clone
|
|
cloneAndSegueIfSuccess()
|
|
}
|
|
}
|
|
|
|
func showSSHKeyActionSheet() {
|
|
let optionMenu = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet)
|
|
var urlActionTitle = "Download from URL"
|
|
var armorActionTitle = "ASCII-Armor Encrypted Key"
|
|
var fileActionTitle = "Use Imported Keys"
|
|
|
|
if SharedDefaults[.gitSSHKeySource] == "url" {
|
|
urlActionTitle = "✓ \(urlActionTitle)"
|
|
} else if SharedDefaults[.gitSSHKeySource] == "armor" {
|
|
armorActionTitle = "✓ \(armorActionTitle)"
|
|
} else if SharedDefaults[.gitSSHKeySource] == "file" {
|
|
fileActionTitle = "✓ \(fileActionTitle)"
|
|
}
|
|
let urlAction = UIAlertAction(title: urlActionTitle, style: .default) { _ in
|
|
self.performSegue(withIdentifier: "setGitSSHKeyByURLSegue", sender: self)
|
|
}
|
|
let armorAction = UIAlertAction(title: armorActionTitle, style: .default) { _ in
|
|
self.performSegue(withIdentifier: "setGitSSHKeyByArmorSegue", sender: self)
|
|
}
|
|
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)
|
|
optionMenu.addAction(urlAction)
|
|
optionMenu.addAction(armorAction)
|
|
|
|
if passwordStore.gitSSHKeyExists() {
|
|
// might keys updated via iTunes, or downloaded/pasted inside the app
|
|
let fileAction = UIAlertAction(title: fileActionTitle, style: .default) { _ in
|
|
SharedDefaults[.gitSSHKeySource] = "file"
|
|
}
|
|
optionMenu.addAction(fileAction)
|
|
} else {
|
|
let fileAction = UIAlertAction(title: "iTunes File Sharing", style: .default) { _ in
|
|
let title = "Import via iTunes File Sharing"
|
|
let message = "Copy your private key from your computer to Pass for iOS with the name \"ssh_key\" (without quotes)."
|
|
Utils.alert(title: title, message: message, controller: self)
|
|
}
|
|
optionMenu.addAction(fileAction)
|
|
}
|
|
|
|
if SharedDefaults[.gitSSHKeySource] != nil {
|
|
let deleteAction = UIAlertAction(title: "Remove Git SSH Keys", style: .destructive) { _ in
|
|
self.passwordStore.removeGitSSHKeys()
|
|
SharedDefaults[.gitSSHKeySource] = nil
|
|
if let sshLabel = self.sshLabel {
|
|
sshLabel.isEnabled = false
|
|
self.checkAuthenticationMethod(method: "Password")
|
|
}
|
|
}
|
|
optionMenu.addAction(deleteAction)
|
|
}
|
|
optionMenu.addAction(cancelAction)
|
|
optionMenu.popoverPresentationController?.sourceView = authSSHKeyCell
|
|
optionMenu.popoverPresentationController?.sourceRect = authSSHKeyCell.bounds
|
|
self.present(optionMenu, animated: true, completion: nil)
|
|
}
|
|
}
|