DocumentPickerViewController.swift 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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, OCNetworkingDelegate {
  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. var hud : CCHud!
  46. // MARK: - IBOutlets
  47. @IBOutlet weak var tableView: UITableView!
  48. // MARK: - View Life Cycle
  49. override func viewDidLoad() {
  50. provider = providerSession.sharedInstance
  51. if let record = CCCoreData.getActiveAccount() {
  52. activeAccount = record.account!
  53. activePassword = record.password!
  54. activeUrl = record.url!
  55. activeUser = record.user!
  56. typeCloud = record.typeCloud!
  57. directoryUser = CCUtility.getDirectoryActiveUser(activeUser!, activeUrl: activeUrl!)
  58. if (localServerUrl == nil) {
  59. localServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeUrl!, typeCloud: typeCloud!)
  60. }
  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. // init Object
  74. CCNetworking.shared().settingDelegate(self)
  75. hud = CCHud.init(view: self.navigationController?.view)
  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. readFolder()
  79. }
  80. func readFolder() {
  81. let metadataNet = CCMetadataNet()
  82. metadataNet.action = actionReadFolder
  83. metadataNet.serverUrl = self.localServerUrl;
  84. metadataNet.selector = selectorReadFolder;
  85. metadataNet.date = nil;
  86. let oc : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser:activeUser , withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: true, activityIndicator: false)
  87. networkingOperationQueue.addOperation(oc)
  88. hud.visibleIndeterminateHud()
  89. }
  90. func readFolderFailure(_ metadataNet: CCMetadataNet!, message: String!, errorCode: Int) {
  91. hud.hideHud()
  92. print ("error")
  93. }
  94. func readFolderSuccess(_ metadataNet: CCMetadataNet!, permissions: String!, rev: String!, metadatas: [Any]!) {
  95. // remove all record
  96. let predicate = NSPredicate(format: "(account == %@) AND (directoryID == %@) AND ((session == NULL) OR (session == ''))", activeAccount!, metadataNet.directoryID)
  97. CCCoreData.deleteMetadata(with: predicate)
  98. for metadata in metadatas as! [CCMetadata] {
  99. // do not insert crypto file
  100. if CCUtility.isCryptoString(metadata.fileName) {
  101. continue
  102. }
  103. // plist + crypto = completed ?
  104. if CCUtility.isCryptoPlistString(metadata.fileName) && metadata.directory == false {
  105. var isCryptoComplete = false
  106. for completeMetadata in metadatas as! [CCMetadata] {
  107. if completeMetadata.fileName == CCUtility.trasformedFileNamePlist(inCrypto: metadata.fileName) {
  108. isCryptoComplete = true
  109. }
  110. }
  111. if isCryptoComplete == false {
  112. continue
  113. }
  114. }
  115. // Add record
  116. CCCoreData.add(metadata, activeAccount: activeAccount, activeUrl: activeUrl, typeCloud: typeCloud, context: nil)
  117. }
  118. // Get Datasource
  119. recordsTableMetadata = CCCoreData.getTableMetadata(with: NSPredicate(format: "(account == %@) AND (directoryID == %@)", activeAccount!, metadataNet.directoryID), fieldOrder: CCUtility.getOrderSettings()!, ascending: CCUtility.getAscendingSettings()) as? [TableMetadata]
  120. tableView.reloadData()
  121. hud.hideHud()
  122. }
  123. }
  124. // MARK: - UITableViewDelegate
  125. extension DocumentPickerViewController: UITableViewDelegate {
  126. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  127. return 60
  128. }
  129. }
  130. // MARK: - UITableViewDataSource
  131. extension DocumentPickerViewController: UITableViewDataSource {
  132. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  133. if (recordsTableMetadata == nil) {
  134. return 0
  135. } else {
  136. return recordsTableMetadata!.count
  137. }
  138. }
  139. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  140. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! recordMetadataCell
  141. cell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0)
  142. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  143. let metadata = CCCoreData.insertEntity(in: recordTableMetadata)!
  144. // File Image View
  145. let filePath = directoryUser!+"/"+metadata.fileID!+".ico"
  146. if (FileManager.default.fileExists(atPath: filePath)) {
  147. cell.fileImageView.image = UIImage(contentsOfFile: filePath)
  148. } else {
  149. cell.fileImageView.image = UIImage(named: metadata.iconName!)
  150. }
  151. // File Name
  152. cell.FileName.text = metadata.fileNamePrint!
  153. return cell
  154. }
  155. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  156. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  157. let nextViewController = self.storyboard?.instantiateViewController(withIdentifier: "DocumentPickerViewController") as! DocumentPickerViewController
  158. nextViewController.localServerUrl = CCUtility.stringAppendServerUrl(localServerUrl!, addServerUrl: recordTableMetadata!.fileName)
  159. self.navigationController?.pushViewController(nextViewController, animated: true)
  160. }
  161. }
  162. // MARK: - Class UITableViewCell
  163. class recordMetadataCell: UITableViewCell {
  164. @IBOutlet weak var fileImageView: UIImageView!
  165. @IBOutlet weak var FileName : UILabel!
  166. }
  167. // MARK: - Class providerSession
  168. class providerSession {
  169. class var sharedInstance : providerSession {
  170. struct Static {
  171. static let instance = providerSession()
  172. }
  173. return Static.instance
  174. }
  175. private init() {
  176. let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: capabilitiesGroups)
  177. let pathDB = dirGroup?.appendingPathComponent(appDatabase).appendingPathComponent("cryptocloud")
  178. MagicalRecord.setupCoreDataStackWithAutoMigratingSqliteStore(at: pathDB!)
  179. MagicalRecord.setLoggingLevel(MagicalRecordLoggingLevel.off)
  180. }
  181. }