DocumentPickerViewController.swift 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. localServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeUrl!, typeCloud: typeCloud!)
  60. directoryUser = CCUtility.getDirectoryActiveUser(activeUser!, activeUrl: activeUrl!)
  61. } else {
  62. // Close error no account return nil
  63. let deadlineTime = DispatchTime.now() + 0.1
  64. DispatchQueue.main.asyncAfter(deadline: deadlineTime) {
  65. let alert = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_no_active_account_", comment: ""), preferredStyle: .alert)
  66. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default) { action in
  67. self.dismissGrantingAccess(to: nil)
  68. })
  69. self.present(alert, animated: true, completion: nil)
  70. }
  71. return
  72. }
  73. CCNetworking.shared().settingDelegate(self)
  74. }
  75. override func viewWillAppear(_ animated: Bool) {
  76. super.viewWillAppear(animated)
  77. let directoryID : String? = CCCoreData.getDirectoryID(fromServerUrl: localServerUrl!, activeAccount: activeAccount!)
  78. let predicate = NSPredicate(format: "(account == %@) AND (directoryID == %@)", activeAccount!, directoryID!)
  79. recordsTableMetadata = CCCoreData.getTableMetadata(with: predicate, fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings()) as! [TableMetadata]
  80. tableView.reloadData()
  81. }
  82. }
  83. // MARK: - Class UITableViewCell
  84. class recordMetadataCell: UITableViewCell {
  85. @IBOutlet weak var fileImageView: UIImageView!
  86. }
  87. // MARK: - UITableViewDataSource
  88. extension DocumentPickerViewController: UITableViewDataSource {
  89. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  90. return recordsTableMetadata.count
  91. }
  92. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  93. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! recordMetadataCell
  94. let recordMetadata = recordsTableMetadata[(indexPath as NSIndexPath).row]
  95. let metadata = CCCoreData.insertEntity(in: recordMetadata)!
  96. // File Image View
  97. let filePath = directoryUser!+"/"+metadata.fileID!+".ico"
  98. if (FileManager.default.fileExists(atPath: filePath)) {
  99. cell.fileImageView.image = UIImage(contentsOfFile: filePath)
  100. } else {
  101. cell.fileImageView.image = UIImage(named: metadata.iconName!)
  102. }
  103. return cell
  104. }
  105. }