176 lines
5.3 KiB
Swift
176 lines
5.3 KiB
Swift
//
|
|
// NewsBlurAccountViewController.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Anh-Quang Do on 3/9/20.
|
|
// Copyright (c) 2020 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import Account
|
|
import Secrets
|
|
import RSWeb
|
|
|
|
class NewsBlurAccountViewController: UITableViewController {
|
|
|
|
@IBOutlet weak var activityIndicator: UIActivityIndicatorView!
|
|
@IBOutlet weak var cancelBarButtonItem: UIBarButtonItem!
|
|
@IBOutlet weak var usernameTextField: UITextField!
|
|
@IBOutlet weak var passwordTextField: UITextField!
|
|
@IBOutlet weak var showHideButton: UIButton!
|
|
@IBOutlet weak var actionButton: UIButton!
|
|
|
|
weak var account: Account?
|
|
weak var delegate: AddAccountDismissDelegate?
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
activityIndicator.isHidden = true
|
|
usernameTextField.delegate = self
|
|
passwordTextField.delegate = self
|
|
|
|
if let account = account, let credentials = try? account.retrieveCredentials(type: .newsBlurBasic) {
|
|
actionButton.setTitle(NSLocalizedString("Update Credentials", comment: "Update Credentials"), for: .normal)
|
|
actionButton.isEnabled = true
|
|
usernameTextField.text = credentials.username
|
|
passwordTextField.text = credentials.secret
|
|
} else {
|
|
actionButton.setTitle(NSLocalizedString("Add Account", comment: "Add Account"), for: .normal)
|
|
}
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(textDidChange(_:)), name: UITextField.textDidChangeNotification, object: usernameTextField)
|
|
NotificationCenter.default.addObserver(self, selector: #selector(textDidChange(_:)), name: UITextField.textDidChangeNotification, object: passwordTextField)
|
|
|
|
tableView.register(ImageHeaderView.self, forHeaderFooterViewReuseIdentifier: "SectionHeader")
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
|
|
return section == 0 ? ImageHeaderView.rowHeight : super.tableView(tableView, heightForHeaderInSection: section)
|
|
}
|
|
|
|
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
|
if section == 0 {
|
|
let headerView = tableView.dequeueReusableHeaderFooterView(withIdentifier: "SectionHeader") as! ImageHeaderView
|
|
headerView.imageView.image = AppAssets.image(for: .newsBlur)
|
|
return headerView
|
|
} else {
|
|
return super.tableView(tableView, viewForHeaderInSection: section)
|
|
}
|
|
}
|
|
|
|
@IBAction func cancel(_ sender: Any) {
|
|
dismiss(animated: true, completion: nil)
|
|
}
|
|
|
|
@IBAction func showHidePassword(_ sender: Any) {
|
|
if passwordTextField.isSecureTextEntry {
|
|
passwordTextField.isSecureTextEntry = false
|
|
showHideButton.setTitle("Hide", for: .normal)
|
|
} else {
|
|
passwordTextField.isSecureTextEntry = true
|
|
showHideButton.setTitle("Show", for: .normal)
|
|
}
|
|
}
|
|
|
|
@IBAction func action(_ sender: Any) {
|
|
|
|
guard let username = usernameTextField.text else {
|
|
showError(NSLocalizedString("Username required.", comment: "Credentials Error"))
|
|
return
|
|
}
|
|
|
|
let password = passwordTextField.text ?? ""
|
|
|
|
startAnimatingActivityIndicator()
|
|
disableNavigation()
|
|
|
|
// When you fill in the email address via auto-complete it adds extra whitespace
|
|
let trimmedUsername = username.trimmingCharacters(in: .whitespaces)
|
|
let credentials = Credentials(type: .newsBlurBasic, username: trimmedUsername, secret: password)
|
|
Account.validateCredentials(type: .newsBlur, credentials: credentials) { result in
|
|
|
|
self.stopAnimatingActivityIndicator()
|
|
self.enableNavigation()
|
|
|
|
switch result {
|
|
case .success(let credentials):
|
|
if let credentials = credentials {
|
|
var newAccount = false
|
|
if self.account == nil {
|
|
self.account = AccountManager.shared.createAccount(type: .newsBlur)
|
|
newAccount = true
|
|
}
|
|
|
|
do {
|
|
|
|
do {
|
|
try self.account?.removeCredentials(type: .newsBlurBasic)
|
|
} catch {}
|
|
try self.account?.storeCredentials(credentials)
|
|
|
|
if newAccount {
|
|
self.account?.refreshAll() { result in
|
|
switch result {
|
|
case .success:
|
|
break
|
|
case .failure(let error):
|
|
self.presentError(error)
|
|
}
|
|
}
|
|
}
|
|
|
|
self.dismiss(animated: true, completion: nil)
|
|
self.delegate?.dismiss()
|
|
} catch {
|
|
self.showError(NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error"))
|
|
}
|
|
} else {
|
|
self.showError(NSLocalizedString("Invalid username/password combination.", comment: "Credentials Error"))
|
|
}
|
|
case .failure(let error):
|
|
self.showError(error.localizedDescription)
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
@objc func textDidChange(_ note: Notification) {
|
|
actionButton.isEnabled = !(usernameTextField.text?.isEmpty ?? false)
|
|
}
|
|
|
|
private func showError(_ message: String) {
|
|
presentError(title: "Error", message: message)
|
|
}
|
|
|
|
private func enableNavigation() {
|
|
self.cancelBarButtonItem.isEnabled = true
|
|
self.actionButton.isEnabled = true
|
|
}
|
|
|
|
private func disableNavigation() {
|
|
cancelBarButtonItem.isEnabled = false
|
|
actionButton.isEnabled = false
|
|
}
|
|
|
|
private func startAnimatingActivityIndicator() {
|
|
activityIndicator.isHidden = false
|
|
activityIndicator.startAnimating()
|
|
}
|
|
|
|
private func stopAnimatingActivityIndicator() {
|
|
self.activityIndicator.isHidden = true
|
|
self.activityIndicator.stopAnimating()
|
|
}
|
|
|
|
}
|
|
|
|
extension NewsBlurAccountViewController: UITextFieldDelegate {
|
|
|
|
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
|
|
textField.resignFirstResponder()
|
|
return true
|
|
}
|
|
|
|
}
|