ScromViewController.swift 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. //
  2. // ScromViewController.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 18/01/23.
  6. //
  7. import UIKit
  8. import Toast_Swift
  9. import WebKit
  10. import Zip
  11. class ScromViewController: UIViewController {
  12. @IBOutlet var navigationBar: UINavigationBar!
  13. @IBOutlet var htmlWebView: WKWebView!
  14. var viewModel = ScromViewModel()
  15. var id = String()
  16. var docType = String()
  17. var name = String()
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. // Do any additional setup after loading the view.
  21. navigationBar.topItem?.title = name
  22. viewModel.delegate = self
  23. getScromData()
  24. let value = UIInterfaceOrientation.landscapeLeft.rawValue
  25. UIDevice.current.setValue(value, forKey: "orientation")
  26. }
  27. override func viewWillDisappear(_ animated: Bool) {
  28. super.viewWillDisappear(animated)
  29. let value = UIInterfaceOrientation.portrait.rawValue
  30. UIDevice.current.setValue(value, forKey: "orientation")
  31. }
  32. func getScromData() {
  33. if Reachability.isConnectedToNetwork() {
  34. let stringData = id.description.components(separatedBy: "scrom/unzip/")
  35. viewModel.getScromData(fileId: stringData[1])
  36. } else {
  37. Alert.showInternetFailureAlert(on: self)
  38. }
  39. }
  40. func decodeToZip(base64String: String) {
  41. let data = Data(base64Encoded: base64String, options: .ignoreUnknownCharacters)
  42. if let data = data {
  43. let documentsPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0]
  44. let docName = "\(name).zip"
  45. let filePath = "\(documentsPath)/\(docName)"
  46. let url = URL(fileURLWithPath: filePath)
  47. try? data.write(to: url)
  48. unzipFile()
  49. }
  50. }
  51. func unzipFile() {
  52. do {
  53. let filePath = URL(string: "\(NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0])/\(name).zip")!
  54. let fileURL = try Zip.quickUnzipFile(filePath)
  55. let htmlFileURL = fileURL.appendingPathComponent("index.html")
  56. loadHTMLFile(htmlFileURL)
  57. } catch {
  58. print("Error unzipping file: \(error)")
  59. }
  60. }
  61. func loadHTMLFile(_ fileURL: URL) {
  62. let request = URLRequest(url: fileURL)
  63. htmlWebView.load(request)
  64. }
  65. /*
  66. // MARK: - Navigation
  67. // In a storyboard-based application, you will often want to do a little preparation before navigation
  68. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  69. // Get the new view controller using segue.destination.
  70. // Pass the selected object to the new view controller.
  71. }
  72. */
  73. @IBAction func backAction(_ sender: UIBarButtonItem) {
  74. self.navigationController?.popViewController(animated: true)
  75. }
  76. }
  77. extension ScromViewController: ScromProtocol {
  78. func startLoader() {
  79. ActivityIndicator.start()
  80. }
  81. func stopLoader() {
  82. ActivityIndicator.stop()
  83. }
  84. func showError(error: String) {
  85. self.view.makeToast(error)
  86. }
  87. func scromBase64(base64: String) {
  88. self.decodeToZip(base64String: base64)
  89. }
  90. }