NetNewsWire/Mac/Preferences/Accounts/AccountsFeedbinWindowContro...

120 lines
3.5 KiB
Swift
Raw Normal View History

//
// AccountsAddFeedbinWindowController.swift
// NetNewsWire
//
// Created by Maurice Parker on 5/2/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import AppKit
import Account
import RSWeb
2019-05-04 23:10:58 +02:00
class AccountsFeedbinWindowController: NSWindowController {
@IBOutlet weak var progressIndicator: NSProgressIndicator!
@IBOutlet weak var usernameTextField: NSTextField!
@IBOutlet weak var passwordTextField: NSSecureTextField!
@IBOutlet weak var errorMessageLabel: NSTextField!
2019-05-04 23:10:58 +02:00
@IBOutlet weak var actionButton: NSButton!
var account: Account?
private weak var hostWindow: NSWindow?
convenience init() {
2019-05-04 23:10:58 +02:00
self.init(windowNibName: NSNib.Name("AccountsFeedbin"))
}
override func windowDidLoad() {
2019-05-05 10:25:21 +02:00
if let account = account, let credentials = try? account.retrieveBasicCredentials() {
if case .basic(let username, let password) = credentials {
usernameTextField.stringValue = username
passwordTextField.stringValue = password
}
2019-05-04 23:10:58 +02:00
actionButton.title = NSLocalizedString("Update", comment: "Update")
} else {
actionButton.title = NSLocalizedString("Create", comment: "Create")
}
}
// MARK: API
func runSheetOnWindow(_ hostWindow: NSWindow, completionHandler handler: ((NSApplication.ModalResponse) -> Void)? = nil) {
self.hostWindow = hostWindow
hostWindow.beginSheet(window!, completionHandler: handler)
}
// MARK: Actions
@IBAction func cancel(_ sender: Any) {
hostWindow!.endSheet(window!, returnCode: NSApplication.ModalResponse.cancel)
}
2019-05-04 23:10:58 +02:00
@IBAction func action(_ sender: Any) {
self.errorMessageLabel.stringValue = ""
guard !usernameTextField.stringValue.isEmpty && !passwordTextField.stringValue.isEmpty else {
self.errorMessageLabel.stringValue = NSLocalizedString("Username & password required.", comment: "Credentials Error")
return
}
2019-05-04 23:10:58 +02:00
actionButton.isEnabled = false
progressIndicator.isHidden = false
progressIndicator.startAnimation(self)
2019-05-05 10:25:21 +02:00
let credentials = Credentials.basic(username: usernameTextField.stringValue, password: passwordTextField.stringValue)
Account.validateCredentials(type: .feedbin, credentials: credentials) { [weak self] result in
guard let self = self else { return }
2019-05-04 23:10:58 +02:00
self.actionButton.isEnabled = true
self.progressIndicator.isHidden = true
self.progressIndicator.stopAnimation(self)
switch result {
case .success(let authenticated):
if authenticated {
2019-05-04 23:10:58 +02:00
2019-05-05 22:41:20 +02:00
var newAccount = false
2019-05-04 23:10:58 +02:00
if self.account == nil {
self.account = AccountManager.shared.createAccount(type: .feedbin)
2019-05-05 22:41:20 +02:00
newAccount = true
2019-05-04 23:10:58 +02:00
}
2019-05-04 22:14:49 +02:00
do {
2019-05-05 10:25:21 +02:00
try self.account?.removeBasicCredentials()
2019-05-04 23:10:58 +02:00
try self.account?.storeCredentials(credentials)
2019-05-05 22:41:20 +02:00
if newAccount {
self.account?.refreshAll() { result in
switch result {
case .success:
break
case .failure(let error):
NSApplication.shared.presentError(error)
}
}
2019-05-05 22:41:20 +02:00
}
2019-05-04 22:14:49 +02:00
self.hostWindow?.endSheet(self.window!, returnCode: NSApplication.ModalResponse.OK)
} catch {
self.errorMessageLabel.stringValue = NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error")
}
} else {
self.errorMessageLabel.stringValue = NSLocalizedString("Invalid email/password combination.", comment: "Credentials Error")
}
case .failure:
self.errorMessageLabel.stringValue = NSLocalizedString("Network error. Try again later.", comment: "Credentials Error")
}
}
}
}