NetNewsWire/iOS/Settings/SettingsFeedbinAccountView....

171 lines
3.5 KiB
Swift
Raw Normal View History

2019-06-11 23:59:16 +02:00
//
// SettingsFeedbinAccountView.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 6/11/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import SwiftUI
2019-06-12 15:33:14 +02:00
import Combine
import Account
import RSWeb
2019-06-11 23:59:16 +02:00
struct SettingsFeedbinAccountView : View {
2019-06-12 15:33:14 +02:00
@Environment(\.isPresented) private var isPresented
@ObjectBinding var viewModel: ViewModel
@State var busy: Bool = false
@State var error: Text = Text("")
2019-06-11 23:59:16 +02:00
var body: some View {
NavigationView {
List {
Section(header:
SettingsAccountLabelView(accountImage: "accountFeedbin", accountLabel: "Feedbin").padding()
) {
HStack {
Text("Email:")
Divider()
TextField($viewModel.email)
.textContentType(.username)
2019-06-11 23:59:16 +02:00
}
HStack {
Text("Password:")
Divider()
SecureField($viewModel.password)
2019-06-11 23:59:16 +02:00
}
}
2019-06-12 15:33:14 +02:00
Section(footer:
2019-06-11 23:59:16 +02:00
HStack {
Spacer()
2019-06-12 15:33:14 +02:00
error.color(.red)
Spacer()
}
) {
HStack {
Spacer()
Button(action: { self.addAccount() }) {
if viewModel.isUpdate {
Text("Update Account")
} else {
Text("Add Account")
}
2019-06-11 23:59:16 +02:00
}
2019-06-12 15:33:14 +02:00
.disabled(!viewModel.isValid)
2019-06-11 23:59:16 +02:00
Spacer()
}
}
}
2019-06-12 15:33:14 +02:00
.disabled(busy)
2019-06-11 23:59:16 +02:00
.listStyle(.grouped)
.navigationBarTitle(Text(""), displayMode: .inline)
2019-06-12 15:33:14 +02:00
.navigationBarItems(leading:
Button(action: { self.dismiss() }) { Text("Cancel") }
)
}
}
private func addAccount() {
busy = true
error = Text("")
2019-06-12 15:33:14 +02:00
let emailAddress = viewModel.email.trimmingCharacters(in: .whitespaces)
let credentials = Credentials.basic(username: emailAddress, password: viewModel.password)
Account.validateCredentials(type: .feedbin, credentials: credentials) { result in
self.busy = false
switch result {
case .success(let authenticated):
if authenticated {
var newAccount = false
let workAccount: Account
if self.viewModel.account == nil {
2019-06-12 15:33:14 +02:00
workAccount = AccountManager.shared.createAccount(type: .feedbin)
newAccount = true
} else {
workAccount = self.viewModel.account!
2019-06-12 15:33:14 +02:00
}
do {
do {
try workAccount.removeBasicCredentials()
} catch {}
try workAccount.storeCredentials(credentials)
if newAccount {
workAccount.refreshAll() { result in }
}
self.dismiss()
} catch {
self.error = Text("Keychain error while storing credentials.")
}
} else {
self.error = Text("Invalid email/password combination.")
}
case .failure:
self.error = Text("Network error. Try again later.")
}
}
}
private func dismiss() {
isPresented?.value = false
}
class ViewModel: BindableObject {
let didChange = PassthroughSubject<ViewModel, Never>()
var account: Account? = nil
init() {
}
init(account: Account) {
self.account = account
if case .basic(let username, let password) = try? account.retrieveBasicCredentials() {
self.email = username
self.password = password
}
}
2019-06-12 15:33:14 +02:00
var email: String = "" {
didSet {
didChange.send(self)
}
}
var password: String = "" {
didSet {
didChange.send(self)
}
}
var isUpdate: Bool {
return account != nil
}
2019-06-12 15:33:14 +02:00
var isValid: Bool {
return !email.isEmpty && !password.isEmpty
2019-06-11 23:59:16 +02:00
}
}
}
#if DEBUG
struct SettingsFeedbinAccountView_Previews : PreviewProvider {
static var previews: some View {
SettingsFeedbinAccountView(viewModel: SettingsFeedbinAccountView.ViewModel())
2019-06-11 23:59:16 +02:00
}
}
#endif