2020-03-09 23:39:58 +01:00
//
// N e w s B l u r A c c o u n t V i e w C o n t r o l l e r . s w i f t
// N e t N e w s W i r e
//
// C r e a t e d b y A n h - Q u a n g D o o n 3 / 9 / 2 0 .
// C o p y r i g h t ( c ) 2 0 2 0 R a n c h e r o S o f t w a r e . A l l r i g h t s r e s e r v e d .
//
import UIKit
import Account
2020-04-16 15:25:40 +02:00
import Secrets
2020-03-09 23:39:58 +01:00
import RSWeb
2020-11-09 14:31:29 +01:00
import SafariServices
2020-03-09 23:39:58 +01:00
class NewsBlurAccountViewController : UITableViewController {
@IBOutlet weak var activityIndicator : UIActivityIndicatorView !
@IBOutlet weak var cancelBarButtonItem : UIBarButtonItem !
2020-03-10 01:19:24 +01:00
@IBOutlet weak var usernameTextField : UITextField !
2020-03-09 23:39:58 +01:00
@IBOutlet weak var passwordTextField : UITextField !
@IBOutlet weak var showHideButton : UIButton !
@IBOutlet weak var actionButton : UIButton !
2020-11-09 14:41:05 +01:00
@IBOutlet weak var footerLabel : UILabel !
2020-03-09 23:39:58 +01:00
weak var account : Account ?
weak var delegate : AddAccountDismissDelegate ?
override func viewDidLoad ( ) {
super . viewDidLoad ( )
2020-11-09 14:41:05 +01:00
setupFooter ( )
2020-03-09 23:39:58 +01:00
activityIndicator . isHidden = true
2020-03-10 01:19:24 +01:00
usernameTextField . delegate = self
2020-03-09 23:39:58 +01:00
passwordTextField . delegate = self
2020-03-23 00:52:48 +01:00
if let account = account , let credentials = try ? account . retrieveCredentials ( type : . newsBlurBasic ) {
2020-03-09 23:39:58 +01:00
actionButton . setTitle ( NSLocalizedString ( " Update Credentials " , comment : " Update Credentials " ) , for : . normal )
actionButton . isEnabled = true
2020-03-10 01:19:24 +01:00
usernameTextField . text = credentials . username
2020-03-09 23:39:58 +01:00
passwordTextField . text = credentials . secret
} else {
actionButton . setTitle ( NSLocalizedString ( " Add Account " , comment : " Add Account " ) , for : . normal )
}
2020-03-10 01:19:24 +01:00
NotificationCenter . default . addObserver ( self , selector : #selector ( textDidChange ( _ : ) ) , name : UITextField . textDidChangeNotification , object : usernameTextField )
2020-03-09 23:39:58 +01:00
NotificationCenter . default . addObserver ( self , selector : #selector ( textDidChange ( _ : ) ) , name : UITextField . textDidChangeNotification , object : passwordTextField )
tableView . register ( ImageHeaderView . self , forHeaderFooterViewReuseIdentifier : " SectionHeader " )
}
2020-11-09 14:41:05 +01:00
private func setupFooter ( ) {
2020-11-21 13:17:45 +01:00
footerLabel . text = NSLocalizedString ( " Sign in to your NewsBlur account and sync your subscriptions across your devices. Your username and password will be encrypted and stored in Keychain. \n \n Don't have a NewsBlur account? " , comment : " NewsBlur " )
2020-11-09 14:41:05 +01:00
}
2020-03-09 23:39:58 +01:00
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 : . newsBlur )
return headerView
} else {
return super . tableView ( tableView , viewForHeaderInSection : section )
}
}
@IBAction func cancel ( _ sender : Any ) {
dismiss ( animated : true , completion : nil )
}
@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 ) {
2020-03-10 01:19:24 +01:00
guard let username = usernameTextField . text else {
showError ( NSLocalizedString ( " Username required. " , comment : " Credentials Error " ) )
2020-03-09 23:39:58 +01:00
return
}
2020-10-29 20:05:55 +01:00
// W h e n y o u f i l l i n t h e e m a i l a d d r e s s v i a a u t o - c o m p l e t e i t a d d s e x t r a w h i t e s p a c e
let trimmedUsername = username . trimmingCharacters ( in : . whitespaces )
guard account != nil || ! AccountManager . shared . duplicateServiceAccount ( type : . newsBlur , username : trimmedUsername ) else {
showError ( NSLocalizedString ( " There is already a NewsBlur account with that username created. " , comment : " Duplicate Error " ) )
return
}
2020-03-10 01:19:24 +01:00
let password = passwordTextField . text ? ? " "
2020-03-09 23:39:58 +01:00
startAnimatingActivityIndicator ( )
disableNavigation ( )
2020-10-29 21:06:27 +01:00
let basicCredentials = Credentials ( type : . newsBlurBasic , username : trimmedUsername , secret : password )
Account . validateCredentials ( type : . newsBlur , credentials : basicCredentials ) { result in
2020-03-09 23:39:58 +01:00
2020-03-23 00:52:48 +01:00
self . stopAnimatingActivityIndicator ( )
2020-03-09 23:39:58 +01:00
self . enableNavigation ( )
switch result {
2020-10-29 21:06:27 +01:00
case . success ( let sessionCredentials ) :
if let sessionCredentials = sessionCredentials {
2021-01-09 22:15:14 +01:00
2020-03-09 23:39:58 +01:00
if self . account = = nil {
self . account = AccountManager . shared . createAccount ( type : . newsBlur )
}
do {
do {
2020-03-23 00:52:48 +01:00
try self . account ? . removeCredentials ( type : . newsBlurBasic )
2020-10-29 21:06:27 +01:00
try self . account ? . removeCredentials ( type : . newsBlurSessionId )
2020-03-09 23:39:58 +01:00
} catch { }
2020-10-29 21:06:27 +01:00
try self . account ? . storeCredentials ( basicCredentials )
try self . account ? . storeCredentials ( sessionCredentials )
2020-03-09 23:39:58 +01:00
2021-01-09 22:15:14 +01:00
self . account ? . refreshAll ( ) { result in
switch result {
case . success :
break
case . failure ( let error ) :
self . presentError ( error )
2020-03-09 23:39:58 +01:00
}
}
self . dismiss ( animated : true , completion : nil )
self . delegate ? . dismiss ( )
} catch {
self . showError ( NSLocalizedString ( " Keychain error while storing credentials. " , comment : " Credentials Error " ) )
}
} else {
2020-03-10 01:19:24 +01:00
self . showError ( NSLocalizedString ( " Invalid username/password combination. " , comment : " Credentials Error " ) )
2020-03-09 23:39:58 +01:00
}
2020-03-10 01:19:24 +01:00
case . failure ( let error ) :
self . showError ( error . localizedDescription )
2020-03-09 23:39:58 +01:00
}
}
}
2020-11-09 14:31:29 +01:00
@IBAction func signUpWithProvider ( _ sender : Any ) {
let url = URL ( string : " https://newsblur.com " ) !
let safari = SFSafariViewController ( url : url )
safari . modalPresentationStyle = . currentContext
self . present ( safari , animated : true , completion : nil )
}
2020-03-09 23:39:58 +01:00
@objc func textDidChange ( _ note : Notification ) {
2020-03-10 01:19:24 +01:00
actionButton . isEnabled = ! ( usernameTextField . text ? . isEmpty ? ? false )
2020-03-09 23:39:58 +01:00
}
private func showError ( _ message : String ) {
presentError ( title : " Error " , message : message )
}
private func enableNavigation ( ) {
self . cancelBarButtonItem . isEnabled = true
self . actionButton . isEnabled = true
}
private func disableNavigation ( ) {
cancelBarButtonItem . isEnabled = false
actionButton . isEnabled = false
}
private func startAnimatingActivityIndicator ( ) {
activityIndicator . isHidden = false
activityIndicator . startAnimating ( )
}
2020-03-23 00:52:48 +01:00
private func stopAnimatingActivityIndicator ( ) {
2020-03-09 23:39:58 +01:00
self . activityIndicator . isHidden = true
self . activityIndicator . stopAnimating ( )
}
}
extension NewsBlurAccountViewController : UITextFieldDelegate {
func textFieldShouldReturn ( _ textField : UITextField ) -> Bool {
textField . resignFirstResponder ( )
return true
}
}