CalendarModel.swift 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. //
  2. // CalendarModel.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 02/09/22.
  6. // let calendarModel = try? newJSONDecoder().decode(CalendarModel.self, from: jsonData)
  7. import Foundation
  8. // MARK: - CalendarModel
  9. class CalendarModel: Codable {
  10. var id, scheduleId, userId: Int?
  11. var date, startTime, endTime: String?
  12. var linkCreated: Bool?
  13. var link: String?
  14. var batch: Batch?
  15. var scheduleTitle, schedulePlace, status, workFlowStatus: String?
  16. var eventNo: Int?
  17. var notes: JSONNull?
  18. var offline: Bool?
  19. var batchName: String?
  20. var schoolName: String?
  21. var interventionName: String?
  22. var interventionLevelName: String?
  23. var teacherFirstName: String?
  24. var teacherLastName: String?
  25. var interventionId: Int?
  26. var interventionLevelId: Int?
  27. var batchId: Int?
  28. var schoolId: String?
  29. init(id: Int?, scheduleId: Int?, userId: Int?, date: String?, startTime: String?, endTime: String?, linkCreated: Bool?, link: String?, batch: Batch?, scheduleTitle: String?, schedulePlace: String?, status: String?, workFlowStatus: String?, eventNo: Int?, notes: JSONNull?, offline: Bool?, batchName: String?, schoolName: String? ,interventionName: String? ,interventionLevelName: String? ,teacherFirstName: String? ,teacherLastName: String?, interventionId: Int? ,interventionLevelId: Int?, batchId: Int?, schoolId: String?) {
  30. self.id = id
  31. self.scheduleId = scheduleId
  32. self.userId = userId
  33. self.date = date
  34. self.startTime = startTime
  35. self.endTime = endTime
  36. self.linkCreated = linkCreated
  37. self.link = link
  38. self.batch = batch
  39. self.scheduleTitle = scheduleTitle
  40. self.schedulePlace = schedulePlace
  41. self.status = status
  42. self.workFlowStatus = workFlowStatus
  43. self.eventNo = eventNo
  44. self.notes = notes
  45. self.offline = offline
  46. self.batchName = batchName
  47. self.schoolName = schoolName
  48. self.interventionName = interventionName
  49. self.interventionLevelName = interventionLevelName
  50. self.teacherFirstName = teacherFirstName
  51. self.teacherLastName = teacherLastName
  52. self.interventionId = interventionId
  53. self.interventionLevelId = interventionLevelId
  54. self.batchId = batchId
  55. self.schoolId = schoolId
  56. }
  57. }
  58. // MARK: - Batch
  59. class Batch: Codable {
  60. var viewBatchRS: ViewBatchRS?
  61. var teacher: Teacher?
  62. var comments: String?
  63. var substituteTeachers: [Teacher]?
  64. var status: String?
  65. var id: Int?
  66. init(viewBatchRS: ViewBatchRS?, teacher: Teacher?, comments: String?, substituteTeachers: [Teacher]?, status: String?, id: Int?) {
  67. self.viewBatchRS = viewBatchRS
  68. self.teacher = teacher
  69. self.comments = comments
  70. self.substituteTeachers = substituteTeachers
  71. self.status = status
  72. self.id = id
  73. }
  74. }
  75. // MARK: - Teacher
  76. class Teacher: Codable {
  77. var id: Int?
  78. var name: String?
  79. var middleName: JSONNull?
  80. var lastName, username, email, mobile: String?
  81. var userType: User?
  82. var keycloakUserId: String?
  83. var enable: Bool?
  84. var intervantions: [Int]?
  85. init(id: Int?, name: String?, middleName: JSONNull?, lastName: String?, username: String?, email: String?, mobile: String?, userType: User?, keycloakUserId: String?, enable: Bool?, intervantions: [Int]?) {
  86. self.id = id
  87. self.name = name
  88. self.middleName = middleName
  89. self.lastName = lastName
  90. self.username = username
  91. self.email = email
  92. self.mobile = mobile
  93. self.userType = userType
  94. self.keycloakUserId = keycloakUserId
  95. self.enable = enable
  96. self.intervantions = intervantions
  97. }
  98. }
  99. // MARK: - UserType
  100. class User: Codable {
  101. var id: Int?
  102. var actor, parentActor, discription, defaultRealmRole: String?
  103. var createAccess, deleteAccess, editAccess, viewAccess: String?
  104. var appUrl: String?
  105. init(id: Int?, actor: String?, parentActor: String?, discription: String?, defaultRealmRole: String?, createAccess: String?, deleteAccess: String?, editAccess: String?, viewAccess: String?, appUrl: String?) {
  106. self.id = id
  107. self.actor = actor
  108. self.parentActor = parentActor
  109. self.discription = discription
  110. self.defaultRealmRole = defaultRealmRole
  111. self.createAccess = createAccess
  112. self.deleteAccess = deleteAccess
  113. self.editAccess = editAccess
  114. self.viewAccess = viewAccess
  115. self.appUrl = appUrl
  116. }
  117. }
  118. // MARK: - ViewBatchRS
  119. class ViewBatchRS: Codable {
  120. var createdBy, createdDate, lastModifiedBy, lastModifiedDate: String?
  121. var id: Int?
  122. var academicYear, batchName: String?
  123. var studentBatch, deleted, active: Bool?
  124. var status, comments: String?
  125. var interventionDTO: InterventionDTO?
  126. var schoolDTO: SchoolDTO?
  127. var batachUserDtos: JSONNull?
  128. var level: Level?
  129. init(createdBy: String?, createdDate: String?, lastModifiedBy: String?, lastModifiedDate: String?, id: Int?, academicYear: String?, batchName: String?, studentBatch: Bool?, deleted: Bool?, active: Bool?, status: String?, comments: String?, interventionDTO: InterventionDTO?, schoolDTO: SchoolDTO?, batachUserDtos: JSONNull?, level: Level?) {
  130. self.createdBy = createdBy
  131. self.createdDate = createdDate
  132. self.lastModifiedBy = lastModifiedBy
  133. self.lastModifiedDate = lastModifiedDate
  134. self.id = id
  135. self.academicYear = academicYear
  136. self.batchName = batchName
  137. self.studentBatch = studentBatch
  138. self.deleted = deleted
  139. self.active = active
  140. self.status = status
  141. self.comments = comments
  142. self.interventionDTO = interventionDTO
  143. self.schoolDTO = schoolDTO
  144. self.batachUserDtos = batachUserDtos
  145. self.level = level
  146. }
  147. }
  148. // MARK: - InterventionDTO
  149. class InterventionDTO: Codable {
  150. var id: Int?
  151. var incrementor: JSONNull?
  152. var interventionId, interventionName: String?
  153. var interventionLevels: [String]?
  154. var beneficiaryIds: [Int]?
  155. var deleted, active: Bool?
  156. var status: String?
  157. var interventionSchoolMappings, mappedProgramHeads: JSONNull?
  158. init(id: Int?, incrementor: JSONNull?, interventionId: String?, interventionName: String?, interventionLevels: [String]?, beneficiaryIds: [Int]?, deleted: Bool?, active: Bool?, status: String?, interventionSchoolMappings: JSONNull?, mappedProgramHeads: JSONNull?) {
  159. self.id = id
  160. self.incrementor = incrementor
  161. self.interventionId = interventionId
  162. self.interventionName = interventionName
  163. self.interventionLevels = interventionLevels
  164. self.beneficiaryIds = beneficiaryIds
  165. self.deleted = deleted
  166. self.active = active
  167. self.status = status
  168. self.interventionSchoolMappings = interventionSchoolMappings
  169. self.mappedProgramHeads = mappedProgramHeads
  170. }
  171. }
  172. // MARK: - Level
  173. class Level: Codable {
  174. var id, interventionTableId: Int?
  175. var interventionLevels: String?
  176. init(id: Int?, interventionTableId: Int?, interventionLevels: String?) {
  177. self.id = id
  178. self.interventionTableId = interventionTableId
  179. self.interventionLevels = interventionLevels
  180. }
  181. }
  182. // MARK: - SchoolDTO
  183. class SchoolDTO: Codable {
  184. var schoolId, schoolName, state, city: String?
  185. var pincode: Int?
  186. var active, deleted: Bool?
  187. var status: String?
  188. init(schoolId: String?, schoolName: String?, state: String?, city: String?, pincode: Int?, active: Bool?, deleted: Bool?, status: String?) {
  189. self.schoolId = schoolId
  190. self.schoolName = schoolName
  191. self.state = state
  192. self.city = city
  193. self.pincode = pincode
  194. self.active = active
  195. self.deleted = deleted
  196. self.status = status
  197. }
  198. }
  199. // MARK: - Encode/decode helpers
  200. class JSONNull: Codable, Hashable {
  201. public static func == (lhs: JSONNull, rhs: JSONNull) -> Bool {
  202. return true
  203. }
  204. public var hashValue: Int {
  205. return 0
  206. }
  207. public func hash(into hasher: inout Hasher) {
  208. // No-op
  209. }
  210. public init() {}
  211. public required init(from decoder: Decoder) throws {
  212. let container = try decoder.singleValueContainer()
  213. if !container.decodeNil() {
  214. throw DecodingError.typeMismatch(JSONNull.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Wrong type for JSONNull"))
  215. }
  216. }
  217. public func encode(to encoder: Encoder) throws {
  218. var container = encoder.singleValueContainer()
  219. try container.encodeNil()
  220. }
  221. }
  222. class JSONCodingKey: CodingKey {
  223. let key: String
  224. required init?(intValue: Int) {
  225. return nil
  226. }
  227. required init?(stringValue: String) {
  228. key = stringValue
  229. }
  230. var intValue: Int? {
  231. return nil
  232. }
  233. var stringValue: String {
  234. return key
  235. }
  236. }
  237. class JSONAny: Codable {
  238. let value: Any
  239. static func decodingError(forCodingPath codingPath: [CodingKey]) -> DecodingError {
  240. let context = DecodingError.Context(codingPath: codingPath, debugDescription: "Cannot decode JSONAny")
  241. return DecodingError.typeMismatch(JSONAny.self, context)
  242. }
  243. static func encodingError(forValue value: Any, codingPath: [CodingKey]) -> EncodingError {
  244. let context = EncodingError.Context(codingPath: codingPath, debugDescription: "Cannot encode JSONAny")
  245. return EncodingError.invalidValue(value, context)
  246. }
  247. static func decode(from container: SingleValueDecodingContainer) throws -> Any {
  248. if let value = try? container.decode(Bool.self) {
  249. return value
  250. }
  251. if let value = try? container.decode(Int64.self) {
  252. return value
  253. }
  254. if let value = try? container.decode(Double.self) {
  255. return value
  256. }
  257. if let value = try? container.decode(String.self) {
  258. return value
  259. }
  260. if container.decodeNil() {
  261. return JSONNull()
  262. }
  263. throw decodingError(forCodingPath: container.codingPath)
  264. }
  265. static func decode(from container: inout UnkeyedDecodingContainer) throws -> Any {
  266. if let value = try? container.decode(Bool.self) {
  267. return value
  268. }
  269. if let value = try? container.decode(Int64.self) {
  270. return value
  271. }
  272. if let value = try? container.decode(Double.self) {
  273. return value
  274. }
  275. if let value = try? container.decode(String.self) {
  276. return value
  277. }
  278. if let value = try? container.decodeNil() {
  279. if value {
  280. return JSONNull()
  281. }
  282. }
  283. if var container = try? container.nestedUnkeyedContainer() {
  284. return try decodeArray(from: &container)
  285. }
  286. if var container = try? container.nestedContainer(keyedBy: JSONCodingKey.self) {
  287. return try decodeDictionary(from: &container)
  288. }
  289. throw decodingError(forCodingPath: container.codingPath)
  290. }
  291. static func decode(from container: inout KeyedDecodingContainer<JSONCodingKey>, forKey key: JSONCodingKey) throws -> Any {
  292. if let value = try? container.decode(Bool.self, forKey: key) {
  293. return value
  294. }
  295. if let value = try? container.decode(Int64.self, forKey: key) {
  296. return value
  297. }
  298. if let value = try? container.decode(Double.self, forKey: key) {
  299. return value
  300. }
  301. if let value = try? container.decode(String.self, forKey: key) {
  302. return value
  303. }
  304. if let value = try? container.decodeNil(forKey: key) {
  305. if value {
  306. return JSONNull()
  307. }
  308. }
  309. if var container = try? container.nestedUnkeyedContainer(forKey: key) {
  310. return try decodeArray(from: &container)
  311. }
  312. if var container = try? container.nestedContainer(keyedBy: JSONCodingKey.self, forKey: key) {
  313. return try decodeDictionary(from: &container)
  314. }
  315. throw decodingError(forCodingPath: container.codingPath)
  316. }
  317. static func decodeArray(from container: inout UnkeyedDecodingContainer) throws -> [Any] {
  318. var arr: [Any] = []
  319. while !container.isAtEnd {
  320. let value = try decode(from: &container)
  321. arr.append(value)
  322. }
  323. return arr
  324. }
  325. static func decodeDictionary(from container: inout KeyedDecodingContainer<JSONCodingKey>) throws -> [String: Any] {
  326. var dict = [String: Any]()
  327. for key in container.allKeys {
  328. let value = try decode(from: &container, forKey: key)
  329. dict[key.stringValue] = value
  330. }
  331. return dict
  332. }
  333. static func encode(to container: inout UnkeyedEncodingContainer, array: [Any]) throws {
  334. for value in array {
  335. if let value = value as? Bool {
  336. try container.encode(value)
  337. } else if let value = value as? Int64 {
  338. try container.encode(value)
  339. } else if let value = value as? Double {
  340. try container.encode(value)
  341. } else if let value = value as? String {
  342. try container.encode(value)
  343. } else if value is JSONNull {
  344. try container.encodeNil()
  345. } else if let value = value as? [Any] {
  346. var container = container.nestedUnkeyedContainer()
  347. try encode(to: &container, array: value)
  348. } else if let value = value as? [String: Any] {
  349. var container = container.nestedContainer(keyedBy: JSONCodingKey.self)
  350. try encode(to: &container, dictionary: value)
  351. } else {
  352. throw encodingError(forValue: value, codingPath: container.codingPath)
  353. }
  354. }
  355. }
  356. static func encode(to container: inout KeyedEncodingContainer<JSONCodingKey>, dictionary: [String: Any]) throws {
  357. for (key, value) in dictionary {
  358. let key = JSONCodingKey(stringValue: key)!
  359. if let value = value as? Bool {
  360. try container.encode(value, forKey: key)
  361. } else if let value = value as? Int64 {
  362. try container.encode(value, forKey: key)
  363. } else if let value = value as? Double {
  364. try container.encode(value, forKey: key)
  365. } else if let value = value as? String {
  366. try container.encode(value, forKey: key)
  367. } else if value is JSONNull {
  368. try container.encodeNil(forKey: key)
  369. } else if let value = value as? [Any] {
  370. var container = container.nestedUnkeyedContainer(forKey: key)
  371. try encode(to: &container, array: value)
  372. } else if let value = value as? [String: Any] {
  373. var container = container.nestedContainer(keyedBy: JSONCodingKey.self, forKey: key)
  374. try encode(to: &container, dictionary: value)
  375. } else {
  376. throw encodingError(forValue: value, codingPath: container.codingPath)
  377. }
  378. }
  379. }
  380. static func encode(to container: inout SingleValueEncodingContainer, value: Any) throws {
  381. if let value = value as? Bool {
  382. try container.encode(value)
  383. } else if let value = value as? Int64 {
  384. try container.encode(value)
  385. } else if let value = value as? Double {
  386. try container.encode(value)
  387. } else if let value = value as? String {
  388. try container.encode(value)
  389. } else if value is JSONNull {
  390. try container.encodeNil()
  391. } else {
  392. throw encodingError(forValue: value, codingPath: container.codingPath)
  393. }
  394. }
  395. public required init(from decoder: Decoder) throws {
  396. if var arrayContainer = try? decoder.unkeyedContainer() {
  397. self.value = try JSONAny.decodeArray(from: &arrayContainer)
  398. } else if var container = try? decoder.container(keyedBy: JSONCodingKey.self) {
  399. self.value = try JSONAny.decodeDictionary(from: &container)
  400. } else {
  401. let container = try decoder.singleValueContainer()
  402. self.value = try JSONAny.decode(from: container)
  403. }
  404. }
  405. public func encode(to encoder: Encoder) throws {
  406. if let arr = self.value as? [Any] {
  407. var container = encoder.unkeyedContainer()
  408. try JSONAny.encode(to: &container, array: arr)
  409. } else if let dict = self.value as? [String: Any] {
  410. var container = encoder.container(keyedBy: JSONCodingKey.self)
  411. try JSONAny.encode(to: &container, dictionary: dict)
  412. } else {
  413. var container = encoder.singleValueContainer()
  414. try JSONAny.encode(to: &container, value: self.value)
  415. }
  416. }
  417. }