LoadingAnimationViewModel.swift 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. //
  2. // LoadingAnimationViewModel.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 25/09/21.
  6. //
  7. import Foundation
  8. import Alamofire
  9. import SSZipArchive
  10. import RealmSwift
  11. class LoadingAnimationViewModel {
  12. var delegate : LoadingAnimationViewProtocol?
  13. func generateCookie() {
  14. //DBManager.sharedInstance.deleteAllDatabase()
  15. if let delegate = delegate {
  16. let url = ApiUrl.BASE_URL + ApiUrl.API_AUTH
  17. let params: [String:Any]?
  18. params = [
  19. "username" : "admin",
  20. "password" : "mahindrapass123"
  21. ]
  22. print(params!)
  23. AF.request(url, method: HTTPMethod.post, parameters: params).responseData { (responseObject) -> Void in
  24. if let responseStatus = responseObject.response?.statusCode {
  25. if responseStatus != 200 {
  26. // error
  27. print("error...")
  28. } else {
  29. // view all cookies
  30. print(HTTPCookieStorage.shared.cookies!)
  31. for cookie in HTTPCookieStorage.shared.cookies! {
  32. print(cookie.value)
  33. UserDefaultsConstant.setValueInUserDefaults(objValue: cookie.value, for: "cookieValue")
  34. //self.topicDownloader()
  35. delegate.callDataAPI()
  36. }
  37. }
  38. }
  39. }
  40. }
  41. }
  42. func topicDownloader() {
  43. if let delegate = delegate {
  44. let language = DBManager.sharedInstance.database.objects(LanguageModel.self)
  45. for item in language {
  46. let topicData = DBManager.sharedInstance.database.objects(TopicModel.self)
  47. for data in topicData {
  48. let id = data.id
  49. //let selectedLanguage = UserDefaultsConstant.getValueFromUserDefults(for: "selectedLanguage") ?? ""
  50. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_DOWNLOAD_TOPIC)?topic=\(id)&lang=\(item.shortName)"
  51. let saveName = "\(id).zip"
  52. print(url)
  53. let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
  54. let dataPath = documentsDirectory.appendingPathComponent(item.name)
  55. do {
  56. try FileManager.default.createDirectory(atPath: dataPath.path, withIntermediateDirectories: true, attributes: nil)
  57. } catch let error as NSError {
  58. print("Error creating directory: \(error.localizedDescription)")
  59. }
  60. // file location to save download file
  61. let destination: DownloadRequest.Destination = { _, _ in
  62. var documentsURL = dataPath
  63. documentsURL.appendPathComponent(saveName)
  64. return (documentsURL, [.removePreviousFile])
  65. }
  66. let unZipDestination = dataPath
  67. let unZipUrl = unZipDestination.appendingPathComponent("\(id)")
  68. print(unZipUrl)
  69. // Alamofire to download file
  70. AF.download(url, to: destination).responseData { response in
  71. switch response.result {
  72. case .success:
  73. // write something here
  74. if response.fileURL != nil {
  75. print(response.fileURL!)
  76. let filePath = response.fileURL
  77. SSZipArchive.unzipFile(atPath: filePath!.path, toDestination: unZipUrl.path)
  78. }
  79. case .failure:
  80. print(response.result)
  81. }
  82. }
  83. }
  84. }
  85. delegate.groupLeave()
  86. }
  87. //self.getLevel()
  88. }
  89. func getLevel() {
  90. if let delegate = delegate {
  91. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_LEVEL).json"
  92. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  93. let headers: HTTPHeaders = [
  94. "Content-Type": "application/json",
  95. "Accept": "application/json",
  96. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  97. ]
  98. print(headers)
  99. print(url)
  100. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  101. switch response.result {
  102. case .success(let value):
  103. let levelArray = value as! [NSDictionary]
  104. print(levelArray)
  105. for item in levelArray {
  106. let id = item.value(forKey: "id") as! NSNumber;
  107. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
  108. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
  109. let name = item.value(forKey: "name") as? String ?? "" ;
  110. let topics = item.value(forKey: "topics") as! [NSDictionary];
  111. let topicIdModel = List<Topics>()
  112. for data in topics {
  113. let topicId = data.value(forKey: "id") as? NSNumber;
  114. let newTopics = Topics(id: topicId as! Int)
  115. topicIdModel.append(newTopics)
  116. }
  117. let iconBytes = item.value(forKey: "iconBytes") as! NSArray;
  118. let iconByteString = iconBytes.map { String(describing: $0) }.joined(separator: ",")
  119. var levelModel = [LevelModel]()
  120. let newlevelModel = LevelModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, name: name, topics: topicIdModel, iconByte: iconByteString)
  121. print("Level Model: \(newlevelModel)")
  122. levelModel.append(newlevelModel)
  123. DBManager.sharedInstance.addData(objs: levelModel)
  124. }
  125. let realmEntries = DBManager.sharedInstance.database.objects(LevelModel.self)
  126. print("level count")
  127. print(realmEntries.count)
  128. //Next API call
  129. //self.getQuestionBank(offset: 0)
  130. delegate.groupLeave()
  131. case .failure(let error):
  132. print(error)
  133. }
  134. }
  135. }
  136. }
  137. func getQuestionBank(offset:Int) {
  138. if let delegate = delegate {
  139. let max = 10
  140. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_QUESTION_BANK).json?max=\(max)&offset=\(offset)"
  141. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  142. let headers: HTTPHeaders = [
  143. "Content-Type": "application/json",
  144. "Accept": "application/json",
  145. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  146. ]
  147. print(headers)
  148. print(url)
  149. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  150. switch response.result {
  151. case .success(let value):
  152. let quesBankArray = value as! [NSDictionary]
  153. if quesBankArray != [] {
  154. print(quesBankArray)
  155. for item in quesBankArray {
  156. let id = item.value(forKey: "id") as! NSNumber;
  157. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
  158. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
  159. let name = item.value(forKey: "name") as? String ?? "" ;
  160. let questions = item.value(forKey: "questions") as! [NSDictionary];
  161. let questionIdModel = List<Questions>()
  162. for data in questions {
  163. let quesId = data.value(forKey: "id") as? NSNumber;
  164. let newQues = Questions(id: quesId as! Int)
  165. questionIdModel.append(newQues)
  166. }
  167. var quesBankModel = [QuestionBankModel]()
  168. let newQuesBankModel = QuestionBankModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, name: name, questions: questionIdModel)
  169. print("Question Bank Model: \(newQuesBankModel)")
  170. quesBankModel.append(newQuesBankModel)
  171. DBManager.sharedInstance.addData(objs: quesBankModel)
  172. }
  173. let realmEntries = DBManager.sharedInstance.database.objects(QuestionBankModel.self)
  174. print("question bank count")
  175. print(realmEntries.count)
  176. self.getQuestionBank(offset: offset + max)
  177. } else {
  178. //Next API call
  179. //self.getQuestion(offset: 0)
  180. delegate.groupLeave()
  181. }
  182. case .failure(let error):
  183. print(error)
  184. }
  185. }
  186. }
  187. }
  188. func getQuestion(offset:Int) {
  189. if let delegate = delegate {
  190. let max = 10
  191. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_QUESTION).json?max=\(max)&offset=\(offset)"
  192. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  193. let headers: HTTPHeaders = [
  194. "Content-Type": "application/json",
  195. "Accept": "application/json",
  196. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  197. ]
  198. print(headers)
  199. print(url)
  200. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  201. switch response.result {
  202. case .success(let value):
  203. let questionArray = value as! [NSDictionary]
  204. if questionArray != [] {
  205. print(questionArray)
  206. for item in questionArray {
  207. let id = item.value(forKey: "id") as! NSNumber;
  208. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
  209. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
  210. let content = item.value(forKey: "content") as? String ?? "" ;
  211. let questionBank = item.value(forKey: "questionBank") as? NSObject;
  212. let questionBankId = questionBank?.value(forKey: "id") as! NSNumber;
  213. let answer = item.value(forKey: "answer") as? NSObject;
  214. let answerId = answer?.value(forKey: "id") as! NSNumber;
  215. let choices = item.value(forKey: "choices") as! [NSDictionary];
  216. let choicesIdModel = List<Choices>()
  217. for data in choices {
  218. let choicesId = data.value(forKey: "id") as? NSNumber;
  219. let newchoices = Choices(id: choicesId as! Int)
  220. choicesIdModel.append(newchoices)
  221. }
  222. var quesModel = [QuestionModel]()
  223. let newQuesModel = QuestionModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, content: content, questionBankId: Int(truncating: questionBankId), answerId: Int(truncating: answerId), choices: choicesIdModel)
  224. print("Question Model: \(newQuesModel)")
  225. quesModel.append(newQuesModel)
  226. DBManager.sharedInstance.addData(objs: quesModel)
  227. }
  228. let realmEntries = DBManager.sharedInstance.database.objects(QuestionModel.self)
  229. print("question count")
  230. print(realmEntries.count)
  231. self.getQuestion(offset: offset + max)
  232. } else {
  233. //Next API call
  234. //self.getChoice(offset: 0)
  235. delegate.groupLeave()
  236. }
  237. case .failure(let error):
  238. print(error)
  239. }
  240. }
  241. }
  242. }
  243. func getChoice(offset:Int) {
  244. if let delegate = delegate {
  245. let max = 10
  246. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_CHOICE).json?max=\(max)&offset=\(offset)"
  247. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  248. let headers: HTTPHeaders = [
  249. "Content-Type": "application/json",
  250. "Accept": "application/json",
  251. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  252. ]
  253. print(headers)
  254. print(url)
  255. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  256. switch response.result {
  257. case .success(let value):
  258. let choiceArray = value as! [NSDictionary]
  259. if choiceArray != [] {
  260. print(choiceArray)
  261. for item in choiceArray {
  262. let id = item.value(forKey: "id") as! NSNumber;
  263. let content = item.value(forKey: "content") as? String ?? "";
  264. let question = item.value(forKey: "question") as? NSObject;
  265. let questionId = question?.value(forKey: "id") as! NSNumber;
  266. var choiceModel = [ChoiceModel]()
  267. let newchoiceModel = ChoiceModel(id: Int(truncating: id), content: content, questionId: Int(truncating: questionId))
  268. print("Choice Model: \(newchoiceModel)")
  269. choiceModel.append(newchoiceModel)
  270. DBManager.sharedInstance.addData(objs: choiceModel)
  271. }
  272. let realmEntries = DBManager.sharedInstance.database.objects(ChoiceModel.self)
  273. print("choice count")
  274. print(realmEntries.count)
  275. self.getChoice(offset: offset + max)
  276. } else {
  277. delegate.groupLeave()
  278. }
  279. case .failure(let error):
  280. print(error)
  281. }
  282. }
  283. }
  284. }
  285. func getScoreBoard() {
  286. if let delegate = delegate {
  287. if UserDefaultsConstant.getValueFromUserDefults(for: Constant.signInMethod) as! String == "google" {
  288. let studentId = UserDefaultsConstant.getIntValueFromUserDefults(for: Constant.studentId) as! Int
  289. let url = ApiUrl.BASE_URL + ApiUrl.API_SEARCH_SCOREBOARD
  290. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  291. let headers: HTTPHeaders = [
  292. "Content-Type": "application/json",
  293. "Accept": "application/json",
  294. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  295. ]
  296. print(headers)
  297. let params: Parameters?
  298. params = [
  299. "id" : studentId
  300. ]
  301. print(params!)
  302. AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  303. switch response.result {
  304. case .success(let value):
  305. let scoreData = value as! [NSDictionary]
  306. print(scoreData)
  307. var currentIndex = 0
  308. for item in scoreData {
  309. let student = item.value(forKey: "student") as! NSObject;
  310. let studentId = student.value(forKey: "id") as! NSNumber;
  311. let topic = item.value(forKey: "topic") as! NSObject;
  312. let topicId = topic.value(forKey: "id") as! NSNumber;
  313. let level = item.value(forKey: "level") as! NSObject;
  314. let levelId = level.value(forKey: "id") as! NSNumber;
  315. let runs = item.value(forKey: "runs") as! NSNumber;
  316. let wickets = item.value(forKey: "wickets") as! NSNumber;
  317. let noOfAttempts = item.value(forKey: "noOfAttempts") as! NSNumber;
  318. var saveScoreModel = [SaveScoreBoard]()
  319. currentIndex += 1
  320. let newSaveScoreModel = SaveScoreBoard(id: currentIndex, levelId: Int(truncating: levelId), topicId: Int(truncating: topicId), runs: Int(truncating: runs), wickets: Int(truncating: wickets), noOfAttempts: Int(truncating: noOfAttempts), student: Int(truncating: studentId), synced: true)
  321. saveScoreModel.append(newSaveScoreModel)
  322. DBManager.sharedInstance.addData(objs: saveScoreModel)
  323. }
  324. let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  325. print("save score count")
  326. print(saveScoreDB.count)
  327. //Next API call
  328. //delegate.stopActivityIndicator()
  329. //delegate.navigation()
  330. delegate.groupLeave()
  331. case .failure(let error):
  332. print(error)
  333. }
  334. }
  335. } else {
  336. let userModel = DBManager.sharedInstance.database.objects(UserDetailsModel.self)
  337. let userIdentifier = UserDefaultsConstant.getValueFromUserDefults(for: Constant.userIdentifier) as! String
  338. if userModel.contains(where: {$0.appleIdentifier == userIdentifier}) {
  339. let studentId = UserDefaultsConstant.getIntValueFromUserDefults(for: Constant.studentId) as! Int
  340. let url = ApiUrl.BASE_URL + ApiUrl.API_SEARCH_SCOREBOARD
  341. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  342. let headers: HTTPHeaders = [
  343. "Content-Type": "application/json",
  344. "Accept": "application/json",
  345. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  346. ]
  347. print(headers)
  348. let params: Parameters?
  349. params = [
  350. "id" : studentId
  351. ]
  352. print(params!)
  353. AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  354. switch response.result {
  355. case .success(let value):
  356. let scoreData = value as! [NSDictionary]
  357. var currentIndex = 0
  358. for item in scoreData {
  359. let student = item.value(forKey: "student") as! NSObject;
  360. let studentId = student.value(forKey: "id") as! NSNumber;
  361. let topic = item.value(forKey: "topic") as! NSObject;
  362. let topicId = topic.value(forKey: "id") as! NSNumber;
  363. let level = item.value(forKey: "level") as! NSObject;
  364. let levelId = level.value(forKey: "id") as! NSNumber;
  365. let runs = item.value(forKey: "runs") as! NSNumber;
  366. let wickets = item.value(forKey: "wickets") as! NSNumber;
  367. let noOfAttempts = item.value(forKey: "noOfAttempts") as! NSNumber;
  368. var saveScoreModel = [SaveScoreBoard]()
  369. currentIndex += 1
  370. let newSaveScoreModel = SaveScoreBoard(id: currentIndex, levelId: Int(truncating: levelId), topicId: Int(truncating: topicId), runs: Int(truncating: runs), wickets: Int(truncating: wickets), noOfAttempts: Int(truncating: noOfAttempts), student: Int(truncating: studentId), synced: true)
  371. saveScoreModel.append(newSaveScoreModel)
  372. DBManager.sharedInstance.addData(objs: saveScoreModel)
  373. }
  374. let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  375. print("save score count")
  376. print(saveScoreDB.count)
  377. //Next API call
  378. //delegate.stopActivityIndicator()
  379. //delegate.navigation()
  380. delegate.groupLeave()
  381. case .failure(let error):
  382. print(error)
  383. }
  384. }
  385. } else {
  386. delegate.groupLeave()
  387. }
  388. }
  389. }
  390. }
  391. }
  392. protocol LoadingAnimationViewProtocol {
  393. func callDataAPI()
  394. func groupLeave()
  395. func stopActivityIndicator()
  396. func showToastMessage(message:String)
  397. func navigation()
  398. }