DocumentPickerViewController.swift 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  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. // if plist do not exists, download it
  126. if CCUtility.isCryptoPlistString(metadata.fileName) && FileManager.default.fileExists(atPath: "\(directoryUser!)/\(metadata.fileName!)") == false {
  127. let metadataNet = CCMetadataNet.init(account: activeAccount)!
  128. metadataNet.action = actionDownloadFile
  129. metadataNet.metadata = metadata
  130. metadataNet.downloadData = false
  131. metadataNet.downloadPlist = true
  132. metadataNet.selector = selectorLoadPlist
  133. metadataNet.serverUrl = localServerUrl
  134. metadataNet.session = download_session_foreground
  135. metadataNet.taskStatus = Int(taskStatusResume)
  136. let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: false, activityIndicator: false)
  137. networkingOperationQueue.addOperation(ocNetworking)
  138. }
  139. }
  140. // Get Datasource
  141. recordsTableMetadata = CCCoreData.getTableMetadata(with: NSPredicate(format: "(account == '\(activeAccount!)') AND (directoryID == '\(metadataNet.directoryID!)')"), fieldOrder: CCUtility.getOrderSettings(), ascending: CCUtility.getAscendingSettings()) as? [TableMetadata]
  142. tableView.reloadData()
  143. hud.hideHud()
  144. }
  145. // MARK: - Download
  146. func downloadFileFailure(_ fileID: String!, serverUrl: String!, selector: String!, message: String!, errorCode: Int) {
  147. NSLog("[LOG] Download Error \(fileID) \(message) (error \(errorCode))");
  148. }
  149. func downloadFileSuccess(_ fileID: String!, serverUrl: String!, selector: String!, selectorPost: String!) {
  150. if selector == selectorLoadPlist {
  151. let metadata = CCCoreData.getMetadataWithPreficate(NSPredicate(format: "(account == '\(activeAccount!)') AND (fileID == '\(fileID!)')"), context: nil)
  152. CCCoreData.downloadFilePlist(metadata, activeAccount: activeAccount, activeUrl: activeUrl, typeCloud: typeCloud, directoryUser: directoryUser)
  153. tableView.reloadData()
  154. }
  155. }
  156. // MARK: - Download Thumbnail
  157. func downloadThumbnailFailure(_ metadataNet: CCMetadataNet!, message: String!, errorCode: Int) {
  158. NSLog("[LOG] Thumbnail Error \(metadataNet.fileName) \(message) (error \(errorCode))");
  159. }
  160. func downloadThumbnailSuccess(_ metadataNet: CCMetadataNet!) {
  161. if let indexPath = thumbnailInLoading[metadataNet.fileID] {
  162. let path = "\(directoryUser!)/\(metadataNet.fileID!).ico"
  163. if FileManager.default.fileExists(atPath: path) {
  164. if let cell = tableView.cellForRow(at: indexPath) as? recordMetadataCell {
  165. cell.fileImageView.image = UIImage(contentsOfFile: path)
  166. }
  167. }
  168. }
  169. }
  170. func downloadThumbnail(_ metadata : CCMetadata) {
  171. let metadataNet = CCMetadataNet.init(account: activeAccount)!
  172. metadataNet.action = actionDownloadThumbnail
  173. metadataNet.fileID = metadata.fileID
  174. metadataNet.fileName = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: localServerUrl, activeUrl: activeUrl, typeCloud: typeCloud)
  175. metadataNet.fileNameLocal = metadata.fileID;
  176. metadataNet.fileNamePrint = metadata.fileNamePrint;
  177. metadataNet.options = "m";
  178. metadataNet.selector = selectorDownloadThumbnail;
  179. metadataNet.serverUrl = localServerUrl
  180. let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: false, activityIndicator: false)
  181. networkingOperationQueue.addOperation(ocNetworking)
  182. }
  183. }
  184. // MARK: - UITableViewDelegate
  185. extension DocumentPickerViewController: UITableViewDelegate {
  186. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  187. return 60
  188. }
  189. }
  190. // MARK: - UITableViewDataSource
  191. extension DocumentPickerViewController: UITableViewDataSource {
  192. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  193. if (recordsTableMetadata == nil) {
  194. return 0
  195. } else {
  196. return recordsTableMetadata!.count
  197. }
  198. }
  199. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  200. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! recordMetadataCell
  201. cell.separatorInset = UIEdgeInsetsMake(0, 60, 0, 0)
  202. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  203. let metadata = CCCoreData.insertEntity(in: recordTableMetadata)!
  204. // File Image View
  205. let filePath = directoryUser! + "/" + metadata.fileID + ".ico"
  206. if (FileManager.default.fileExists(atPath: filePath)) {
  207. cell.fileImageView.image = UIImage(contentsOfFile: filePath)
  208. } else {
  209. cell.fileImageView.image = UIImage(named: metadata.iconName!)
  210. if metadata.thumbnailExists && metadata.directory == false {
  211. downloadThumbnail(metadata)
  212. thumbnailInLoading[metadata.fileID] = indexPath
  213. }
  214. }
  215. // File Name
  216. cell.FileName.text = metadata.fileNamePrint
  217. return cell
  218. }
  219. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  220. let recordTableMetadata = recordsTableMetadata?[(indexPath as NSIndexPath).row]
  221. tableView.deselectRow(at: indexPath, animated: true)
  222. if recordTableMetadata!.directory == 0 {
  223. // Download file
  224. } else {
  225. var dir : String! = recordTableMetadata!.fileName
  226. let nextViewController = self.storyboard?.instantiateViewController(withIdentifier: "DocumentPickerViewController") as! DocumentPickerViewController
  227. if recordTableMetadata?.cryptated == 1 {
  228. dir = CCUtility.trasformedFileNamePlist(inCrypto: recordTableMetadata!.fileName)
  229. }
  230. nextViewController.localServerUrl = CCUtility.stringAppendServerUrl(localServerUrl!, addServerUrl: dir)
  231. nextViewController.titleFolder = recordTableMetadata?.fileNamePrint
  232. self.navigationController?.pushViewController(nextViewController, animated: true)
  233. }
  234. }
  235. }
  236. // MARK: - Class UITableViewCell
  237. class recordMetadataCell: UITableViewCell {
  238. @IBOutlet weak var fileImageView: UIImageView!
  239. @IBOutlet weak var FileName : UILabel!
  240. }
  241. // MARK: - Class providerSession
  242. class providerSession {
  243. class var sharedInstance : providerSession {
  244. struct Static {
  245. static let instance = providerSession()
  246. }
  247. return Static.instance
  248. }
  249. private init() {
  250. let dirGroup = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: capabilitiesGroups)
  251. let pathDB = dirGroup?.appendingPathComponent(appDatabase).appendingPathComponent("cryptocloud")
  252. MagicalRecord.setupCoreDataStackWithAutoMigratingSqliteStore(at: pathDB!)
  253. MagicalRecord.setLoggingLevel(MagicalRecordLoggingLevel.off)
  254. }
  255. }