DocumentPickerViewController.swift 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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 provider : providerSession?
  27. var metadata : CCMetadata?
  28. var recordsTableMetadata : [TableMetadata]?
  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. provider = providerSession.sharedInstance
  50. if let record = CCCoreData.getActiveAccount() {
  51. activeAccount = record.account!
  52. activePassword = record.password!
  53. activeUrl = record.url!
  54. activeUser = record.user!
  55. typeCloud = record.typeCloud!
  56. directoryUser = CCUtility.getDirectoryActiveUser(activeUser!, activeUrl: activeUrl!)
  57. if (localServerUrl == nil) {
  58. localServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeUrl!, typeCloud: typeCloud!)
  59. }
  60. } else {
  61. // Close error no account return nil
  62. let deadlineTime = DispatchTime.now() + 0.1
  63. DispatchQueue.main.asyncAfter(deadline: deadlineTime) {
  64. let alert = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_no_active_account_", comment: ""), preferredStyle: .alert)
  65. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default) { action in
  66. self.dismissGrantingAccess(to: nil)
  67. })
  68. self.present(alert, animated: true, completion: nil)
  69. }
  70. return
  71. }
  72. CCNetworking.shared().settingDelegate(self)
  73. // COLOR_SEPARATOR_TABLE
  74. self.tableView.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  75. }
  76. override func viewWillAppear(_ animated: Bool) {
  77. super.viewWillAppear(animated)
  78. let directoryID : String? = CCCoreData.getDirectoryID(fromServerUrl: localServerUrl!, activeAccount: activeAccount!)
  79. let predicate = NSPredicate(format: "(account == %@) AND (directoryID == %@)", activeAccount!, directoryID!)
  80. recordsTableMetadata = CCCoreData.getTableMetadata(with: predicate, fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings()) as? [TableMetadata]
  81. tableView.reloadData()
  82. }
  83. }
  84. // MARK: - UITableViewDelegate
  85. extension DocumentPickerViewController: UITableViewDelegate {
  86. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  87. return 60
  88. }
  89. }
  90. // MARK: - UITableViewDataSource
  91. extension DocumentPickerViewController: UITableViewDataSource {
  92. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  93. if (recordsTableMetadata == nil) {
  94. return 0
  95. } else {
  96. return recordsTableMetadata!.count
  97. }
  98. }
  99. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  100. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! recordMetadataCell
  101. cell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0)
  102. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  103. let metadata = CCCoreData.insertEntity(in: recordTableMetadata)!
  104. // File Image View
  105. let filePath = directoryUser!+"/"+metadata.fileID!+".ico"
  106. if (FileManager.default.fileExists(atPath: filePath)) {
  107. cell.fileImageView.image = UIImage(contentsOfFile: filePath)
  108. } else {
  109. cell.fileImageView.image = UIImage(named: metadata.iconName!)
  110. }
  111. // File Name
  112. cell.FileName.text = metadata.fileNamePrint!
  113. return cell
  114. }
  115. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  116. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  117. let nextViewController = self.storyboard?.instantiateViewController(withIdentifier: "DocumentPickerViewController") as! DocumentPickerViewController
  118. nextViewController.localServerUrl = CCUtility.stringAppendServerUrl(localServerUrl!, addServerUrl: recordTableMetadata!.fileName)
  119. self.navigationController?.pushViewController(nextViewController, animated: true)
  120. }
  121. }
  122. // MARK: - Class UITableViewCell
  123. class recordMetadataCell: UITableViewCell {
  124. @IBOutlet weak var fileImageView: UIImageView!
  125. @IBOutlet weak var FileName : UILabel!
  126. }
  127. // MARK: - Class providerSession
  128. class providerSession {
  129. class var sharedInstance : providerSession {
  130. struct Static {
  131. static let instance = providerSession()
  132. }
  133. return Static.instance
  134. }
  135. private init() {
  136. let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: capabilitiesGroups)
  137. let pathDB = dirGroup?.appendingPathComponent(appDatabase).appendingPathComponent("cryptocloud")
  138. MagicalRecord.setupCoreDataStackWithAutoMigratingSqliteStore(at: pathDB!)
  139. MagicalRecord.setLoggingLevel(MagicalRecordLoggingLevel.off)
  140. }
  141. }