2017-01-19 21:15:47 +08:00
|
|
|
//
|
2017-02-03 13:01:41 +08:00
|
|
|
// PasswordsViewController.swift
|
2017-01-19 21:15:47 +08:00
|
|
|
// pass
|
|
|
|
|
//
|
2017-02-03 13:01:41 +08:00
|
|
|
// Created by Mingshen Sun on 3/2/2017.
|
2017-01-19 21:15:47 +08:00
|
|
|
// Copyright © 2017 Bob Sun. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
import Result
|
|
|
|
|
import SVProgressHUD
|
|
|
|
|
|
2017-02-03 13:01:41 +08:00
|
|
|
class PasswordsViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
|
2017-01-19 21:15:47 +08:00
|
|
|
private var passwordEntities: [PasswordEntity]?
|
2017-01-23 12:48:20 +08:00
|
|
|
var filteredPasswordEntities = [PasswordEntity]()
|
2017-02-02 15:03:34 +08:00
|
|
|
var sections : [(index: Int, length :Int, title: String)] = Array()
|
2017-02-03 13:01:41 +08:00
|
|
|
var searchActive : Bool = false
|
|
|
|
|
let searchController = UISearchController(searchResultsController: nil)
|
2017-02-04 11:30:57 +08:00
|
|
|
lazy var refreshControl: UIRefreshControl = {
|
|
|
|
|
let refreshControl = UIRefreshControl()
|
|
|
|
|
refreshControl.addTarget(self, action: #selector(PasswordsViewController.handleRefresh(_:)), for: UIControlEvents.valueChanged)
|
2017-02-04 11:47:57 +08:00
|
|
|
refreshControl.attributedTitle = NSAttributedString(string: "Sync Passwords")
|
2017-02-04 11:30:57 +08:00
|
|
|
return refreshControl
|
|
|
|
|
}()
|
|
|
|
|
let searchBarView = UIView(frame: CGRect(x: 0, y: 64, width: UIScreen.main.bounds.width, height: 44))
|
2017-02-03 13:01:41 +08:00
|
|
|
|
|
|
|
|
@IBOutlet weak var tableView: UITableView!
|
2017-01-23 13:43:06 +08:00
|
|
|
|
2017-01-23 16:29:36 +08:00
|
|
|
@IBAction func refreshPasswords(_ sender: UIBarButtonItem) {
|
2017-02-04 11:47:57 +08:00
|
|
|
syncPasswords()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func syncPasswords() {
|
2017-01-23 17:36:10 +08:00
|
|
|
SVProgressHUD.setDefaultMaskType(.black)
|
2017-02-04 11:47:57 +08:00
|
|
|
SVProgressHUD.show(withStatus: "Sync Passwords")
|
2017-02-04 11:35:28 +08:00
|
|
|
DispatchQueue.global(qos: .userInitiated).async { [unowned self] in
|
2017-01-23 17:36:10 +08:00
|
|
|
if PasswordStore.shared.pullRepository(transferProgressBlock: {(git_transfer_progress, stop) in
|
|
|
|
|
DispatchQueue.main.async {
|
2017-02-03 13:01:41 +08:00
|
|
|
SVProgressHUD.showProgress(Float(git_transfer_progress.pointee.received_objects)/Float(git_transfer_progress.pointee.total_objects), status: "Pull Remote Repository")
|
2017-01-23 17:36:10 +08:00
|
|
|
}
|
|
|
|
|
}) {
|
|
|
|
|
DispatchQueue.main.async {
|
|
|
|
|
SVProgressHUD.showSuccess(withStatus: "Done")
|
|
|
|
|
SVProgressHUD.dismiss(withDelay: 1)
|
|
|
|
|
}
|
2017-01-23 16:29:36 +08:00
|
|
|
print("pull success")
|
|
|
|
|
self.passwordEntities = PasswordStore.shared.fetchPasswordEntityCoreData()
|
2017-02-04 11:30:57 +08:00
|
|
|
self.reloadTableView(data: self.passwordEntities!)
|
2017-01-23 16:29:36 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-19 21:15:47 +08:00
|
|
|
override func viewDidLoad() {
|
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
passwordEntities = PasswordStore.shared.fetchPasswordEntityCoreData()
|
2017-02-03 13:20:03 +08:00
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(PasswordsViewController.actOnPasswordUpdatedNotification), name: NSNotification.Name(rawValue: "passwordUpdated"), object: nil)
|
2017-02-03 13:01:41 +08:00
|
|
|
generateSections(item: passwordEntities!)
|
|
|
|
|
tableView.delegate = self
|
|
|
|
|
tableView.dataSource = self
|
2017-01-23 12:48:20 +08:00
|
|
|
searchController.searchResultsUpdater = self
|
|
|
|
|
searchController.dimsBackgroundDuringPresentation = false
|
2017-02-03 13:01:41 +08:00
|
|
|
searchController.searchBar.sizeToFit()
|
2017-01-23 12:48:20 +08:00
|
|
|
definesPresentationContext = true
|
2017-02-03 13:01:41 +08:00
|
|
|
searchBarView.addSubview(searchController.searchBar)
|
|
|
|
|
view.addSubview(searchBarView)
|
2017-02-04 11:30:57 +08:00
|
|
|
tableView.insertSubview(refreshControl, at: 0)
|
2017-02-02 15:03:34 +08:00
|
|
|
}
|
|
|
|
|
|
2017-02-03 14:20:52 +08:00
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
|
|
|
super.viewWillAppear(animated)
|
|
|
|
|
if let path = tableView.indexPathForSelectedRow {
|
|
|
|
|
tableView.deselectRow(at: path, animated: false)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-03 13:01:41 +08:00
|
|
|
func numberOfSections(in tableView: UITableView) -> Int {
|
2017-02-02 15:03:34 +08:00
|
|
|
return sections.count
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-03 13:01:41 +08:00
|
|
|
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
|
|
|
|
return sections[section].length
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
|
|
|
|
let cell = tableView.dequeueReusableCell(withIdentifier: "passwordTableViewCell", for: indexPath)
|
|
|
|
|
var password: PasswordEntity
|
|
|
|
|
let index = sections[indexPath.section].index + indexPath.row
|
|
|
|
|
if searchController.isActive && searchController.searchBar.text != "" {
|
|
|
|
|
password = filteredPasswordEntities[index]
|
|
|
|
|
} else {
|
|
|
|
|
password = passwordEntities![index]
|
|
|
|
|
}
|
|
|
|
|
cell.textLabel?.text = password.name
|
|
|
|
|
return cell
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
|
|
|
|
|
return sections[section].title
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func sectionIndexTitles(for tableView: UITableView) -> [String]? {
|
|
|
|
|
return sections.map { $0.title }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int {
|
|
|
|
|
return index
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-04 11:30:57 +08:00
|
|
|
|
|
|
|
|
func tableView(_ tableView: UITableView, accessoryButtonTappedForRowWith indexPath: IndexPath) {
|
|
|
|
|
let index = sections[indexPath.section].index + indexPath.row
|
|
|
|
|
let password: PasswordEntity
|
|
|
|
|
if searchController.isActive && searchController.searchBar.text != "" {
|
|
|
|
|
password = filteredPasswordEntities[index]
|
|
|
|
|
} else {
|
|
|
|
|
password = passwordEntities![index]
|
|
|
|
|
}
|
|
|
|
|
let decryptedPassword = password.decrypt()!
|
|
|
|
|
UIPasteboard.general.string = decryptedPassword.password
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-02 15:03:34 +08:00
|
|
|
func generateSections(item: [PasswordEntity]) {
|
|
|
|
|
sections.removeAll()
|
|
|
|
|
if item.count == 0 {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
var index = 0
|
|
|
|
|
for i in 0 ..< item.count {
|
|
|
|
|
let name = item[index].name!.uppercased()
|
|
|
|
|
let commonPrefix = item[i].name!.commonPrefix(with: name, options: .caseInsensitive)
|
|
|
|
|
if commonPrefix.characters.count == 0 {
|
|
|
|
|
let firstCharacter = name[name.startIndex]
|
|
|
|
|
let newSection = (index: index, length: i - index, title: "\(firstCharacter)")
|
|
|
|
|
sections.append(newSection)
|
|
|
|
|
index = i
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let name = item[index].name!.uppercased()
|
|
|
|
|
let firstCharacter = name[name.startIndex]
|
|
|
|
|
let newSection = (index: index, length: item.count - index, title: "\(firstCharacter)")
|
|
|
|
|
sections.append(newSection)
|
2017-01-23 12:48:20 +08:00
|
|
|
}
|
|
|
|
|
|
2017-01-19 21:15:47 +08:00
|
|
|
func actOnPasswordUpdatedNotification() {
|
|
|
|
|
passwordEntities = PasswordStore.shared.fetchPasswordEntityCoreData()
|
2017-02-04 11:30:57 +08:00
|
|
|
reloadTableView(data: passwordEntities!)
|
2017-01-19 21:15:47 +08:00
|
|
|
print("actOnPasswordUpdatedNotification")
|
|
|
|
|
}
|
2017-02-03 13:01:41 +08:00
|
|
|
|
2017-01-22 01:42:36 +08:00
|
|
|
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
|
|
|
|
if segue.identifier == "showPasswordDetail" {
|
2017-02-02 21:04:31 +08:00
|
|
|
if let viewController = segue.destination as? PasswordDetailTableViewController {
|
2017-02-02 15:03:34 +08:00
|
|
|
let selectedIndexPath = self.tableView.indexPath(for: sender as! UITableViewCell)!
|
|
|
|
|
let index = sections[selectedIndexPath.section].index + selectedIndexPath.row
|
2017-01-23 12:48:20 +08:00
|
|
|
let password: PasswordEntity
|
|
|
|
|
if searchController.isActive && searchController.searchBar.text != "" {
|
2017-02-02 15:03:34 +08:00
|
|
|
password = filteredPasswordEntities[index]
|
2017-01-23 12:48:20 +08:00
|
|
|
} else {
|
2017-02-02 15:03:34 +08:00
|
|
|
password = passwordEntities![index]
|
2017-01-23 12:48:20 +08:00
|
|
|
}
|
|
|
|
|
viewController.passwordEntity = password
|
2017-01-23 13:12:22 +08:00
|
|
|
viewController.navigationItem.title = password.name
|
2017-01-22 01:42:36 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-04 11:30:57 +08:00
|
|
|
|
2017-02-03 13:01:41 +08:00
|
|
|
func filterContentForSearchText(searchText: String, scope: String = "All") {
|
|
|
|
|
filteredPasswordEntities = passwordEntities!.filter { password in
|
|
|
|
|
return password.name!.lowercased().contains(searchText.lowercased())
|
|
|
|
|
}
|
|
|
|
|
if searchController.isActive && searchController.searchBar.text != "" {
|
2017-02-04 11:30:57 +08:00
|
|
|
reloadTableView(data: filteredPasswordEntities)
|
2017-02-03 13:01:41 +08:00
|
|
|
} else {
|
2017-02-04 11:30:57 +08:00
|
|
|
reloadTableView(data: passwordEntities!)
|
2017-02-03 13:01:41 +08:00
|
|
|
}
|
2017-02-04 11:30:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func reloadTableView (data: [PasswordEntity]) {
|
|
|
|
|
generateSections(item: data)
|
2017-02-03 13:01:41 +08:00
|
|
|
tableView.reloadData()
|
|
|
|
|
}
|
2017-02-04 11:30:57 +08:00
|
|
|
|
|
|
|
|
func handleRefresh(_ refreshControl: UIRefreshControl) {
|
2017-02-04 11:47:57 +08:00
|
|
|
syncPasswords()
|
2017-02-04 11:30:57 +08:00
|
|
|
refreshControl.endRefreshing()
|
|
|
|
|
}
|
2017-01-19 21:15:47 +08:00
|
|
|
}
|
2017-01-23 16:29:36 +08:00
|
|
|
|
2017-02-03 13:01:41 +08:00
|
|
|
extension PasswordsViewController: UISearchResultsUpdating {
|
2017-01-23 16:29:36 +08:00
|
|
|
func updateSearchResults(for searchController: UISearchController) {
|
|
|
|
|
filterContentForSearchText(searchText: searchController.searchBar.text!)
|
|
|
|
|
}
|
|
|
|
|
}
|