SplashScreenViewController.swift 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. //
  2. // SplashScreenViewController.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 12/08/21.
  6. //
  7. import UIKit
  8. import FirebaseAuth
  9. import GoogleSignIn
  10. import Toast_Swift
  11. import AuthenticationServices
  12. import SwiftUI
  13. class SplashScreenViewController: UIViewController {
  14. @IBOutlet weak var activityIndicator: UIActivityIndicatorView!
  15. @IBOutlet var waitLabel: UILabel!
  16. var viewModel = SplashScreenViewModel()
  17. let group = DispatchGroup()
  18. var isWaiting = false
  19. override func viewDidLoad() {
  20. super.viewDidLoad()
  21. // Do any additional setup after loading the view.
  22. viewModel.delegate = self
  23. self.isWaiting = true
  24. //Set default language to english
  25. if UserDefaultsConstant.getIntValueFromUserDefults(for: Constant.languageId) == nil {
  26. UserDefaultsConstant.setIntValueInUserDefaults(objValue: 43, for: Constant.languageId)
  27. UserDefaultsConstant.setValueInUserDefaults(objValue: "en", for: Constant.languageShortName)
  28. UserDefaultsConstant.setValueInUserDefaults(objValue: "English", for: Constant.languageName)
  29. }
  30. //Condition for app in case of fist time launch
  31. if UIApplication.isFirstLaunch() {
  32. UserDefaults.standard.set(true, forKey: Constant.welcomeSlider)
  33. UserDefaults.standard.synchronize()
  34. UserDefaults.standard.set(true, forKey: Constant.introduction)
  35. UserDefaults.standard.synchronize()
  36. }
  37. firstTimeAppRun()
  38. //Animate activity indicator in 5 sec delay
  39. DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + 2) {
  40. DispatchQueue.main.async {
  41. self.activityIndicator.isHidden = false
  42. self.activityIndicator.color = .black
  43. self.activityIndicator.startAnimating()
  44. }
  45. }
  46. // DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + 5) {
  47. // DispatchQueue.main.async {
  48. // self.waitLabel.isHidden = false
  49. // self.waitLabel.text = "Downloading data, Please wait..."
  50. //// self.activityIndicator.stopAnimating()
  51. //// self.navigation()
  52. // }
  53. // }
  54. }
  55. override func viewWillAppear(_ animated: Bool) {
  56. activityIndicator.isHidden = true
  57. waitLabel.isHidden = true
  58. }
  59. func firstTimeAppRun() {
  60. if UserDefaults.standard.bool(forKey: Constant.welcomeSlider) {
  61. if Reachability.isConnectedToNetwork() {
  62. //callAPI()
  63. viewModel.generateCookie()
  64. }
  65. else {
  66. Alert.showInternetFailureAlert(on: self)
  67. }
  68. } else {
  69. DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + 5) {
  70. DispatchQueue.main.async {
  71. self.navigation()
  72. }
  73. }
  74. }
  75. }
  76. func callAPI() {
  77. group.enter()
  78. viewModel.getRole()
  79. group.enter()
  80. viewModel.getLanguage()
  81. group.enter()
  82. viewModel.getTranslation(offset: 0)
  83. group.enter()
  84. viewModel.getState(offset: 0)
  85. group.enter()
  86. viewModel.getDistrict(offset: 0)
  87. group.enter()
  88. viewModel.getTopic(offset: 0)
  89. group.notify(queue: .main, execute: {
  90. // Step3: Update the UI
  91. self.isWaiting = false
  92. print("All API called")
  93. self.activityIndicator.stopAnimating()
  94. self.navigation()
  95. })
  96. }
  97. /*
  98. // MARK: - Navigation
  99. // In a storyboard-based application, you will often want to do a little preparation before navigation
  100. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  101. // Get the new view controller using segue.destination.
  102. // Pass the selected object to the new view controller.
  103. }
  104. */
  105. }
  106. extension SplashScreenViewController : SplashScreenViewProtocol {
  107. func callDataAPI() {
  108. self.callAPI()
  109. }
  110. func groupLeave() {
  111. group.leave()
  112. }
  113. func stopActivityIndicator() {
  114. activityIndicator.stopAnimating()
  115. }
  116. func showToastMessage(message: String) {
  117. self.view.makeToast(message)
  118. }
  119. func navigation() {
  120. if UserDefaults.standard.bool(forKey: Constant.welcomeSlider) {
  121. DispatchQueue.main.async {
  122. let selectLanguageVC = self.storyboard?.instantiateViewController(withIdentifier:"SelectLanguageViewController" ) as! SelectLanguageViewController
  123. self.navigationController?.pushViewController(selectLanguageVC, animated: true)
  124. }
  125. } else {
  126. if UserDefaultsConstant.getValueFromUserDefults(for: Constant.signInMethod) as! String == "google" {
  127. GIDSignIn.sharedInstance.restorePreviousSignIn { user, error in
  128. if error != nil || user == nil {
  129. // Show the app's signed-out state.
  130. DispatchQueue.main.async {
  131. let loginVC = self.storyboard?.instantiateViewController(withIdentifier:"LoginViewController" ) as! LoginViewController
  132. self.navigationController?.pushViewController(loginVC, animated: true)
  133. }
  134. }
  135. else {
  136. let userModel = DBManager.sharedInstance.database.objects(UserDetailsModel.self)
  137. if userModel.contains(where: {$0.email == user?.profile?.email}) {
  138. //Navigate to Home
  139. DispatchQueue.main.async {
  140. let loaderVC = self.storyboard?.instantiateViewController(withIdentifier:"LoadingAnimationViewController" ) as! LoadingAnimationViewController
  141. self.navigationController?.pushViewController(loaderVC, animated: true)
  142. }
  143. }
  144. else {
  145. //Navigate to User details
  146. DispatchQueue.main.async {
  147. let loaderVC = self.storyboard?.instantiateViewController(withIdentifier:"UserDetailsViewController" ) as! UserDetailsViewController
  148. self.navigationController?.pushViewController(loaderVC, animated: true)
  149. }
  150. }
  151. }
  152. }
  153. }
  154. else {
  155. let userIdentifier = UserDefaultsConstant.getValueFromUserDefults(for: Constant.userIdentifier) as! String
  156. let appleIDProvider = ASAuthorizationAppleIDProvider()
  157. appleIDProvider.getCredentialState(forUserID: userIdentifier) { (credentialState, error) in
  158. switch credentialState {
  159. case .authorized:
  160. DispatchQueue.main.async {
  161. let loaderVC = self.storyboard?.instantiateViewController(withIdentifier:"LoadingAnimationViewController" ) as! LoadingAnimationViewController
  162. self.navigationController?.pushViewController(loaderVC, animated: true)
  163. }
  164. // let userModel = DBManager.sharedInstance.database.objects(UserDetailsModel.self)
  165. // if userModel.contains(where: {$0.appleIdentifier == userIdentifier}) {
  166. // //Navigate to Home
  167. // DispatchQueue.main.async {
  168. // let loaderVC = self.storyboard?.instantiateViewController(withIdentifier:"LoadingAnimationViewController" ) as! LoadingAnimationViewController
  169. // self.navigationController?.pushViewController(loaderVC, animated: true)
  170. // }
  171. // }
  172. // else {
  173. // //Navigate to User details
  174. // DispatchQueue.main.async {
  175. // let userDetailsVC = self.storyboard?.instantiateViewController(withIdentifier:"UserDetailsViewController" ) as! UserDetailsViewController
  176. // self.navigationController?.pushViewController(userDetailsVC, animated: true)
  177. // }
  178. // }
  179. // The Apple ID credential is valid.
  180. break
  181. case .revoked, .notFound:
  182. // The Apple ID credential is either revoked or was not found, so show the sign-in UI.
  183. DispatchQueue.main.async {
  184. let loginVC = self.storyboard?.instantiateViewController(withIdentifier:"LoginViewController" ) as! LoginViewController
  185. self.navigationController?.pushViewController(loginVC, animated: true)
  186. }
  187. default:
  188. break
  189. }
  190. }
  191. }
  192. }
  193. }
  194. }