DocumentPickerViewController.swift 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. //
  2. // DocumentPickerViewController.swift
  3. // Picker
  4. //
  5. // Created by Marino Faggiana on 27/12/16.
  6. // Copyright © 2016 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCNetworkingDelegate {
  25. // MARK: - Properties
  26. var metadata : CCMetadata?
  27. var recordsTableMetadata : [TableMetadata]?
  28. let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: capabilitiesGroups)
  29. var activeAccount : String?
  30. var activeUrl : String?
  31. var activeUser : String?
  32. var activePassword : String?
  33. var activeUID : String?
  34. var activeAccessToken : String?
  35. var directoryUser : String?
  36. var typeCloud : String?
  37. var serverUrl : String?
  38. var localServerUrl : String?
  39. lazy var networkingOperationQueue : OperationQueue = {
  40. var queue = OperationQueue()
  41. queue.name = "it.twsweb.cryptocloud.queue"
  42. queue.maxConcurrentOperationCount = 1
  43. return queue
  44. }()
  45. // MARK: - IBOutlets
  46. @IBOutlet weak var tableView: UITableView!
  47. // MARK: - View Life Cycle
  48. override func viewDidLoad() {
  49. let pathDB = dirGroup?.appendingPathComponent(appDatabase).appendingPathComponent("cryptocloud")
  50. print(pathDB!)
  51. MagicalRecord.setupCoreDataStackWithAutoMigratingSqliteStore(at: pathDB!)
  52. MagicalRecord.setLoggingLevel(MagicalRecordLoggingLevel.off)
  53. if let record = CCCoreData.getActiveAccount() {
  54. activeAccount = record.account!
  55. activePassword = record.password!
  56. activeUrl = record.url!
  57. activeUser = record.user!
  58. typeCloud = record.typeCloud!
  59. directoryUser = CCUtility.getDirectoryActiveUser(activeUser!, activeUrl: activeUrl!)
  60. if (localServerUrl == nil) {
  61. localServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeUrl!, typeCloud: typeCloud!)
  62. }
  63. } else {
  64. // Close error no account return nil
  65. let deadlineTime = DispatchTime.now() + 0.1
  66. DispatchQueue.main.asyncAfter(deadline: deadlineTime) {
  67. let alert = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_no_active_account_", comment: ""), preferredStyle: .alert)
  68. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default) { action in
  69. self.dismissGrantingAccess(to: nil)
  70. })
  71. self.present(alert, animated: true, completion: nil)
  72. }
  73. return
  74. }
  75. CCNetworking.shared().settingDelegate(self)
  76. // COLOR_SEPARATOR_TABLE
  77. self.tableView.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  78. }
  79. override func viewWillAppear(_ animated: Bool) {
  80. super.viewWillAppear(animated)
  81. let directoryID : String? = CCCoreData.getDirectoryID(fromServerUrl: localServerUrl!, activeAccount: activeAccount!)
  82. let predicate = NSPredicate(format: "(account == %@) AND (directoryID == %@)", activeAccount!, directoryID!)
  83. recordsTableMetadata = CCCoreData.getTableMetadata(with: predicate, fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings()) as? [TableMetadata]
  84. tableView.reloadData()
  85. }
  86. }
  87. // MARK: - UITableViewDelegate
  88. extension DocumentPickerViewController: UITableViewDelegate {
  89. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  90. return 60
  91. }
  92. }
  93. // MARK: - UITableViewDataSource
  94. extension DocumentPickerViewController: UITableViewDataSource {
  95. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  96. if (recordsTableMetadata == nil) {
  97. return 0
  98. } else {
  99. return recordsTableMetadata!.count
  100. }
  101. }
  102. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  103. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! recordMetadataCell
  104. cell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0)
  105. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  106. let metadata = CCCoreData.insertEntity(in: recordTableMetadata)!
  107. // File Image View
  108. let filePath = directoryUser!+"/"+metadata.fileID!+".ico"
  109. if (FileManager.default.fileExists(atPath: filePath)) {
  110. cell.fileImageView.image = UIImage(contentsOfFile: filePath)
  111. } else {
  112. cell.fileImageView.image = UIImage(named: metadata.iconName!)
  113. }
  114. // File Name
  115. cell.FileName.text = metadata.fileNamePrint!
  116. return cell
  117. }
  118. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  119. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  120. let nextViewController = self.storyboard?.instantiateViewController(withIdentifier: "DocumentPickerViewController") as! DocumentPickerViewController
  121. nextViewController.localServerUrl = CCUtility.stringAppendServerUrl(localServerUrl!, addServerUrl: recordTableMetadata!.fileName)
  122. self.navigationController?.pushViewController(nextViewController, animated: true)
  123. }
  124. }
  125. // MARK: - Class UITableViewCell
  126. class recordMetadataCell: UITableViewCell {
  127. @IBOutlet weak var fileImageView: UIImageView!
  128. @IBOutlet weak var FileName : UILabel!
  129. }