BondDebenturesViewModel.swift 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. //
  2. // BondDebenturesViewModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 30/11/21.
  6. //
  7. import Foundation
  8. import Alamofire
  9. class BondDebenturesViewModel {
  10. var delegate: BondDebenturesViewProtocol?
  11. var bondDebentureModel = [BondDebenturesModel]()
  12. var bondDebentureOutputListModel = [BondDebenturesOutputListModel]()
  13. //POST Bond Debenture API
  14. func getBondDebenture(tenureType:String, investmentDateString:String, tenure:String, coupounPayoutFrequency:String, interestCouponRate:String, bondFaceValue:String, numberOfBondsPurchased:String, currentYield:String) {
  15. if let delegate = delegate {
  16. delegate.startLoader()
  17. let url = ApiUrl.BASE_URL + ApiUrl.GET_BOND_DEBENTURE
  18. var terms = String()
  19. switch tenureType {
  20. case "Year":
  21. terms = "Y"
  22. case "Days":
  23. terms = "D"
  24. default:
  25. terms = ""
  26. }
  27. var payoutFrequency = String()
  28. switch coupounPayoutFrequency {
  29. case "Monthly":
  30. payoutFrequency = "12"
  31. case "Bi-Monthly":
  32. payoutFrequency = "6"
  33. case "Quarterly":
  34. payoutFrequency = "4"
  35. case "Triannually":
  36. payoutFrequency = "3"
  37. case "Half Yearly":
  38. payoutFrequency = "2"
  39. case "Annually":
  40. payoutFrequency = "1"
  41. default:
  42. payoutFrequency = ""
  43. }
  44. let parameters: [String: String] = [
  45. "tenureType": terms,
  46. "investmentDate": investmentDateString,
  47. "tenure": tenure,
  48. "coupounPayoutFrequency": payoutFrequency,
  49. "interestCouponRate": interestCouponRate,
  50. "bondFaceValue": bondFaceValue,
  51. "numberOfBondsPurchased": numberOfBondsPurchased,
  52. "currentYield": currentYield
  53. ]
  54. print(parameters)
  55. AF.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default).responseJSON { response in
  56. switch response.result {
  57. case .success(let value):
  58. delegate.stopLoader()
  59. print(value)
  60. let data = value as! NSDictionary
  61. print(data)
  62. DispatchQueue.main.async {
  63. let serialNo = data["serialNo"] as! Int
  64. let referenceDate = data["referenceDate"] as? String
  65. let referenceMonth = data["referenceMonth"] as? String
  66. let financialYear = data["financialYear"] as? String
  67. let amountDeposited = data["amountDeposited"] as! Double
  68. let couponReceived = data["couponReceived"] as! Double
  69. let totalCouponReceived = data["totalCouponReceived"] as! Double
  70. let daysToMaturity = data["daysToMaturity"] as! String
  71. let viewMaturityDate = data["viewMaturityDate"] as? String
  72. let numberOfBondsPurchased = data["numberOfBondsPurchased"] as! Int
  73. let bondFaceValue = data["bondFaceValue"] as! Double
  74. let effectiveTimeToMaturity = data["effectiveTimeToMaturity"] as! Double
  75. let interestCouponRate = data["interestCouponRate"] as! Double
  76. let term = data["term"] as? Int
  77. let coupounPayoutFrequency = data["coupounPayoutFrequency"] as! Int
  78. let investmentDate = data["investmentDate"] as? String
  79. let currentYield = data["currentYield"] as! Double
  80. let currentValue = data["currentValue"] as! Double
  81. let tenureYearsDays = data["tenureYearsDays"] as? Int
  82. let totalMonths = data["totalMonths"] as! Int
  83. let bondData = BondDebenturesModel(serialNo: serialNo, numberOfBondsPurchased: numberOfBondsPurchased, term: term ?? 0, coupounPayoutFrequency: coupounPayoutFrequency, tenureYearsDays: tenureYearsDays ?? 0, totalMonths: totalMonths, referenceDate: referenceDate ?? "", referenceMonth: referenceMonth ?? "", financialYear: financialYear ?? "", daysToMaturity: daysToMaturity, viewMaturityDate: viewMaturityDate ?? "", investmentDate: investmentDate ?? "", amountDeposited: amountDeposited, couponReceived: couponReceived, totalCouponReceived: totalCouponReceived, bondFaceValue: bondFaceValue, effectiveTimeToMaturity: effectiveTimeToMaturity, interestCouponRate: interestCouponRate, currentYield: currentYield, currentValue: currentValue)
  84. self.bondDebentureModel.append(bondData)
  85. let dateString = daysToMaturity.stringBefore("T")
  86. self.getBondDebentureOutputList(numberOfBonds: String(numberOfBondsPurchased), bondFaceValue: String(bondFaceValue), coupounPayoutFrequency: payoutFrequency, investmentDate: investmentDateString, dtMaturityDate: self.convertDateFormat(inputDate: dateString), couponReceivedValue: String(couponReceived), totalMonths: String(totalMonths), bondModel: bondData)
  87. }
  88. case .failure(let error):
  89. delegate.stopLoader()
  90. print(error)
  91. //delegate.showError(error: error)
  92. }
  93. }
  94. }
  95. }
  96. //POST Bond Debenture Output List
  97. func getBondDebentureOutputList(numberOfBonds:String, bondFaceValue:String, coupounPayoutFrequency:String, investmentDate:String, dtMaturityDate:String, couponReceivedValue:String, totalMonths:String, bondModel:BondDebenturesModel) {
  98. if let delegate = delegate {
  99. delegate.startLoader()
  100. let url = ApiUrl.BASE_URL + ApiUrl.GET_BOND_DEBENTURE_OUTPUT_LIST
  101. let parameters: [String: String] = [
  102. "numberOfBonds": numberOfBonds,
  103. "bondFaceValue": bondFaceValue,
  104. "coupounPayoutFrequency": coupounPayoutFrequency,
  105. "investmentDate": investmentDate,
  106. "dtMaturityDate": dtMaturityDate,
  107. "couponReceivedValue": couponReceivedValue,
  108. "totalMonths": totalMonths
  109. ]
  110. print(parameters)
  111. AF.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default).responseJSON { response in
  112. switch response.result {
  113. case .success(let value):
  114. delegate.stopLoader()
  115. print(value)
  116. let data = value as! [NSDictionary]
  117. print(data)
  118. DispatchQueue.main.async {
  119. for item in data {
  120. let serialNo = item["serialNo"] as! Int
  121. let referenceDate = item["referenceDate"] as! String
  122. let referenceMonth = item["referenceMonth"] as! String
  123. let financialYear = item["financialYear"] as! String
  124. let bondAmountDeposited = item["bondAmountDeposited"] as! Double
  125. let couponReceived = item["couponReceived"] as! Double
  126. let totalCouponReceived = item["totalCouponReceived"] as! Double
  127. let daysToMaturity = item["daysToMaturity"] as! Int
  128. let outputList = BondDebenturesOutputListModel(serialNo: serialNo, daysToMaturity: daysToMaturity, referenceDate: referenceDate, referenceMonth: referenceMonth, financialYear: financialYear, bondAmountDeposited: bondAmountDeposited, couponReceived: couponReceived, totalCouponReceived: totalCouponReceived)
  129. self.bondDebentureOutputListModel.append(outputList)
  130. }
  131. }
  132. delegate.navigate(bondModel: bondModel, bondOuputListModel: self.bondDebentureOutputListModel)
  133. case .failure(let error):
  134. delegate.stopLoader()
  135. print(error)
  136. //delegate.showError(error: error)
  137. }
  138. }
  139. }
  140. }
  141. func convertDateFormat(inputDate: String) -> String {
  142. let olDateFormatter = DateFormatter()
  143. olDateFormatter.dateFormat = "yyyy-MM-dd"
  144. let oldDate = olDateFormatter.date(from: inputDate)
  145. let convertDateFormatter = DateFormatter()
  146. convertDateFormatter.dateFormat = "dd/MM/yyyy"
  147. return convertDateFormatter.string(from: oldDate!)
  148. }
  149. }
  150. protocol BondDebenturesViewProtocol {
  151. func startLoader()
  152. func stopLoader()
  153. func showError(error:String)
  154. func navigate(bondModel:BondDebenturesModel, bondOuputListModel:[BondDebenturesOutputListModel])
  155. }