DocumentPickerViewController.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  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 titleFolder : String?
  30. var activeAccount : String?
  31. var activeUrl : String?
  32. var activeUser : String?
  33. var activePassword : String?
  34. var activeUID : String?
  35. var activeAccessToken : String?
  36. var directoryUser : String?
  37. var typeCloud : String?
  38. var serverUrl : String?
  39. var localServerUrl : String?
  40. var thumbnailInLoading = [String: IndexPath]()
  41. lazy var networkingOperationQueue : OperationQueue = {
  42. var queue = OperationQueue()
  43. queue.name = netQueueName
  44. queue.maxConcurrentOperationCount = 10
  45. return queue
  46. }()
  47. var hud : CCHud!
  48. // MARK: - IBOutlets
  49. @IBOutlet weak var tableView: UITableView!
  50. // MARK: - View Life Cycle
  51. override func viewDidLoad() {
  52. provider = providerSession.sharedInstance
  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. } else {
  63. self.navigationItem.title = titleFolder
  64. }
  65. } else {
  66. // Close error no account return nil
  67. let deadlineTime = DispatchTime.now() + 0.1
  68. DispatchQueue.main.asyncAfter(deadline: deadlineTime) {
  69. let alert = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: NSLocalizedString("_no_active_account_", comment: ""), preferredStyle: .alert)
  70. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default) { action in
  71. self.dismissGrantingAccess(to: nil)
  72. })
  73. self.present(alert, animated: true, completion: nil)
  74. }
  75. return
  76. }
  77. // MARK: - init Object
  78. CCNetworking.shared().settingDelegate(self)
  79. hud = CCHud.init(view: self.navigationController?.view)
  80. // COLOR_SEPARATOR_TABLE
  81. self.tableView.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  82. readFolder()
  83. }
  84. // MARK: - Read folder
  85. func readFolder() {
  86. let metadataNet = CCMetadataNet.init(account: activeAccount)!
  87. metadataNet.action = actionReadFolder
  88. metadataNet.serverUrl = localServerUrl
  89. metadataNet.selector = selectorReadFolder
  90. let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: true, activityIndicator: false)
  91. networkingOperationQueue.addOperation(ocNetworking)
  92. hud.visibleIndeterminateHud()
  93. }
  94. func readFolderFailure(_ metadataNet: CCMetadataNet!, message: String!, errorCode: Int) {
  95. hud.hideHud()
  96. let alert = UIAlertController(title: NSLocalizedString("_error_", comment: ""), message: message, preferredStyle: .alert)
  97. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default) { action in
  98. self.dismissGrantingAccess(to: nil)
  99. })
  100. self.present(alert, animated: true, completion: nil)
  101. }
  102. func readFolderSuccess(_ metadataNet: CCMetadataNet!, permissions: String!, rev: String!, metadatas: [Any]!) {
  103. // remove all record
  104. let predicate = NSPredicate(format: "(account == '\(activeAccount!)') AND (directoryID == '\(metadataNet.directoryID!)') AND ((session == NULL) OR (session == ''))")
  105. CCCoreData.deleteMetadata(with: predicate)
  106. for metadata in metadatas as! [CCMetadata] {
  107. // do not insert crypto file
  108. if CCUtility.isCryptoString(metadata.fileName) {
  109. continue
  110. }
  111. // plist + crypto = completed ?
  112. if CCUtility.isCryptoPlistString(metadata.fileName) && metadata.directory == false {
  113. var isCryptoComplete = false
  114. for completeMetadata in metadatas as! [CCMetadata] {
  115. if completeMetadata.fileName == CCUtility.trasformedFileNamePlist(inCrypto: metadata.fileName) {
  116. isCryptoComplete = true
  117. }
  118. }
  119. if isCryptoComplete == false {
  120. continue
  121. }
  122. }
  123. // Add record
  124. CCCoreData.add(metadata, activeAccount: activeAccount, activeUrl: activeUrl, typeCloud: typeCloud, context: nil)
  125. }
  126. // Get Datasource
  127. recordsTableMetadata = CCCoreData.getTableMetadata(with: NSPredicate(format: "(account == '\(activeAccount!)') AND (directoryID == '\(metadataNet.directoryID!)')"), fieldOrder: CCUtility.getOrderSettings(), ascending: CCUtility.getAscendingSettings()) as? [TableMetadata]
  128. tableView.reloadData()
  129. hud.hideHud()
  130. }
  131. // MARK: - Download Thumbnail
  132. func downloadThumbnailFailure(_ metadataNet: CCMetadataNet!, message: String!, errorCode: Int) {
  133. NSLog("[LOG] Thumbnail Error \(metadataNet.fileName) \(message) (error \(errorCode))");
  134. }
  135. func downloadThumbnailSuccess(_ metadataNet: CCMetadataNet!) {
  136. if let indexPath = thumbnailInLoading[metadataNet.fileID] {
  137. let path = "\(directoryUser!)/\(metadataNet.fileID!).ico"
  138. if FileManager.default.fileExists(atPath: path) {
  139. if let cell = tableView.cellForRow(at: indexPath) as? recordMetadataCell {
  140. cell.fileImageView.image = UIImage(contentsOfFile: path)
  141. }
  142. }
  143. }
  144. }
  145. func downloadThumbnail(_ metadata : CCMetadata) {
  146. let metadataNet = CCMetadataNet.init(account: activeAccount)!
  147. metadataNet.action = actionDownloadThumbnail
  148. metadataNet.fileID = metadata.fileID
  149. metadataNet.fileName = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: localServerUrl, activeUrl: activeUrl, typeCloud: typeCloud)
  150. metadataNet.fileNameLocal = metadata.fileID;
  151. metadataNet.fileNamePrint = metadata.fileNamePrint;
  152. metadataNet.options = "m";
  153. metadataNet.selector = selectorDownloadThumbnail;
  154. metadataNet.serverUrl = localServerUrl
  155. let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: true, activityIndicator: false)
  156. networkingOperationQueue.addOperation(ocNetworking)
  157. }
  158. }
  159. // MARK: - UITableViewDelegate
  160. extension DocumentPickerViewController: UITableViewDelegate {
  161. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  162. return 60
  163. }
  164. }
  165. // MARK: - UITableViewDataSource
  166. extension DocumentPickerViewController: UITableViewDataSource {
  167. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  168. if (recordsTableMetadata == nil) {
  169. return 0
  170. } else {
  171. return recordsTableMetadata!.count
  172. }
  173. }
  174. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  175. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! recordMetadataCell
  176. cell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0)
  177. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  178. let metadata = CCCoreData.insertEntity(in: recordTableMetadata)!
  179. // File Image View
  180. let filePath = directoryUser! + "/" + metadata.fileID + ".ico"
  181. if (FileManager.default.fileExists(atPath: filePath)) {
  182. cell.fileImageView.image = UIImage(contentsOfFile: filePath)
  183. } else {
  184. cell.fileImageView.image = UIImage(named: metadata.iconName!)
  185. if metadata.thumbnailExists && metadata.directory == false {
  186. downloadThumbnail(metadata)
  187. thumbnailInLoading[metadata.fileID] = indexPath
  188. }
  189. }
  190. // File Name
  191. cell.FileName.text = metadata.fileNamePrint
  192. return cell
  193. }
  194. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  195. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  196. let nextViewController = self.storyboard?.instantiateViewController(withIdentifier: "DocumentPickerViewController") as! DocumentPickerViewController
  197. nextViewController.localServerUrl = CCUtility.stringAppendServerUrl(localServerUrl!, addServerUrl: recordTableMetadata!.fileName)
  198. nextViewController.titleFolder = recordTableMetadata?.fileNamePrint
  199. self.navigationController?.pushViewController(nextViewController, animated: true)
  200. }
  201. }
  202. // MARK: - Class UITableViewCell
  203. class recordMetadataCell: UITableViewCell {
  204. @IBOutlet weak var fileImageView: UIImageView!
  205. @IBOutlet weak var FileName : UILabel!
  206. }
  207. // MARK: - Class providerSession
  208. class providerSession {
  209. class var sharedInstance : providerSession {
  210. struct Static {
  211. static let instance = providerSession()
  212. }
  213. return Static.instance
  214. }
  215. private init() {
  216. let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: capabilitiesGroups)
  217. let pathDB = dirGroup?.appendingPathComponent(appDatabase).appendingPathComponent("cryptocloud")
  218. MagicalRecord.setupCoreDataStackWithAutoMigratingSqliteStore(at: pathDB!)
  219. MagicalRecord.setLoggingLevel(MagicalRecordLoggingLevel.off)
  220. }
  221. }