123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777 |
- //
- // ApiManager.swift
- // Learn Genie
- //
- // Created by Suraj Kumar Mandal on 31/08/21.
- //
- import Foundation
- import Alamofire
- import SSZipArchive
- import RealmSwift
- class ApiManager {
-
- static func generateCookie() {
- let url = ApiUrl.BASE_URL + ApiUrl.API_AUTH
- let params: [String:Any]?
- params = [
- "username" : "admin",
- "password" : "mahindrapass123"
- ]
- print(params!)
-
- AF.request(url, method: HTTPMethod.post, parameters: params).responseData { (responseObject) -> Void in
-
- if let responseStatus = responseObject.response?.statusCode {
- if responseStatus != 200 {
- // error
- print("error...")
- } else {
- // view all cookies
- print(HTTPCookieStorage.shared.cookies!)
- for cookie in HTTPCookieStorage.shared.cookies! {
- print(cookie.value)
- UserDefaultsConstant.setValueInUserDefaults(objValue: cookie.value, for: "cookieValue")
- //self.getRole()
- print("Cookie generated")
- }
- }
- }
- }
- }
-
- static func saveScoreboard() {
- let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
- for score in saveScoreDB {
- if score.synced == false {
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_SCOREBOARD)/save.json"
- print(url)
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
-
- let params: Parameters?
- params = [
- "student" : score.student,
- "level" : score.levelId,
- "topic" : score.topicId,
- "runs" : score.runs,
- "wickets" : score.wickets,
- "noOfAttempts" : score.noOfAttempts
- ]
- print(params!)
-
- AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
- if let responseStatus = response.response?.statusCode {
- if responseStatus != 201 {
- print("error...")
- } else {
- score.synced = true
- }
- }
- }
- }
- }
- }
-
- static func getRole() {
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_ROLE).json"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
-
- AF.request(url, method: HTTPMethod.post, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
- let roleData = value as! [NSDictionary]
- var currentIndex = 0
- for item in roleData {
- let id = item.value(forKey: "id") as! NSNumber;
- let name = item.value(forKey: "name") as? String ?? "";
- let authority = item.value(forKey: "authority") as? String ?? "";
- var roleModel = [RoleModel]()
- currentIndex += 1
- let newRoleModel = RoleModel(id: Int(truncating: id), name: name, authority: authority)
- roleModel.append(newRoleModel)
- DBManager.sharedInstance.addData(objs: roleModel)
- }
- let realmEntries = DBManager.sharedInstance.database.objects(RoleModel.self)
- print("role count")
- print(realmEntries.count)
- print(roleData.count)
- // if both counts doesn't match
- let db_count = realmEntries.count - roleData.count
- if db_count > 0 {
- let array = Array(1...db_count)
- for value in array {
- var roleModel = [RoleModel]()
- let data = DBManager.sharedInstance.getObjects(type: RoleModel.self)? [realmEntries.count - value] as! RoleModel
- roleModel.append(data)
- DBManager.sharedInstance.deleteFromDb(object: roleModel)
- }
- }
- self.getLanguage()
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getLanguage() {
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_LANGUAGE).json"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
-
- AF.request(url, method: HTTPMethod.post, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let languageArray = value as! [NSDictionary]
-
- for item in languageArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let shortName = item.value(forKey: "shortName") as? String ?? "" ;
- let dateCreated = item.value(forKey: "dateCreated") as? String ?? "" ;
- let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "" ;
- let name = item.value(forKey: "name") as? String ?? "" ;
-
- var languageModel = [LanguageModel]()
-
- let newLanguageModel = LanguageModel(id: Int(truncating: id), shortName: shortName, dateCreated: dateCreated, lastUpdated: lastUpdated, name: name)
-
- languageModel.append(newLanguageModel)
-
- DBManager.sharedInstance.addData(objs: languageModel)
-
- }
-
- let realmEntries = DBManager.sharedInstance.database.objects(LanguageModel.self)
-
- print("language count")
- print(realmEntries.count)
- print(languageArray.count)
-
- // if both counts doesn't match
-
- let db_count = realmEntries.count - languageArray.count
-
- if db_count > 0 {
- let array = Array(1...db_count)
- for value in array {
- var languageModel = [LanguageModel]()
- let data = DBManager.sharedInstance.getObjects(type: LanguageModel.self)? [realmEntries.count - value] as! LanguageModel
- languageModel.append(data)
- DBManager.sharedInstance.deleteFromDb(object: languageModel)
- }
- }
- let translationModel = [TranslationModel]()
- DBManager.sharedInstance.deleteFromDb(object: translationModel)
- self.getTranslation(offset: 0)
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getTranslation(offset:Int) {
- let max = 10
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_TRANSLATION).json?max=\(max)&offset=\(offset)"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- //let params: [String:Any]?
- let params = [
- "max" : max,
- "offset" : offset
- ]
- print(params)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let translationArray = value as! [NSDictionary]
-
- if translationArray != [] {
- print(translationArray)
-
- for item in translationArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let originalText = item.value(forKey: "originalText") as? String ?? "" ;
- let language = item.value(forKey: "language") as? NSObject;
- let languageId = language?.value(forKey: "id") as! NSNumber;
- let translatedText = item.value(forKey: "translatedText") as? String ?? "" ;
-
- var translationModel = [TranslationModel]()
-
- let newtranslationModel = TranslationModel(id: Int(truncating: id), originalText: originalText, languageId: Int(truncating: languageId), translatedText: translatedText)
-
- translationModel.append(newtranslationModel)
-
- DBManager.sharedInstance.addData(objs: translationModel)
- }
- self.getTranslation(offset: offset + max)
- } else {
- let stateModel = [StateModel]()
- DBManager.sharedInstance.deleteFromDb(object: stateModel)
- //Next API call
- self.getState(offset: 0)
- }
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getState(offset:Int) {
- let max = 10
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_STATE).json?max=\(max)&offset=\(offset)"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- print(url)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let translationArray = value as! [NSDictionary]
-
- if translationArray != [] {
- print(translationArray)
-
- for item in translationArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let stateName = item.value(forKey: "stateName") as? String ?? "" ;
- let stateNameHindi = item.value(forKey: "stateNameHindi") as? String ?? "" ;
-
- var stateModel = [StateModel]()
-
- let newStateModel = StateModel(id: Int(truncating: id), stateName: stateName, stateNameHindi: stateNameHindi)
-
- stateModel.append(newStateModel)
-
- DBManager.sharedInstance.addData(objs: stateModel)
- }
- let realmEntries = DBManager.sharedInstance.database.objects(StateModel.self)
-
- print("state count")
- print(realmEntries.count)
- self.getState(offset: offset + max)
- } else {
- let districtModel = [DistrictModel]()
- DBManager.sharedInstance.deleteFromDb(object: districtModel)
- //Next API call
- self.getDistrict(offset: 0)
- }
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getDistrict(offset:Int) {
- let max = 10
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_DISTRICT).json?max=\(max)&offset=\(offset)"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- print(url)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let translationArray = value as! [NSDictionary]
-
- if translationArray != [] {
- print(translationArray)
-
- for item in translationArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let districtName = item.value(forKey: "districtName") as? String ?? "" ;
- let state = item.value(forKey: "state") as? NSObject;
- let stateId = state?.value(forKey: "id") as! NSNumber;
- let districtNameHindi = item.value(forKey: "districtNameHindi") as? String ?? "" ;
-
- var districtModel = [DistrictModel]()
-
- let newDistrictModel = DistrictModel(id: Int(truncating: id), districtName: districtName, stateId: Int(truncating: stateId), districtNameHindi: districtNameHindi)
-
- districtModel.append(newDistrictModel)
-
- DBManager.sharedInstance.addData(objs: districtModel)
- }
- let realmEntries = DBManager.sharedInstance.database.objects(DistrictModel.self)
-
- print("district count")
- print(realmEntries.count)
- self.getDistrict(offset: offset + max)
- } else {
- let topicModel = [TopicModel]()
- DBManager.sharedInstance.deleteFromDb(object: topicModel)
- //Next API call
- self.getTopic(offset: 0)
- }
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getTopic(offset:Int) {
- let max = 10
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_TOPIC).json?max=\(max)&offset=\(offset)"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- print(url)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let topicArray = value as! [NSDictionary]
-
- if topicArray != [] {
- print(topicArray)
-
- for item in topicArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let level = item.value(forKey: "level") as? NSObject;
- let levelId = level?.value(forKey: "id") as! NSNumber;
- let noOfQuizQuestions = item.value(forKey: "noOfQuizQuestions") as! NSNumber;
- let video = item.value(forKey: "video") as? String ?? "" ;
- let dateCreated = item.value(forKey: "dateCreated") as? String ?? "" ;
- let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "" ;
- let name = item.value(forKey: "name") as? String ?? "" ;
- let questionBank = item.value(forKey: "questionBank") as? NSObject;
- let questionBankId = questionBank?.value(forKey: "id") as! NSNumber;
- let content = item.value(forKey: "content") as? String ?? "" ;
- let language = item.value(forKey: "language") as? NSObject;
- let languageId = language?.value(forKey: "id") as! NSNumber;
-
- var topicModel = [TopicModel]()
-
- 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))
-
- topicModel.append(newtopicModel)
-
- DBManager.sharedInstance.addData(objs: topicModel)
- //self.topicDownloader(id: Int(truncating: id))
- }
- let realmEntries = DBManager.sharedInstance.database.objects(TopicModel.self)
-
- print("topic count")
- print(realmEntries.count)
- self.getTopic(offset: offset + max)
- } else {
- //Next API call
- self.topicDownloader()
- }
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func topicDownloader() {
- let language = DBManager.sharedInstance.database.objects(LanguageModel.self)
- for item in language {
- let topicData = DBManager.sharedInstance.database.objects(TopicModel.self)
- for data in topicData {
- let id = data.id
- //let selectedLanguage = UserDefaultsConstant.getValueFromUserDefults(for: "selectedLanguage") ?? ""
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_DOWNLOAD_TOPIC)?topic=\(id)&lang=\(item.shortName)"
- let saveName = "\(id).zip"
- print(url)
-
- let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
- let dataPath = documentsDirectory.appendingPathComponent(item.name)
-
- do {
- try FileManager.default.createDirectory(atPath: dataPath.path, withIntermediateDirectories: true, attributes: nil)
- } catch let error as NSError {
- print("Error creating directory: \(error.localizedDescription)")
- }
-
- // file location to save download file
- let destination: DownloadRequest.Destination = { _, _ in
- var documentsURL = dataPath
- documentsURL.appendPathComponent(saveName)
- return (documentsURL, [.removePreviousFile])
- }
-
- let unZipDestination = dataPath
- let unZipUrl = unZipDestination.appendingPathComponent("\(id)")
- print(unZipUrl)
-
- // Alamofire to download file
- AF.download(url, to: destination).responseData { response in
- switch response.result {
- case .success:
- // write something here
- if response.fileURL != nil {
- print(response.fileURL!)
- let filePath = response.fileURL
- SSZipArchive.unzipFile(atPath: filePath!.path, toDestination: unZipUrl.path)
- }
- case .failure:
- print(response.result)
- }
- }
- }
- }
- self.getLevel()
- }
-
- static func getLevel() {
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_LEVEL).json"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- print(url)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let levelArray = value as! [NSDictionary]
-
- print(levelArray)
-
- for item in levelArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
- let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
- let name = item.value(forKey: "name") as? String ?? "" ;
- let topics = item.value(forKey: "topics") as! [NSDictionary];
- let topicIdModel = List<Topics>()
- for data in topics {
- let topicId = data.value(forKey: "id") as? NSNumber;
- let newTopics = Topics(id: topicId as! Int)
- topicIdModel.append(newTopics)
- }
- let iconBytes = item.value(forKey: "iconBytes") as! NSArray;
- let iconByteString = iconBytes.map { String(describing: $0) }.joined(separator: ",")
-
- var levelModel = [LevelModel]()
-
- let newlevelModel = LevelModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, name: name, topics: topicIdModel, iconByte: iconByteString)
- print("Level Model: \(newlevelModel)")
- levelModel.append(newlevelModel)
-
- DBManager.sharedInstance.addData(objs: levelModel)
- }
- let realmEntries = DBManager.sharedInstance.database.objects(LevelModel.self)
-
- print("level count")
- print(realmEntries.count)
- print(levelArray.count)
- // if both counts doesn't match
- let db_count = realmEntries.count - levelArray.count
- if db_count > 0 {
- let array = Array(1...db_count)
- for value in array {
- var levelModel = [LevelModel]()
- let data = DBManager.sharedInstance.getObjects(type: LevelModel.self)? [realmEntries.count - value] as! LevelModel
- levelModel.append(data)
- DBManager.sharedInstance.deleteFromDb(object: levelModel)
- }
- }
- //Next API call
- self.getQuestionBank(offset: 0)
-
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getQuestionBank(offset:Int) {
- let max = 10
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_QUESTION_BANK).json?max=\(max)&offset=\(offset)"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- print(url)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let quesBankArray = value as! [NSDictionary]
-
- if quesBankArray != [] {
- print(quesBankArray)
-
- for item in quesBankArray {
- let id = item.value(forKey: "id") as! NSNumber;
- let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
- let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
- let name = item.value(forKey: "name") as? String ?? "" ;
- let questions = item.value(forKey: "questions") as! [NSDictionary];
- let questionIdModel = List<Questions>()
- for data in questions {
- let quesId = data.value(forKey: "id") as? NSNumber;
- let newQues = Questions(id: quesId as! Int)
- questionIdModel.append(newQues)
- }
-
- var quesBankModel = [QuestionBankModel]()
-
- let newQuesBankModel = QuestionBankModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, name: name, questions: questionIdModel)
- print("Question Bank Model: \(newQuesBankModel)")
- quesBankModel.append(newQuesBankModel)
-
- DBManager.sharedInstance.addData(objs: quesBankModel)
- }
- let realmEntries = DBManager.sharedInstance.database.objects(QuestionBankModel.self)
-
- print("question bank count")
- print(realmEntries.count)
- self.getQuestionBank(offset: offset + max)
- } else {
- //Next API call
- self.getQuestion(offset: 0)
- }
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getQuestion(offset:Int) {
- let max = 10
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_QUESTION).json?max=\(max)&offset=\(offset)"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- print(url)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let questionArray = value as! [NSDictionary]
-
- if questionArray != [] {
- print(questionArray)
-
- for item in questionArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let dateCreated = item.value(forKey: "dateCreated") as? String ?? "";
- let lastUpdated = item.value(forKey: "lastUpdated") as? String ?? "";
- let content = item.value(forKey: "content") as? String ?? "" ;
- let questionBank = item.value(forKey: "questionBank") as? NSObject;
- let questionBankId = questionBank?.value(forKey: "id") as! NSNumber;
- let answer = item.value(forKey: "answer") as? NSObject;
- let answerId = answer?.value(forKey: "id") as! NSNumber;
- let choices = item.value(forKey: "choices") as! [NSDictionary];
- let choicesIdModel = List<Choices>()
- for data in choices {
- let choicesId = data.value(forKey: "id") as? NSNumber;
- let newchoices = Choices(id: choicesId as! Int)
- choicesIdModel.append(newchoices)
- }
-
- var quesModel = [QuestionModel]()
-
- let newQuesModel = QuestionModel(id: Int(truncating: id), dateCreated: dateCreated, lastUpdated: lastUpdated, content: content, questionBankId: Int(truncating: questionBankId), answerId: Int(truncating: answerId), choices: choicesIdModel)
- print("Question Model: \(newQuesModel)")
- quesModel.append(newQuesModel)
-
- DBManager.sharedInstance.addData(objs: quesModel)
- }
- let realmEntries = DBManager.sharedInstance.database.objects(QuestionModel.self)
-
- print("question count")
- print(realmEntries.count)
- self.getQuestion(offset: offset + max)
- } else {
- //Next API call
- self.getChoice(offset: 0)
- }
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getChoice(offset:Int) {
- let max = 10
- let url = "\(ApiUrl.BASE_URL + ApiUrl.API_CHOICE).json?max=\(max)&offset=\(offset)"
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
- print(url)
-
- AF.request(url, method: .get, encoding: URLEncoding.httpBody, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let choiceArray = value as! [NSDictionary]
-
- if choiceArray != [] {
- print(choiceArray)
-
- for item in choiceArray {
-
- let id = item.value(forKey: "id") as! NSNumber;
- let content = item.value(forKey: "content") as? String ?? "";
- let question = item.value(forKey: "question") as? NSObject;
- let questionId = question?.value(forKey: "id") as! NSNumber;
-
- var choiceModel = [ChoiceModel]()
-
- let newchoiceModel = ChoiceModel(id: Int(truncating: id), content: content, questionId: Int(truncating: questionId))
- print("Choice Model: \(newchoiceModel)")
- choiceModel.append(newchoiceModel)
-
- DBManager.sharedInstance.addData(objs: choiceModel)
- }
- let realmEntries = DBManager.sharedInstance.database.objects(ChoiceModel.self)
-
- print("choice count")
- print(realmEntries.count)
- self.getChoice(offset: offset + max)
- } else {
- //Next API call
- // delegate.stopActivityIndicator()
- // delegate.navigation()
- }
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- static func getScoreBoard() {
- let studentId = UserDefaultsConstant.getIntValueFromUserDefults(for: Constant.studentId) as! Int
- let url = ApiUrl.BASE_URL + ApiUrl.API_SEARCH_SCOREBOARD
- let cookieValue = UserDefaultsConstant.getValueFromUserDefults(for: "cookieValue") ?? ""
- let headers: HTTPHeaders = [
- "Content-Type": "application/json",
- "Accept": "application/json",
- "Cookie": "\(Constant.CookieName) = \(cookieValue)"
- ]
- print(headers)
-
- let params: Parameters?
- params = [
- "id" : studentId
- ]
- print(params!)
-
- AF.request(url, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { response in
-
- switch response.result {
- case .success(let value):
-
- let scoreData = value as! [NSDictionary]
- var currentIndex = 0
-
- for item in scoreData {
- let student = item.value(forKey: "student") as! NSObject;
- let studentId = student.value(forKey: "id") as! NSNumber;
- let topic = item.value(forKey: "topic") as! NSObject;
- let topicId = topic.value(forKey: "id") as! NSNumber;
- let level = item.value(forKey: "level") as! NSObject;
- let levelId = level.value(forKey: "id") as! NSNumber;
- let runs = item.value(forKey: "runs") as! NSNumber;
- let wickets = item.value(forKey: "wickets") as! NSNumber;
- let noOfAttempts = item.value(forKey: "noOfAttempts") as! NSNumber;
-
- var saveScoreModel = [SaveScoreBoard]()
- currentIndex += 1
- 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)
-
- saveScoreModel.append(newSaveScoreModel)
-
- DBManager.sharedInstance.addData(objs: saveScoreModel)
- }
- let saveScoreDB = DBManager.sharedInstance.database.objects(SaveScoreBoard.self)
-
- print("save score count")
- print(saveScoreDB.count)
-
-
- case .failure(let error):
- print(error)
- }
- }
- }
-
- }
|