2020-12-05 14:17:55 +01:00
|
|
|
//
|
|
|
|
// AddFeedlyViewModel.swift
|
|
|
|
// Multiplatform macOS
|
|
|
|
//
|
|
|
|
// Created by Stuart Breckenridge on 05/12/2020.
|
|
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
import Account
|
|
|
|
import RSCore
|
|
|
|
import RSWeb
|
|
|
|
import Secrets
|
|
|
|
|
2020-12-06 00:58:20 +01:00
|
|
|
class AddFeedlyViewModel: ObservableObject, OAuthAccountAuthorizationOperationDelegate, AddAccountSignUp {
|
2020-12-05 14:17:55 +01:00
|
|
|
@Published var isAuthenticating: Bool = false
|
|
|
|
@Published var accountUpdateError: AccountUpdateErrors = .none
|
|
|
|
@Published var showError: Bool = false
|
|
|
|
@Published var username: String = ""
|
|
|
|
@Published var password: String = ""
|
|
|
|
|
2020-12-05 15:58:11 +01:00
|
|
|
func authenticateFeedly() {
|
|
|
|
isAuthenticating = true
|
|
|
|
let addAccount = OAuthAccountAuthorizationOperation(accountType: .feedly)
|
|
|
|
addAccount.delegate = self
|
|
|
|
#if os(macOS)
|
|
|
|
addAccount.presentationAnchor = NSApplication.shared.windows.last
|
2020-12-07 12:22:35 +01:00
|
|
|
#else
|
|
|
|
addAccount.presentationAnchor = UIApplication.shared.windows.last
|
2020-12-05 15:58:11 +01:00
|
|
|
#endif
|
|
|
|
MainThreadOperationQueue.shared.add(addAccount)
|
|
|
|
}
|
|
|
|
|
2020-12-05 14:17:55 +01:00
|
|
|
func oauthAccountAuthorizationOperation(_ operation: OAuthAccountAuthorizationOperation, didCreate account: Account) {
|
|
|
|
|
|
|
|
isAuthenticating = false
|
|
|
|
|
|
|
|
// macOS only: `ASWebAuthenticationSession` leaves the browser in the foreground.
|
|
|
|
// Ensure the app is in the foreground so the user can see their Feedly account load.
|
|
|
|
#if os(macOS)
|
|
|
|
NSApplication.shared.activate(ignoringOtherApps: true)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
account.refreshAll { [weak self] result in
|
|
|
|
switch result {
|
|
|
|
case .success:
|
|
|
|
break
|
|
|
|
case .failure(let error):
|
|
|
|
self?.accountUpdateError = .other(error: error)
|
|
|
|
self?.showError = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func oauthAccountAuthorizationOperation(_ operation: OAuthAccountAuthorizationOperation, didFailWith error: Error) {
|
|
|
|
isAuthenticating = false
|
|
|
|
|
|
|
|
// macOS only: `ASWebAuthenticationSession` leaves the browser in the foreground.
|
|
|
|
// Ensure the app is in the foreground so the user can see the error.
|
|
|
|
#if os(macOS)
|
|
|
|
NSApplication.shared.activate(ignoringOtherApps: true)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
accountUpdateError = .other(error: error)
|
|
|
|
showError = true
|
|
|
|
}
|
|
|
|
}
|