2019-05-28 19:08:15 +02:00
|
|
|
//
|
|
|
|
// AccountsAddFeedbinWindowController.swift
|
|
|
|
// NetNewsWire
|
|
|
|
//
|
|
|
|
// Created by Maurice Parker on 5/2/19.
|
|
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import AppKit
|
|
|
|
import Account
|
|
|
|
import RSWeb
|
2020-04-10 04:07:56 +02:00
|
|
|
import Secrets
|
2019-05-28 19:08:15 +02:00
|
|
|
|
2019-06-19 18:25:37 +02:00
|
|
|
class AccountsReaderAPIWindowController: NSWindowController {
|
2019-05-28 19:08:15 +02:00
|
|
|
|
2019-06-20 14:22:51 +02:00
|
|
|
@IBOutlet weak var titleImageView: NSImageView!
|
|
|
|
@IBOutlet weak var titleLabel: NSTextField!
|
|
|
|
|
2020-10-25 02:42:34 +01:00
|
|
|
@IBOutlet weak var gridView: NSGridView!
|
2019-05-28 19:08:15 +02:00
|
|
|
@IBOutlet weak var progressIndicator: NSProgressIndicator!
|
|
|
|
@IBOutlet weak var usernameTextField: NSTextField!
|
|
|
|
@IBOutlet weak var apiURLTextField: NSTextField!
|
|
|
|
@IBOutlet weak var passwordTextField: NSSecureTextField!
|
|
|
|
@IBOutlet weak var errorMessageLabel: NSTextField!
|
|
|
|
@IBOutlet weak var actionButton: NSButton!
|
2020-11-06 12:07:28 +01:00
|
|
|
@IBOutlet weak var noAccountTextField: NSTextField!
|
2019-05-28 19:08:15 +02:00
|
|
|
|
|
|
|
var account: Account?
|
2019-06-20 14:22:51 +02:00
|
|
|
var accountType: AccountType?
|
2019-05-28 19:08:15 +02:00
|
|
|
|
|
|
|
private weak var hostWindow: NSWindow?
|
|
|
|
|
|
|
|
convenience init() {
|
2019-06-19 18:25:37 +02:00
|
|
|
self.init(windowNibName: NSNib.Name("AccountsReaderAPI"))
|
2019-05-28 19:08:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override func windowDidLoad() {
|
2019-06-20 14:22:51 +02:00
|
|
|
if let accountType = accountType {
|
|
|
|
switch accountType {
|
|
|
|
case .freshRSS:
|
|
|
|
titleImageView.image = AppAssets.accountFreshRSS
|
2020-11-06 12:07:28 +01:00
|
|
|
titleLabel.stringValue = NSLocalizedString("Sign in to your FreshRSS account.", comment: "FreshRSS")
|
|
|
|
noAccountTextField.stringValue = NSLocalizedString("Don't have a FreshRSS account?", comment: "No FreshRSS")
|
2020-10-24 21:18:01 +02:00
|
|
|
case .inoreader:
|
|
|
|
titleImageView.image = AppAssets.accountInoreader
|
2020-11-06 12:07:28 +01:00
|
|
|
titleLabel.stringValue = NSLocalizedString("Sign in to your InoReader account.", comment: "InoReader")
|
2020-10-25 02:42:34 +01:00
|
|
|
gridView.row(at: 2).isHidden = true
|
2020-11-06 12:07:28 +01:00
|
|
|
noAccountTextField.stringValue = NSLocalizedString("Don't have an InoReader account?", comment: "No InoReader")
|
2020-10-24 21:18:01 +02:00
|
|
|
case .bazQux:
|
|
|
|
titleImageView.image = AppAssets.accountBazQux
|
2020-11-06 12:07:28 +01:00
|
|
|
titleLabel.stringValue = NSLocalizedString("Sign in to your BazQux account.", comment: "BazQux")
|
2020-10-25 02:42:34 +01:00
|
|
|
gridView.row(at: 2).isHidden = true
|
2020-11-06 12:07:28 +01:00
|
|
|
noAccountTextField.stringValue = NSLocalizedString("Don't have a BazQux account?", comment: "No BazQux")
|
2020-10-24 21:18:01 +02:00
|
|
|
case .theOldReader:
|
|
|
|
titleImageView.image = AppAssets.accountTheOldReader
|
2020-11-06 12:07:28 +01:00
|
|
|
titleLabel.stringValue = NSLocalizedString("Sign in to your The Old Reader account.", comment: "The Old Reader")
|
2020-10-25 02:42:34 +01:00
|
|
|
gridView.row(at: 2).isHidden = true
|
2020-11-06 12:07:28 +01:00
|
|
|
noAccountTextField.stringValue = NSLocalizedString("Don't have a The Old Reader account?", comment: "No OldReader")
|
2019-06-20 14:22:51 +02:00
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-15 17:03:47 +02:00
|
|
|
if let account = account, let credentials = try? account.retrieveCredentials(type: .readerBasic) {
|
|
|
|
usernameTextField.stringValue = credentials.username
|
|
|
|
apiURLTextField.stringValue = account.endpointURL?.absoluteString ?? ""
|
2019-05-28 19:08:15 +02:00
|
|
|
actionButton.title = NSLocalizedString("Update", comment: "Update")
|
|
|
|
} else {
|
|
|
|
actionButton.title = NSLocalizedString("Create", comment: "Create")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: API
|
|
|
|
|
2019-12-15 01:14:55 +01:00
|
|
|
func runSheetOnWindow(_ hostWindow: NSWindow, completion: ((NSApplication.ModalResponse) -> Void)? = nil) {
|
2019-05-28 19:08:15 +02:00
|
|
|
self.hostWindow = hostWindow
|
2019-12-15 01:14:55 +01:00
|
|
|
hostWindow.beginSheet(window!, completionHandler: completion)
|
2019-05-28 19:08:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: Actions
|
|
|
|
|
|
|
|
@IBAction func cancel(_ sender: Any) {
|
|
|
|
hostWindow!.endSheet(window!, returnCode: NSApplication.ModalResponse.cancel)
|
|
|
|
}
|
|
|
|
|
|
|
|
@IBAction func action(_ sender: Any) {
|
|
|
|
self.errorMessageLabel.stringValue = ""
|
|
|
|
|
2020-10-25 02:42:34 +01:00
|
|
|
guard !usernameTextField.stringValue.isEmpty && !passwordTextField.stringValue.isEmpty else {
|
2019-05-28 19:08:15 +02:00
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("Username, password & API URL are required.", comment: "Credentials Error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-25 02:42:34 +01:00
|
|
|
guard let accountType = accountType, !(accountType == .freshRSS && apiURLTextField.stringValue.isEmpty) else {
|
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("Username, password & API URL are required.", comment: "Credentials Error")
|
|
|
|
return
|
|
|
|
}
|
2019-05-28 19:08:15 +02:00
|
|
|
|
2020-10-29 20:05:55 +01:00
|
|
|
guard account != nil || !AccountManager.shared.duplicateServiceAccount(type: accountType, username: usernameTextField.stringValue) else {
|
2020-10-26 01:41:16 +01:00
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("There is already an account of this type with that username created.", comment: "Duplicate Error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-25 02:42:34 +01:00
|
|
|
let apiURL: URL
|
|
|
|
switch accountType {
|
|
|
|
case .freshRSS:
|
|
|
|
guard let inputURL = URL(string: apiURLTextField.stringValue) else {
|
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("Invalid API URL.", comment: "Invalid API URL")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
apiURL = inputURL
|
|
|
|
case .inoreader:
|
|
|
|
apiURL = URL(string: ReaderAPIVariant.inoreader.host)!
|
|
|
|
case .bazQux:
|
|
|
|
apiURL = URL(string: ReaderAPIVariant.bazQux.host)!
|
|
|
|
case .theOldReader:
|
|
|
|
apiURL = URL(string: ReaderAPIVariant.theOldReader.host)!
|
|
|
|
default:
|
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("Unrecognized account type.", comment: "Bad account type")
|
2019-05-28 19:08:15 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-25 02:42:34 +01:00
|
|
|
actionButton.isEnabled = false
|
|
|
|
progressIndicator.isHidden = false
|
|
|
|
progressIndicator.startAnimation(self)
|
|
|
|
|
2019-09-15 17:03:47 +02:00
|
|
|
let credentials = Credentials(type: .readerBasic, username: usernameTextField.stringValue, secret: passwordTextField.stringValue)
|
2020-10-25 02:42:34 +01:00
|
|
|
Account.validateCredentials(type: accountType, credentials: credentials, endpoint: apiURL) { [weak self] result in
|
2019-05-28 19:08:15 +02:00
|
|
|
|
|
|
|
guard let self = self else { return }
|
|
|
|
|
|
|
|
self.actionButton.isEnabled = true
|
|
|
|
self.progressIndicator.isHidden = true
|
|
|
|
self.progressIndicator.stopAnimation(self)
|
|
|
|
|
|
|
|
switch result {
|
2019-05-29 16:54:52 +02:00
|
|
|
case .success(let validatedCredentials):
|
|
|
|
guard let validatedCredentials = validatedCredentials else {
|
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("Invalid email/password combination.", comment: "Credentials Error")
|
|
|
|
return
|
|
|
|
}
|
2019-05-28 19:08:15 +02:00
|
|
|
|
2019-05-29 16:54:52 +02:00
|
|
|
|
|
|
|
var newAccount = false
|
|
|
|
if self.account == nil {
|
2019-06-20 14:22:51 +02:00
|
|
|
self.account = AccountManager.shared.createAccount(type: self.accountType!)
|
2019-05-29 16:54:52 +02:00
|
|
|
newAccount = true
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
2019-05-29 21:16:09 +02:00
|
|
|
self.account?.endpointURL = apiURL
|
|
|
|
|
2019-09-15 17:03:47 +02:00
|
|
|
try self.account?.removeCredentials(type: .readerBasic)
|
|
|
|
try self.account?.removeCredentials(type: .readerAPIKey)
|
|
|
|
try self.account?.storeCredentials(credentials)
|
2019-05-29 16:54:52 +02:00
|
|
|
try self.account?.storeCredentials(validatedCredentials)
|
2019-05-29 21:16:09 +02:00
|
|
|
|
2019-05-29 16:54:52 +02:00
|
|
|
if newAccount {
|
|
|
|
self.account?.refreshAll() { result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
break
|
|
|
|
case .failure(let error):
|
|
|
|
NSApplication.shared.presentError(error)
|
2019-05-28 19:08:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-29 16:54:52 +02:00
|
|
|
self.hostWindow?.endSheet(self.window!, returnCode: NSApplication.ModalResponse.OK)
|
|
|
|
} catch {
|
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("Keychain error while storing credentials.", comment: "Credentials Error")
|
2019-05-28 19:08:15 +02:00
|
|
|
}
|
|
|
|
|
2019-05-29 16:54:52 +02:00
|
|
|
case .failure:
|
2019-12-08 03:10:32 +01:00
|
|
|
self.errorMessageLabel.stringValue = NSLocalizedString("Network error. Try again later.", comment: "Credentials Error")
|
2019-05-28 19:08:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-11-06 12:07:28 +01:00
|
|
|
|
|
|
|
@IBAction func createAccountWithProvider(_ sender: Any) {
|
|
|
|
switch accountType {
|
|
|
|
case .freshRSS:
|
|
|
|
NSWorkspace.shared.open(URL(string: "https://freshrss.org")!)
|
|
|
|
case .inoreader:
|
|
|
|
NSWorkspace.shared.open(URL(string: "https://www.inoreader.com")!)
|
|
|
|
case .bazQux:
|
|
|
|
NSWorkspace.shared.open(URL(string: "https://bazqux.com")!)
|
|
|
|
case .theOldReader:
|
|
|
|
NSWorkspace.shared.open(URL(string: "https://theoldreader.com")!)
|
|
|
|
default:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-28 19:08:15 +02:00
|
|
|
|
|
|
|
}
|