225 lines
7.2 KiB
Swift
225 lines
7.2 KiB
Swift
//
|
||
// FeedbinAccountViewController.swift
|
||
// NetNewsWire-iOS
|
||
//
|
||
// Created by Maurice Parker on 5/19/19.
|
||
// Copyright © 2019 Ranchero Software. All rights reserved.
|
||
//
|
||
|
||
import UIKit
|
||
import Account
|
||
import Secrets
|
||
import Web
|
||
import SafariServices
|
||
|
||
class FeedbinAccountViewController: UITableViewController {
|
||
|
||
@IBOutlet weak var activityIndicator: UIActivityIndicatorView!
|
||
@IBOutlet weak var cancelBarButtonItem: UIBarButtonItem!
|
||
@IBOutlet weak var emailTextField: UITextField!
|
||
@IBOutlet weak var passwordTextField: UITextField!
|
||
@IBOutlet weak var showHideButton: UIButton!
|
||
@IBOutlet weak var actionButton: UIButton!
|
||
@IBOutlet weak var footerLabel: UILabel!
|
||
@IBOutlet weak var onepasswordButton: UIBarButtonItem! {
|
||
didSet {
|
||
onepasswordButton.image?.withTintColor(AppAssets.primaryAccentColor)
|
||
}
|
||
}
|
||
|
||
weak var account: Account?
|
||
weak var delegate: AddAccountDismissDelegate?
|
||
|
||
var secretsProvider: SecretsProvider!
|
||
|
||
override func viewDidLoad() {
|
||
super.viewDidLoad()
|
||
setupFooter()
|
||
|
||
activityIndicator.isHidden = true
|
||
emailTextField.delegate = self
|
||
passwordTextField.delegate = self
|
||
|
||
if let account = account, let credentials = try? account.retrieveCredentials(type: .basic) {
|
||
actionButton.setTitle(NSLocalizedString("Update Credentials", comment: "Update Credentials"), for: .normal)
|
||
actionButton.isEnabled = true
|
||
emailTextField.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: emailTextField)
|
||
NotificationCenter.default.addObserver(self, selector: #selector(textDidChange(_:)), name: UITextField.textDidChangeNotification, object: passwordTextField)
|
||
|
||
tableView.register(ImageHeaderView.self, forHeaderFooterViewReuseIdentifier: "SectionHeader")
|
||
|
||
if !OnePasswordExtension.shared().isAppExtensionAvailable() {
|
||
onepasswordButton.isEnabled = false
|
||
onepasswordButton.image?.withTintColor(.clear)
|
||
}
|
||
}
|
||
|
||
private func setupFooter() {
|
||
footerLabel.text = NSLocalizedString("Sign in to your Feedbin account and sync your feeds across your devices. Your username and password will be encrypted and stored in Keychain.\n\nDon’t have a Feedbin account?", comment: "Feedbin")
|
||
}
|
||
|
||
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: .feedbin)
|
||
return headerView
|
||
} else {
|
||
return super.tableView(tableView, viewForHeaderInSection: section)
|
||
}
|
||
}
|
||
|
||
@IBAction func cancel(_ sender: Any) {
|
||
dismiss(animated: true, completion: nil)
|
||
}
|
||
|
||
@IBAction func retrievePasswordDetailsFrom1Password(_ sender: Any) {
|
||
OnePasswordExtension.shared().findLogin(forURLString: "feedbin.com", for: self, sender: self) { [self] loginDictionary, error in
|
||
if let loginDictionary = loginDictionary {
|
||
emailTextField.text = loginDictionary[AppExtensionUsernameKey] as? String
|
||
passwordTextField.text = loginDictionary[AppExtensionPasswordKey] as? String
|
||
actionButton.isEnabled = !(emailTextField.text?.isEmpty ?? false) && !(passwordTextField.text?.isEmpty ?? false)
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
@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 email = emailTextField.text, let password = passwordTextField.text else {
|
||
showError(NSLocalizedString("Username & password required.", comment: "Credentials Error"))
|
||
return
|
||
}
|
||
|
||
// When you fill in the email address via auto-complete it adds extra whitespace
|
||
let trimmedEmail = email.trimmingCharacters(in: .whitespaces)
|
||
|
||
guard account != nil || !AccountManager.shared.duplicateServiceAccount(type: .feedbin, username: trimmedEmail) else {
|
||
showError(NSLocalizedString("There is already a Feedbin account with that username created.", comment: "Duplicate Error"))
|
||
return
|
||
}
|
||
|
||
resignFirstResponder()
|
||
toggleActivityIndicatorAnimation(visible: true)
|
||
setNavigationEnabled(to: false)
|
||
|
||
let credentials = Credentials(type: .basic, username: trimmedEmail, secret: password)
|
||
|
||
Task { @MainActor in
|
||
|
||
var validationDidThrow = false
|
||
var validatedCredentials: Credentials?
|
||
|
||
do {
|
||
validatedCredentials = try await Account.validateCredentials(type: .feedbin, credentials: credentials, secretsProvider: Secrets())
|
||
} catch {
|
||
self.showError(error.localizedDescription)
|
||
validationDidThrow = true
|
||
}
|
||
|
||
self.toggleActivityIndicatorAnimation(visible: false)
|
||
self.setNavigationEnabled(to: true)
|
||
|
||
if validationDidThrow {
|
||
return
|
||
}
|
||
|
||
guard let validatedCredentials else {
|
||
self.showError(NSLocalizedString("Invalid username/password combination.", comment: "Credentials Error"))
|
||
return
|
||
}
|
||
|
||
if self.account == nil {
|
||
self.account = AccountManager.shared.createAccount(type: .feedbin)
|
||
}
|
||
|
||
do {
|
||
|
||
try self.account?.removeCredentials(type: .basic)
|
||
try self.account?.storeCredentials(validatedCredentials)
|
||
|
||
self.refreshAll()
|
||
|
||
self.dismiss(animated: true, completion: nil)
|
||
self.delegate?.dismiss()
|
||
} catch {
|
||
self.showError(NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error"))
|
||
}
|
||
}
|
||
}
|
||
|
||
private func refreshAll() {
|
||
|
||
Task { @MainActor in
|
||
do {
|
||
try await self.account?.refreshAll()
|
||
} catch {
|
||
self.presentError(error)
|
||
}
|
||
}
|
||
}
|
||
|
||
@IBAction func signUpWithProvider(_ sender: Any) {
|
||
let url = URL(string: "https://feedbin.com/signup")!
|
||
let safari = SFSafariViewController(url: url)
|
||
safari.modalPresentationStyle = .currentContext
|
||
self.present(safari, animated: true, completion: nil)
|
||
}
|
||
|
||
|
||
@objc func textDidChange(_ note: Notification) {
|
||
actionButton.isEnabled = !(emailTextField.text?.isEmpty ?? false) && !(passwordTextField.text?.isEmpty ?? false)
|
||
}
|
||
|
||
private func showError(_ message: String) {
|
||
presentError(title: NSLocalizedString("Error", comment: "Credentials Error"), message: message)
|
||
}
|
||
|
||
private func setNavigationEnabled(to value:Bool){
|
||
cancelBarButtonItem.isEnabled = value
|
||
actionButton.isEnabled = value
|
||
}
|
||
|
||
private func toggleActivityIndicatorAnimation(visible value: Bool){
|
||
activityIndicator.isHidden = !value
|
||
if value {
|
||
activityIndicator.startAnimating()
|
||
} else {
|
||
activityIndicator.stopAnimating()
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
extension FeedbinAccountViewController: UITextFieldDelegate {
|
||
|
||
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
|
||
if textField == emailTextField {
|
||
passwordTextField.becomeFirstResponder()
|
||
} else {
|
||
textField.resignFirstResponder()
|
||
action(self)
|
||
}
|
||
return true
|
||
}
|
||
|
||
}
|