ApiManager.swift 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. //
  2. // ApiManager.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 31/08/21.
  6. //
  7. import Foundation
  8. import Alamofire
  9. import SSZipArchive
  10. import RealmSwift
  11. class ApiManager {
  12. static func generateCookie() {
  13. let url = ApiUrl.BASE_URL + ApiUrl.API_AUTH
  14. let params: [String:Any]?
  15. params = [
  16. "username" : "admin",
  17. "password" : "mahindrapass123"
  18. ]
  19. print(params!)
  20. AF.request(url, method: HTTPMethod.post, parameters: params).responseData { (responseObject) -> Void in
  21. if let responseStatus = responseObject.response?.statusCode {
  22. if responseStatus != 200 {
  23. // error
  24. print("error...")
  25. } else {
  26. // view all cookies
  27. print(HTTPCookieStorage.shared.cookies!)
  28. for cookie in HTTPCookieStorage.shared.cookies! {
  29. print(cookie.value)
  30. UserDefaultsConstant.setValueInUserDefaults(objValue: cookie.value, for: "cookieValue")
  31. //self.getRole()
  32. print("Cookie generated")
  33. }
  34. }
  35. }
  36. }
  37. }
  38. static func saveScoreboard() {
  39. let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  40. for score in saveScoreDB {
  41. if score.synced == false {
  42. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_SCOREBOARD)/save.json"
  43. print(url)
  44. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  45. let headers: HTTPHeaders = [
  46. "Content-Type": "application/json",
  47. "Accept": "application/json",
  48. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  49. ]
  50. print(headers)
  51. let params: Parameters?
  52. params = [
  53. "student" : score.student,
  54. "level" : score.levelId,
  55. "topic" : score.topicId,
  56. "runs" : score.runs,
  57. "wickets" : score.wickets,
  58. "noOfAttempts" : score.noOfAttempts
  59. ]
  60. print(params!)
  61. AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  62. if let responseStatus = response.response?.statusCode {
  63. if responseStatus != 201 {
  64. print("error...")
  65. } else {
  66. score.synced = true
  67. }
  68. }
  69. }
  70. }
  71. }
  72. }
  73. static func getRole() {
  74. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_ROLE).json"
  75. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  76. let headers: HTTPHeaders = [
  77. "Content-Type": "application/json",
  78. "Accept": "application/json",
  79. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  80. ]
  81. print(headers)
  82. AF.request(url, method: HTTPMethod.post, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  83. switch response.result {
  84. case .success(let value):
  85. let roleData = value as! [NSDictionary]
  86. var currentIndex = 0
  87. for item in roleData {
  88. let id = item.value(forKey: "id") as! NSNumber;
  89. let name = item.value(forKey: "name") as? String ?? "";
  90. let authority = item.value(forKey: "authority") as? String ?? "";
  91. var roleModel = [RoleModel]()
  92. currentIndex += 1
  93. let newRoleModel = RoleModel(id: Int(truncating: id), name: name, authority: authority)
  94. roleModel.append(newRoleModel)
  95. DBManager.sharedInstance.addData(objs: roleModel)
  96. }
  97. let realmEntries = DBManager.sharedInstance.database.objects(RoleModel.self)
  98. print("role count")
  99. print(realmEntries.count)
  100. print(roleData.count)
  101. // if both counts doesn't match
  102. let db_count = realmEntries.count - roleData.count
  103. if db_count > 0 {
  104. let array = Array(1...db_count)
  105. for value in array {
  106. var roleModel = [RoleModel]()
  107. let data = DBManager.sharedInstance.getObjects(type: RoleModel.self)? [realmEntries.count - value] as! RoleModel
  108. roleModel.append(data)
  109. DBManager.sharedInstance.deleteFromDb(object: roleModel)
  110. }
  111. }
  112. self.getLanguage()
  113. case .failure(let error):
  114. print(error)
  115. }
  116. }
  117. }
  118. static func getLanguage() {
  119. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_LANGUAGE).json"
  120. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  121. let headers: HTTPHeaders = [
  122. "Content-Type": "application/json",
  123. "Accept": "application/json",
  124. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  125. ]
  126. print(headers)
  127. AF.request(url, method: HTTPMethod.post, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  128. switch response.result {
  129. case .success(let value):
  130. let languageArray = value as! [NSDictionary]
  131. for item in languageArray {
  132. let id = item.value(forKey: "id") as! NSNumber;
  133. let shortName = item.value(forKey: "shortName") as? String ?? "" ;
  134. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "" ;
  135. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "" ;
  136. let name = item.value(forKey: "name") as? String ?? "" ;
  137. var languageModel = [LanguageModel]()
  138. let newLanguageModel = LanguageModel(id: Int(truncating: id), shortName: shortName, dateCreated: dateCreated, lastUpdated: lastUpdated, name: name)
  139. languageModel.append(newLanguageModel)
  140. DBManager.sharedInstance.addData(objs: languageModel)
  141. }
  142. let realmEntries = DBManager.sharedInstance.database.objects(LanguageModel.self)
  143. print("language count")
  144. print(realmEntries.count)
  145. print(languageArray.count)
  146. // if both counts doesn't match
  147. let db_count = realmEntries.count - languageArray.count
  148. if db_count > 0 {
  149. let array = Array(1...db_count)
  150. for value in array {
  151. var languageModel = [LanguageModel]()
  152. let data = DBManager.sharedInstance.getObjects(type: LanguageModel.self)? [realmEntries.count - value] as! LanguageModel
  153. languageModel.append(data)
  154. DBManager.sharedInstance.deleteFromDb(object: languageModel)
  155. }
  156. }
  157. let translationModel = [TranslationModel]()
  158. DBManager.sharedInstance.deleteFromDb(object: translationModel)
  159. self.getTranslation(offset: 0)
  160. case .failure(let error):
  161. print(error)
  162. }
  163. }
  164. }
  165. static func getTranslation(offset:Int) {
  166. let max = 10
  167. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_TRANSLATION).json?max=\(max)&offset=\(offset)"
  168. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  169. let headers: HTTPHeaders = [
  170. "Content-Type": "application/json",
  171. "Accept": "application/json",
  172. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  173. ]
  174. print(headers)
  175. //let params: [String:Any]?
  176. let params = [
  177. "max" : max,
  178. "offset" : offset
  179. ]
  180. print(params)
  181. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  182. switch response.result {
  183. case .success(let value):
  184. let translationArray = value as! [NSDictionary]
  185. if translationArray != [] {
  186. print(translationArray)
  187. for item in translationArray {
  188. let id = item.value(forKey: "id") as! NSNumber;
  189. let originalText = item.value(forKey: "originalText") as? String ?? "" ;
  190. let language = item.value(forKey: "language") as? NSObject;
  191. let languageId = language?.value(forKey: "id") as! NSNumber;
  192. let translatedText = item.value(forKey: "translatedText") as? String ?? "" ;
  193. var translationModel = [TranslationModel]()
  194. let newtranslationModel = TranslationModel(id: Int(truncating: id), originalText: originalText, languageId: Int(truncating: languageId), translatedText: translatedText)
  195. translationModel.append(newtranslationModel)
  196. DBManager.sharedInstance.addData(objs: translationModel)
  197. }
  198. self.getTranslation(offset: offset + max)
  199. } else {
  200. let stateModel = [StateModel]()
  201. DBManager.sharedInstance.deleteFromDb(object: stateModel)
  202. //Next API call
  203. self.getState(offset: 0)
  204. }
  205. case .failure(let error):
  206. print(error)
  207. }
  208. }
  209. }
  210. static func getState(offset:Int) {
  211. let max = 10
  212. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_STATE).json?max=\(max)&offset=\(offset)"
  213. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  214. let headers: HTTPHeaders = [
  215. "Content-Type": "application/json",
  216. "Accept": "application/json",
  217. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  218. ]
  219. print(headers)
  220. print(url)
  221. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  222. switch response.result {
  223. case .success(let value):
  224. let translationArray = value as! [NSDictionary]
  225. if translationArray != [] {
  226. print(translationArray)
  227. for item in translationArray {
  228. let id = item.value(forKey: "id") as! NSNumber;
  229. let stateName = item.value(forKey: "stateName") as? String ?? "" ;
  230. let stateNameHindi = item.value(forKey: "stateNameHindi") as? String ?? "" ;
  231. var stateModel = [StateModel]()
  232. let newStateModel = StateModel(id: Int(truncating: id), stateName: stateName, stateNameHindi: stateNameHindi)
  233. stateModel.append(newStateModel)
  234. DBManager.sharedInstance.addData(objs: stateModel)
  235. }
  236. let realmEntries = DBManager.sharedInstance.database.objects(StateModel.self)
  237. print("state count")
  238. print(realmEntries.count)
  239. self.getState(offset: offset + max)
  240. } else {
  241. let districtModel = [DistrictModel]()
  242. DBManager.sharedInstance.deleteFromDb(object: districtModel)
  243. //Next API call
  244. self.getDistrict(offset: 0)
  245. }
  246. case .failure(let error):
  247. print(error)
  248. }
  249. }
  250. }
  251. static func getDistrict(offset:Int) {
  252. let max = 10
  253. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_DISTRICT).json?max=\(max)&offset=\(offset)"
  254. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  255. let headers: HTTPHeaders = [
  256. "Content-Type": "application/json",
  257. "Accept": "application/json",
  258. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  259. ]
  260. print(headers)
  261. print(url)
  262. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  263. switch response.result {
  264. case .success(let value):
  265. let translationArray = value as! [NSDictionary]
  266. if translationArray != [] {
  267. print(translationArray)
  268. for item in translationArray {
  269. let id = item.value(forKey: "id") as! NSNumber;
  270. let districtName = item.value(forKey: "districtName") as? String ?? "" ;
  271. let state = item.value(forKey: "state") as? NSObject;
  272. let stateId = state?.value(forKey: "id") as! NSNumber;
  273. let districtNameHindi = item.value(forKey: "districtNameHindi") as? String ?? "" ;
  274. var districtModel = [DistrictModel]()
  275. let newDistrictModel = DistrictModel(id: Int(truncating: id), districtName: districtName, stateId: Int(truncating: stateId), districtNameHindi: districtNameHindi)
  276. districtModel.append(newDistrictModel)
  277. DBManager.sharedInstance.addData(objs: districtModel)
  278. }
  279. let realmEntries = DBManager.sharedInstance.database.objects(DistrictModel.self)
  280. print("district count")
  281. print(realmEntries.count)
  282. self.getDistrict(offset: offset + max)
  283. } else {
  284. let topicModel = [TopicModel]()
  285. DBManager.sharedInstance.deleteFromDb(object: topicModel)
  286. //Next API call
  287. self.getTopic(offset: 0)
  288. }
  289. case .failure(let error):
  290. print(error)
  291. }
  292. }
  293. }
  294. static func getTopic(offset:Int) {
  295. let max = 10
  296. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_TOPIC).json?max=\(max)&offset=\(offset)"
  297. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  298. let headers: HTTPHeaders = [
  299. "Content-Type": "application/json",
  300. "Accept": "application/json",
  301. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  302. ]
  303. print(headers)
  304. print(url)
  305. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  306. switch response.result {
  307. case .success(let value):
  308. let topicArray = value as! [NSDictionary]
  309. if topicArray != [] {
  310. print(topicArray)
  311. for item in topicArray {
  312. let id = item.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 noOfQuizQuestions = item.value(forKey: "noOfQuizQuestions") as! NSNumber;
  316. let video = item.value(forKey: "video") as? String ?? "" ;
  317. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "" ;
  318. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "" ;
  319. let name = item.value(forKey: "name") as? String ?? "" ;
  320. let questionBank = item.value(forKey: "questionBank") as? NSObject;
  321. let questionBankId = questionBank?.value(forKey: "id") as! NSNumber;
  322. let content = item.value(forKey: "content") as? String ?? "" ;
  323. let language = item.value(forKey: "language") as? NSObject;
  324. let languageId = language?.value(forKey: "id") as! NSNumber;
  325. var topicModel = [TopicModel]()
  326. let newtopicModel = TopicModel(id: Int(truncating: id), levelId: Int(truncating: levelId), noOfQuizQuestions: Int(truncating: noOfQuizQuestions), video: video, dateCreated: dateCreated, lastUpdated: lastUpdated, name: name, questionBankId: Int(truncating: questionBankId), content: content, languageId: Int(truncating: languageId))
  327. topicModel.append(newtopicModel)
  328. DBManager.sharedInstance.addData(objs: topicModel)
  329. //self.topicDownloader(id: Int(truncating: id))
  330. }
  331. let realmEntries = DBManager.sharedInstance.database.objects(TopicModel.self)
  332. print("topic count")
  333. print(realmEntries.count)
  334. self.getTopic(offset: offset + max)
  335. } else {
  336. //Next API call
  337. self.topicDownloader()
  338. }
  339. case .failure(let error):
  340. print(error)
  341. }
  342. }
  343. }
  344. static func topicDownloader() {
  345. let language = DBManager.sharedInstance.database.objects(LanguageModel.self)
  346. for item in language {
  347. let topicData = DBManager.sharedInstance.database.objects(TopicModel.self)
  348. for data in topicData {
  349. let id = data.id
  350. //let selectedLanguage = UserDefaultsConstant.getValueFromUserDefults(for: "selectedLanguage") ?? ""
  351. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_DOWNLOAD_TOPIC)?topic=\(id)&lang=\(item.shortName)"
  352. let saveName = "\(id).zip"
  353. print(url)
  354. let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
  355. let dataPath = documentsDirectory.appendingPathComponent(item.name)
  356. do {
  357. try FileManager.default.createDirectory(atPath: dataPath.path, withIntermediateDirectories: true, attributes: nil)
  358. } catch let error as NSError {
  359. print("Error creating directory: \(error.localizedDescription)")
  360. }
  361. // file location to save download file
  362. let destination: DownloadRequest.Destination = { _, _ in
  363. var documentsURL = dataPath
  364. documentsURL.appendPathComponent(saveName)
  365. return (documentsURL, [.removePreviousFile])
  366. }
  367. let unZipDestination = dataPath
  368. let unZipUrl = unZipDestination.appendingPathComponent("\(id)")
  369. print(unZipUrl)
  370. // Alamofire to download file
  371. AF.download(url, to: destination).responseData { response in
  372. switch response.result {
  373. case .success:
  374. // write something here
  375. if response.fileURL != nil {
  376. print(response.fileURL!)
  377. let filePath = response.fileURL
  378. SSZipArchive.unzipFile(atPath: filePath!.path, toDestination: unZipUrl.path)
  379. }
  380. case .failure:
  381. print(response.result)
  382. }
  383. }
  384. }
  385. }
  386. self.getLevel()
  387. }
  388. static func getLevel() {
  389. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_LEVEL).json"
  390. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  391. let headers: HTTPHeaders = [
  392. "Content-Type": "application/json",
  393. "Accept": "application/json",
  394. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  395. ]
  396. print(headers)
  397. print(url)
  398. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  399. switch response.result {
  400. case .success(let value):
  401. let levelArray = value as! [NSDictionary]
  402. print(levelArray)
  403. for item in levelArray {
  404. let id = item.value(forKey: "id") as! NSNumber;
  405. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
  406. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
  407. let name = item.value(forKey: "name") as? String ?? "" ;
  408. let topics = item.value(forKey: "topics") as! [NSDictionary];
  409. let topicIdModel = List<Topics>()
  410. for data in topics {
  411. let topicId = data.value(forKey: "id") as? NSNumber;
  412. let newTopics = Topics(id: topicId as! Int)
  413. topicIdModel.append(newTopics)
  414. }
  415. let iconBytes = item.value(forKey: "iconBytes") as! NSArray;
  416. let iconByteString = iconBytes.map { String(describing: $0) }.joined(separator: ",")
  417. var levelModel = [LevelModel]()
  418. let newlevelModel = LevelModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, name: name, topics: topicIdModel, iconByte: iconByteString)
  419. print("Level Model: \(newlevelModel)")
  420. levelModel.append(newlevelModel)
  421. DBManager.sharedInstance.addData(objs: levelModel)
  422. }
  423. let realmEntries = DBManager.sharedInstance.database.objects(LevelModel.self)
  424. print("level count")
  425. print(realmEntries.count)
  426. print(levelArray.count)
  427. // if both counts doesn't match
  428. let db_count = realmEntries.count - levelArray.count
  429. if db_count > 0 {
  430. let array = Array(1...db_count)
  431. for value in array {
  432. var levelModel = [LevelModel]()
  433. let data = DBManager.sharedInstance.getObjects(type: LevelModel.self)? [realmEntries.count - value] as! LevelModel
  434. levelModel.append(data)
  435. DBManager.sharedInstance.deleteFromDb(object: levelModel)
  436. }
  437. }
  438. //Next API call
  439. self.getQuestionBank(offset: 0)
  440. case .failure(let error):
  441. print(error)
  442. }
  443. }
  444. }
  445. static func getQuestionBank(offset:Int) {
  446. let max = 10
  447. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_QUESTION_BANK).json?max=\(max)&offset=\(offset)"
  448. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  449. let headers: HTTPHeaders = [
  450. "Content-Type": "application/json",
  451. "Accept": "application/json",
  452. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  453. ]
  454. print(headers)
  455. print(url)
  456. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  457. switch response.result {
  458. case .success(let value):
  459. let quesBankArray = value as! [NSDictionary]
  460. if quesBankArray != [] {
  461. print(quesBankArray)
  462. for item in quesBankArray {
  463. let id = item.value(forKey: "id") as! NSNumber;
  464. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
  465. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
  466. let name = item.value(forKey: "name") as? String ?? "" ;
  467. let questions = item.value(forKey: "questions") as! [NSDictionary];
  468. let questionIdModel = List<Questions>()
  469. for data in questions {
  470. let quesId = data.value(forKey: "id") as? NSNumber;
  471. let newQues = Questions(id: quesId as! Int)
  472. questionIdModel.append(newQues)
  473. }
  474. var quesBankModel = [QuestionBankModel]()
  475. let newQuesBankModel = QuestionBankModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, name: name, questions: questionIdModel)
  476. print("Question Bank Model: \(newQuesBankModel)")
  477. quesBankModel.append(newQuesBankModel)
  478. DBManager.sharedInstance.addData(objs: quesBankModel)
  479. }
  480. let realmEntries = DBManager.sharedInstance.database.objects(QuestionBankModel.self)
  481. print("question bank count")
  482. print(realmEntries.count)
  483. self.getQuestionBank(offset: offset + max)
  484. } else {
  485. //Next API call
  486. self.getQuestion(offset: 0)
  487. }
  488. case .failure(let error):
  489. print(error)
  490. }
  491. }
  492. }
  493. static func getQuestion(offset:Int) {
  494. let max = 10
  495. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_QUESTION).json?max=\(max)&offset=\(offset)"
  496. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  497. let headers: HTTPHeaders = [
  498. "Content-Type": "application/json",
  499. "Accept": "application/json",
  500. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  501. ]
  502. print(headers)
  503. print(url)
  504. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  505. switch response.result {
  506. case .success(let value):
  507. let questionArray = value as! [NSDictionary]
  508. if questionArray != [] {
  509. print(questionArray)
  510. for item in questionArray {
  511. let id = item.value(forKey: "id") as! NSNumber;
  512. let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
  513. let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
  514. let content = item.value(forKey: "content") as? String ?? "" ;
  515. let questionBank = item.value(forKey: "questionBank") as? NSObject;
  516. let questionBankId = questionBank?.value(forKey: "id") as! NSNumber;
  517. let answer = item.value(forKey: "answer") as? NSObject;
  518. let answerId = answer?.value(forKey: "id") as! NSNumber;
  519. let choices = item.value(forKey: "choices") as! [NSDictionary];
  520. let choicesIdModel = List<Choices>()
  521. for data in choices {
  522. let choicesId = data.value(forKey: "id") as? NSNumber;
  523. let newchoices = Choices(id: choicesId as! Int)
  524. choicesIdModel.append(newchoices)
  525. }
  526. var quesModel = [QuestionModel]()
  527. let newQuesModel = QuestionModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, content: content, questionBankId: Int(truncating: questionBankId), answerId: Int(truncating: answerId), choices: choicesIdModel)
  528. print("Question Model: \(newQuesModel)")
  529. quesModel.append(newQuesModel)
  530. DBManager.sharedInstance.addData(objs: quesModel)
  531. }
  532. let realmEntries = DBManager.sharedInstance.database.objects(QuestionModel.self)
  533. print("question count")
  534. print(realmEntries.count)
  535. self.getQuestion(offset: offset + max)
  536. } else {
  537. //Next API call
  538. self.getChoice(offset: 0)
  539. }
  540. case .failure(let error):
  541. print(error)
  542. }
  543. }
  544. }
  545. static func getChoice(offset:Int) {
  546. let max = 10
  547. let url = "\(ApiUrl.BASE_URL + ApiUrl.API_CHOICE).json?max=\(max)&offset=\(offset)"
  548. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  549. let headers: HTTPHeaders = [
  550. "Content-Type": "application/json",
  551. "Accept": "application/json",
  552. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  553. ]
  554. print(headers)
  555. print(url)
  556. AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
  557. switch response.result {
  558. case .success(let value):
  559. let choiceArray = value as! [NSDictionary]
  560. if choiceArray != [] {
  561. print(choiceArray)
  562. for item in choiceArray {
  563. let id = item.value(forKey: "id") as! NSNumber;
  564. let content = item.value(forKey: "content") as? String ?? "";
  565. let question = item.value(forKey: "question") as? NSObject;
  566. let questionId = question?.value(forKey: "id") as! NSNumber;
  567. var choiceModel = [ChoiceModel]()
  568. let newchoiceModel = ChoiceModel(id: Int(truncating: id), content: content, questionId: Int(truncating: questionId))
  569. print("Choice Model: \(newchoiceModel)")
  570. choiceModel.append(newchoiceModel)
  571. DBManager.sharedInstance.addData(objs: choiceModel)
  572. }
  573. let realmEntries = DBManager.sharedInstance.database.objects(ChoiceModel.self)
  574. print("choice count")
  575. print(realmEntries.count)
  576. self.getChoice(offset: offset + max)
  577. } else {
  578. //Next API call
  579. // delegate.stopActivityIndicator()
  580. // delegate.navigation()
  581. }
  582. case .failure(let error):
  583. print(error)
  584. }
  585. }
  586. }
  587. static func getScoreBoard() {
  588. let studentId = UserDefaultsConstant.getIntValueFromUserDefults(for: Constant.studentId) as! Int
  589. let url = ApiUrl.BASE_URL + ApiUrl.API_SEARCH_SCOREBOARD
  590. let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
  591. let headers: HTTPHeaders = [
  592. "Content-Type": "application/json",
  593. "Accept": "application/json",
  594. "Cookie": "\(Constant.CookieName) = \(cookieValue)"
  595. ]
  596. print(headers)
  597. let params: Parameters?
  598. params = [
  599. "id" : studentId
  600. ]
  601. print(params!)
  602. AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
  603. switch response.result {
  604. case .success(let value):
  605. let scoreData = value as! [NSDictionary]
  606. var currentIndex = 0
  607. for item in scoreData {
  608. let student = item.value(forKey: "student") as! NSObject;
  609. let studentId = student.value(forKey: "id") as! NSNumber;
  610. let topic = item.value(forKey: "topic") as! NSObject;
  611. let topicId = topic.value(forKey: "id") as! NSNumber;
  612. let level = item.value(forKey: "level") as! NSObject;
  613. let levelId = level.value(forKey: "id") as! NSNumber;
  614. let runs = item.value(forKey: "runs") as! NSNumber;
  615. let wickets = item.value(forKey: "wickets") as! NSNumber;
  616. let noOfAttempts = item.value(forKey: "noOfAttempts") as! NSNumber;
  617. var saveScoreModel = [SaveScoreBoard]()
  618. currentIndex += 1
  619. 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)
  620. saveScoreModel.append(newSaveScoreModel)
  621. DBManager.sharedInstance.addData(objs: saveScoreModel)
  622. }
  623. let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
  624. print("save score count")
  625. print(saveScoreDB.count)
  626. case .failure(let error):
  627. print(error)
  628. }
  629. }
  630. }
  631. }