NCMainCommon.swift 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350
  1. //
  2. // NCMainCommon.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 18/07/18.
  6. // Copyright © 2018 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  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 Foundation
  24. import TLPhotoPicker
  25. class NCMainCommon: NSObject, PhotoEditorDelegate {
  26. @objc static let sharedInstance: NCMainCommon = {
  27. let instance = NCMainCommon()
  28. return instance
  29. }()
  30. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. var metadata: tableMetadata?
  32. lazy var operationQueueReloadDatasource: OperationQueue = {
  33. let queue = OperationQueue()
  34. queue.name = "Reload main datasource queue"
  35. queue.maxConcurrentOperationCount = 1
  36. return queue
  37. }()
  38. //MARK: -
  39. @objc func triggerProgressTask(_ notification: Notification, sectionDataSourceFileIDIndexPath: NSDictionary, tableView: UITableView, viewController: UIViewController, serverUrlViewController: String?) {
  40. if viewController.viewIfLoaded?.window == nil {
  41. return
  42. }
  43. guard let dic = notification.userInfo else {
  44. return
  45. }
  46. let account = dic["account"] as? NSString ?? ""
  47. let fileID = dic["fileID"] as? NSString ?? ""
  48. let serverUrl = dic["serverUrl"] as? String ?? ""
  49. let status = dic["status"] as? Int ?? Int(k_taskIdentifierDone)
  50. let progress = dic["progress"] as? CGFloat ?? 0
  51. let totalBytes = dic["totalBytes"] as? Double ?? 0
  52. let totalBytesExpected = dic["totalBytesExpected"] as? Double ?? 0
  53. if (account != self.appDelegate.activeAccount! as NSString) && !(viewController is CCTransfers) {
  54. return
  55. }
  56. if serverUrlViewController != nil && serverUrlViewController! != serverUrl {
  57. return
  58. }
  59. appDelegate.listProgressMetadata.setObject([progress as NSNumber, totalBytes as NSNumber, totalBytesExpected as NSNumber], forKey: fileID)
  60. guard let indexPath = sectionDataSourceFileIDIndexPath.object(forKey: fileID) else {
  61. return
  62. }
  63. if isValidIndexPath(indexPath as! IndexPath, view: tableView) {
  64. if let cell = tableView.cellForRow(at: indexPath as! IndexPath) as? CCCellMainTransfer {
  65. var image = ""
  66. if status == k_metadataStatusInDownload {
  67. image = "↓"
  68. } else if status == k_metadataStatusInUpload {
  69. image = "↑"
  70. }
  71. cell.labelInfoFile.text = CCUtility.transformedSize(totalBytesExpected) + " - " + image + CCUtility.transformedSize(totalBytes)
  72. cell.transferButton.progress = progress
  73. }
  74. }
  75. }
  76. @objc func cancelTransferMetadata(_ metadata: tableMetadata, reloadDatasource: Bool) {
  77. var actionReloadDatasource = k_action_NULL
  78. if metadata.session.count == 0 {
  79. return
  80. }
  81. guard let session = CCNetworking.shared().getSessionfromSessionDescription(metadata.session) else {
  82. return
  83. }
  84. // SESSION EXTENSION
  85. if metadata.session == k_download_session_extension || metadata.session == k_upload_session_extension {
  86. if (metadata.session == k_upload_session_extension) {
  87. do {
  88. try FileManager.default.removeItem(atPath: CCUtility.getDirectoryProviderStorageFileID(metadata.fileID))
  89. } catch { }
  90. NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  91. actionReloadDatasource = k_action_DEL
  92. } else {
  93. NCManageDatabase.sharedInstance.setMetadataSession("", sessionError: "", sessionSelector: "", sessionTaskIdentifier: Int(k_taskIdentifierDone), status: Int(k_metadataStatusNormal), predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  94. actionReloadDatasource = k_action_MOD
  95. }
  96. self.reloadDatasource(ServerUrl: metadata.serverUrl, fileID: metadata.fileID, action: actionReloadDatasource)
  97. return
  98. }
  99. session.getTasksWithCompletionHandler { (dataTasks, uploadTasks, downloadTasks) in
  100. var cancel = false
  101. // DOWNLOAD
  102. if metadata.session.count > 0 && metadata.session.contains("download") {
  103. for task in downloadTasks {
  104. if task.taskIdentifier == metadata.sessionTaskIdentifier {
  105. task.cancel()
  106. cancel = true
  107. }
  108. }
  109. if cancel == false {
  110. NCManageDatabase.sharedInstance.setMetadataSession("", sessionError: "", sessionSelector: "", sessionTaskIdentifier: Int(k_taskIdentifierDone), status: Int(k_metadataStatusNormal), predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  111. }
  112. actionReloadDatasource = k_action_MOD
  113. }
  114. // UPLOAD
  115. if metadata.session.count > 0 && metadata.session.contains("upload") {
  116. for task in uploadTasks {
  117. if task.taskIdentifier == metadata.sessionTaskIdentifier {
  118. task.cancel()
  119. cancel = true
  120. }
  121. }
  122. if cancel == false {
  123. do {
  124. try FileManager.default.removeItem(atPath: CCUtility.getDirectoryProviderStorageFileID(metadata.fileID))
  125. }
  126. catch { }
  127. NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  128. }
  129. actionReloadDatasource = k_action_DEL
  130. }
  131. DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
  132. self.reloadDatasource(ServerUrl: metadata.serverUrl, fileID: metadata.fileID, action: actionReloadDatasource)
  133. }
  134. }
  135. }
  136. @objc func cancelAllTransfer(view: UIView) {
  137. // Delete k_metadataStatusWaitUpload OR k_metadataStatusUploadError
  138. NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "status == %d OR status == %d", appDelegate.activeAccount, k_metadataStatusWaitUpload, k_metadataStatusUploadError))
  139. NCUtility.sharedInstance.startActivityIndicator(view: view, bottom: 0)
  140. DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
  141. if let metadatas = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "status != %d AND status != %d", k_metadataStatusNormal, k_metadataStatusHide), sorted: "fileName", ascending: true) {
  142. for metadata in metadatas {
  143. // Modify
  144. if (metadata.status == k_metadataStatusWaitDownload || metadata.status == k_metadataStatusDownloadError) {
  145. metadata.session = ""
  146. metadata.sessionSelector = ""
  147. metadata.status = Int(k_metadataStatusNormal)
  148. _ = NCManageDatabase.sharedInstance.addMetadata(metadata)
  149. }
  150. // Cancel Task
  151. if metadata.status == k_metadataStatusDownloading || metadata.status == k_metadataStatusUploading {
  152. self.cancelTransferMetadata(metadata, reloadDatasource: false)
  153. }
  154. }
  155. }
  156. }
  157. DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
  158. self.reloadDatasource(ServerUrl: nil, fileID: nil, action: k_action_NULL)
  159. NCUtility.sharedInstance.stopActivityIndicator()
  160. }
  161. }
  162. //MARK: -
  163. func collectionViewCellForItemAt(_ indexPath: IndexPath, collectionView: UICollectionView, cell: UICollectionViewCell, metadata: tableMetadata, metadataFolder: tableMetadata?, serverUrl: String, isEditMode: Bool, selectFileID: [String], autoUploadFileName: String, autoUploadDirectory: String, hideButtonMore: Bool, source: UIViewController) {
  164. var image: UIImage?
  165. var imagePreview = false
  166. if metadata.iconName.count > 0 {
  167. image = UIImage.init(named: metadata.iconName)
  168. } else {
  169. image = UIImage.init(named: "file")
  170. }
  171. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileName)) {
  172. image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileName))
  173. imagePreview = true
  174. }
  175. // Download preview
  176. NCNetworkingMain.sharedInstance.downloadThumbnail(with: metadata, view: collectionView, indexPath: indexPath)
  177. // Share
  178. let sharesLink = appDelegate.sharesLink.object(forKey: serverUrl + metadata.fileName)
  179. let sharesUserAndGroup = appDelegate.sharesUserAndGroup.object(forKey: serverUrl + metadata.fileName)
  180. var isShare = false
  181. var isMounted = false
  182. if metadataFolder != nil {
  183. isShare = metadata.permissions.contains(k_permission_shared) && !metadataFolder!.permissions.contains(k_permission_shared)
  184. isMounted = metadata.permissions.contains(k_permission_mounted) && !metadataFolder!.permissions.contains(k_permission_mounted)
  185. }
  186. if cell is NCListCell {
  187. let cell = cell as! NCListCell
  188. cell.delegate = source as? NCListCellDelegate
  189. cell.fileID = metadata.fileID
  190. cell.indexPath = indexPath
  191. cell.labelTitle.text = metadata.fileNameView
  192. cell.imageStatus.image = nil
  193. cell.imageLocal.image = nil
  194. cell.imageFavorite.image = nil
  195. cell.imageShare.image = nil
  196. cell.hide(buttonMore: hideButtonMore, hideImageShare: true)
  197. if metadata.directory {
  198. if metadata.e2eEncrypted {
  199. image = UIImage.init(named: "folderEncrypted")
  200. } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
  201. image = UIImage.init(named: "folderAutomaticUpload")
  202. } else if isShare {
  203. image = UIImage.init(named: "folder_shared_with_me")
  204. } else if isMounted {
  205. image = UIImage.init(named: "folder_external")
  206. } else if (sharesUserAndGroup != nil) {
  207. image = UIImage.init(named: "folder_shared_with_me")
  208. } else if (sharesLink != nil) {
  209. image = UIImage.init(named: "folder_public")
  210. } else {
  211. image = UIImage.init(named: "folder")
  212. }
  213. cell.imageItem.image = CCGraphics.changeThemingColorImage(image, multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  214. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
  215. let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
  216. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl))
  217. // Status image: passcode
  218. if tableDirectory != nil && tableDirectory!.lock && CCUtility.getBlockCode() != nil {
  219. cell.imageStatus.image = UIImage.init(named: "passcode")
  220. }
  221. // Local image: offline
  222. if tableDirectory != nil && tableDirectory!.offline {
  223. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  224. }
  225. } else {
  226. cell.imageItem.image = image
  227. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + ", " + CCUtility.transformedSize(metadata.size)
  228. // image Local
  229. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  230. if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.fileID, fileNameView: metadata.fileNameView) {
  231. if tableLocalFile!.offline { cell.imageLocal.image = UIImage.init(named: "offlineFlag") }
  232. else { cell.imageLocal.image = UIImage.init(named: "local") }
  233. }
  234. // Share
  235. if (isShare) {
  236. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  237. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  238. } else if (isMounted) {
  239. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "shareMounted"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  240. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  241. } else if (sharesLink != nil) {
  242. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "sharebylink"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  243. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  244. } else if (sharesUserAndGroup != nil) {
  245. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  246. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  247. }
  248. }
  249. // image Favorite
  250. if metadata.favorite {
  251. cell.imageFavorite.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), multiplier: 2, color: NCBrandColor.sharedInstance.yellowFavorite)
  252. }
  253. if isEditMode {
  254. cell.imageItemLeftConstraint.constant = 45
  255. cell.imageSelect.isHidden = false
  256. if selectFileID.contains(metadata.fileID) {
  257. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedYes"), multiplier: 2, color: NCBrandColor.sharedInstance.brand)
  258. cell.backgroundView = NCUtility.sharedInstance.cellBlurEffect(with: cell.bounds)
  259. } else {
  260. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedNo"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  261. cell.backgroundView = nil
  262. }
  263. } else {
  264. cell.imageItemLeftConstraint.constant = 10
  265. cell.imageSelect.isHidden = true
  266. cell.backgroundView = nil
  267. }
  268. // Remove last separator
  269. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
  270. cell.separator.isHidden = true
  271. } else {
  272. cell.separator.isHidden = false
  273. }
  274. } else if cell is NCGridCell {
  275. let cell = cell as! NCGridCell
  276. cell.delegate = source as? NCGridCellDelegate
  277. cell.fileID = metadata.fileID
  278. cell.indexPath = indexPath
  279. cell.labelTitle.text = metadata.fileNameView
  280. cell.imageStatus.image = nil
  281. cell.imageLocal.image = nil
  282. cell.imageFavorite.image = nil
  283. cell.imageShare.image = nil
  284. cell.hide(buttonMore: hideButtonMore, hideImageShare: true)
  285. if metadata.directory {
  286. if metadata.e2eEncrypted {
  287. image = UIImage.init(named: "folderEncrypted")
  288. } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
  289. image = UIImage.init(named: "folderAutomaticUpload")
  290. } else if isShare {
  291. image = UIImage.init(named: "folder_shared_with_me")
  292. } else if isMounted {
  293. image = UIImage.init(named: "folder_external")
  294. } else if (sharesUserAndGroup != nil) {
  295. image = UIImage.init(named: "folder_shared_with_me")
  296. } else if (sharesLink != nil) {
  297. image = UIImage.init(named: "folder_public")
  298. } else {
  299. image = UIImage.init(named: "folder")
  300. }
  301. cell.imageItem.image = CCGraphics.changeThemingColorImage(image, width: image!.size.width*6, height: image!.size.height*6, scale: 3.0, color: NCBrandColor.sharedInstance.brandElement)
  302. cell.imageItem.contentMode = .center
  303. let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
  304. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl))
  305. // Status image: passcode
  306. if tableDirectory != nil && tableDirectory!.lock && CCUtility.getBlockCode() != nil {
  307. cell.imageStatus.image = UIImage.init(named: "passcode")
  308. }
  309. // Local image: offline
  310. if tableDirectory != nil && tableDirectory!.offline {
  311. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  312. }
  313. } else {
  314. cell.imageItem.image = image
  315. if imagePreview == false {
  316. let width = cell.imageItem.image!.size.width * 2
  317. //let scale = UIScreen.main.scale
  318. cell.imageItem.image = NCUtility.sharedInstance.resizeImage(image: image!, newWidth: width)
  319. cell.imageItem.contentMode = .center
  320. }
  321. // image Local
  322. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  323. if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.fileID, fileNameView: metadata.fileNameView) {
  324. if tableLocalFile!.offline { cell.imageLocal.image = UIImage.init(named: "offlineFlag") }
  325. else { cell.imageLocal.image = UIImage.init(named: "local") }
  326. }
  327. // Share
  328. if (isShare) {
  329. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  330. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  331. } else if (isMounted) {
  332. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "shareMounted"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  333. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  334. } else if (sharesLink != nil) {
  335. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "sharebylink"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  336. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  337. } else if (sharesUserAndGroup != nil) {
  338. cell.imageShare.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  339. cell.hide(buttonMore: hideButtonMore, hideImageShare: false)
  340. }
  341. }
  342. // image Favorite
  343. if metadata.favorite {
  344. cell.imageFavorite.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), multiplier: 2, color: NCBrandColor.sharedInstance.yellowFavorite)
  345. }
  346. if isEditMode {
  347. cell.imageSelect.isHidden = false
  348. if selectFileID.contains(metadata.fileID) {
  349. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedYes"), multiplier: 2, color: UIColor.white)
  350. cell.backgroundView = NCUtility.sharedInstance.cellBlurEffect(with: cell.bounds)
  351. } else {
  352. cell.imageSelect.isHidden = true
  353. cell.backgroundView = nil
  354. }
  355. } else {
  356. cell.imageSelect.isHidden = true
  357. cell.backgroundView = nil
  358. }
  359. } else if cell is NCGridMediaCell {
  360. let cell = cell as! NCGridMediaCell
  361. cell.fileID = metadata.fileID
  362. cell.indexPath = indexPath
  363. cell.imageStatus.image = nil
  364. cell.imageLocal.image = nil
  365. cell.imageFavorite.image = nil
  366. cell.imageItem.image = image
  367. if imagePreview == false {
  368. let width = cell.imageItem.image!.size.width * 2
  369. //let scale = UIScreen.main.scale
  370. cell.imageItem.image = NCUtility.sharedInstance.resizeImage(image: image!, newWidth: width)
  371. cell.imageItem.contentMode = .center
  372. }
  373. // image Local
  374. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  375. if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.fileID, fileNameView: metadata.fileNameView) {
  376. if tableLocalFile!.offline { cell.imageLocal.image = UIImage.init(named: "offlineFlag") }
  377. else { cell.imageLocal.image = UIImage.init(named: "local") }
  378. }
  379. // image Favorite
  380. if metadata.favorite {
  381. cell.imageFavorite.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), multiplier: 2, color: NCBrandColor.sharedInstance.yellowFavorite)
  382. }
  383. if isEditMode {
  384. cell.imageSelect.isHidden = false
  385. if selectFileID.contains(metadata.fileID) {
  386. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedYes"), multiplier: 2, color: UIColor.white)
  387. cell.backgroundView = NCUtility.sharedInstance.cellBlurEffect(with: cell.bounds)
  388. } else {
  389. cell.imageSelect.isHidden = true
  390. cell.backgroundView = nil
  391. }
  392. } else {
  393. cell.imageSelect.isHidden = true
  394. cell.backgroundView = nil
  395. }
  396. }
  397. }
  398. @objc func cellForRowAtIndexPath(_ indexPath: IndexPath, tableView: UITableView ,metadata: tableMetadata, metadataFolder: tableMetadata?, serverUrl: String, autoUploadFileName: String, autoUploadDirectory: String) -> UITableViewCell {
  399. // Create File System
  400. if metadata.directory {
  401. CCUtility.getDirectoryProviderStorageFileID(metadata.fileID)
  402. } else {
  403. CCUtility.getDirectoryProviderStorageFileID(metadata.fileID, fileNameView: metadata.fileNameView)
  404. }
  405. // CCCell
  406. if metadata.status == k_metadataStatusNormal {
  407. // NORMAL
  408. let cell = tableView.dequeueReusableCell(withIdentifier: "CellMain", for: indexPath) as! CCCellMain
  409. cell.separatorInset = UIEdgeInsets.init(top: 0, left: 60, bottom: 0, right: 0)
  410. cell.accessoryType = UITableViewCell.AccessoryType.none
  411. cell.file.image = nil
  412. cell.status.image = nil
  413. cell.favorite.image = nil
  414. cell.shared.image = nil
  415. cell.local.image = nil
  416. cell.imageTitleSegue = nil
  417. cell.shared.isUserInteractionEnabled = false
  418. cell.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  419. // change color selection
  420. let selectionColor = UIView()
  421. selectionColor.backgroundColor = NCBrandColor.sharedInstance.getColorSelectBackgrond()
  422. cell.selectedBackgroundView = selectionColor
  423. cell.tintColor = NCBrandColor.sharedInstance.brandElement
  424. cell.labelTitle.textColor = UIColor.black
  425. cell.labelTitle.text = metadata.fileNameView
  426. // Download preview
  427. NCNetworkingMain.sharedInstance.downloadThumbnail(with: metadata, view: tableView, indexPath: indexPath)
  428. // Share
  429. let sharesLink = appDelegate.sharesLink.object(forKey: serverUrl + metadata.fileName)
  430. let sharesUserAndGroup = appDelegate.sharesUserAndGroup.object(forKey: serverUrl + metadata.fileName)
  431. var isShare = false
  432. var isMounted = false
  433. if metadataFolder != nil {
  434. isShare = metadata.permissions.contains(k_permission_shared) && !metadataFolder!.permissions.contains(k_permission_shared)
  435. isMounted = metadata.permissions.contains(k_permission_mounted) && !metadataFolder!.permissions.contains(k_permission_mounted)
  436. }
  437. if metadata.directory {
  438. // lable Info
  439. cell.labelInfoFile.text = CCUtility.dateDiff(metadata.date as Date)
  440. // File Image & Image Title Segue
  441. if metadata.e2eEncrypted {
  442. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderEncrypted"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  443. cell.imageTitleSegue = UIImage.init(named: "lock")
  444. } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
  445. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderAutomaticUpload"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  446. cell.imageTitleSegue = UIImage.init(named: "media")
  447. } else if isShare {
  448. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_shared_with_me"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  449. cell.imageTitleSegue = UIImage.init(named: "share")
  450. } else if isMounted {
  451. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_external"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  452. cell.imageTitleSegue = UIImage.init(named: "shareMounted")
  453. } else if (sharesUserAndGroup != nil) {
  454. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_shared_with_me"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  455. cell.imageTitleSegue = UIImage.init(named: "share")
  456. } else if (sharesLink != nil) {
  457. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_public"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  458. cell.imageTitleSegue = UIImage.init(named: "sharebylink")
  459. } else {
  460. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  461. }
  462. let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
  463. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.activeAccount, lockServerUrl))
  464. // Local image: offline
  465. if tableDirectory != nil && tableDirectory!.offline {
  466. cell.local.image = UIImage.init(named: "offlineFlag")
  467. }
  468. // Status image: passcode
  469. if tableDirectory != nil && tableDirectory!.lock && CCUtility.getBlockCode() != nil {
  470. cell.status.image = UIImage.init(named: "passcode")
  471. }
  472. } else {
  473. let iconFileExists = FileManager.default.fileExists(atPath: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileNameView))
  474. // Lable Info
  475. cell.labelInfoFile.text = CCUtility.dateDiff(metadata.date as Date) + ", " + CCUtility.transformedSize(metadata.size)
  476. // File Image
  477. if iconFileExists {
  478. cell.file.image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileNameView))
  479. } else {
  480. if metadata.iconName.count > 0 {
  481. cell.file.image = UIImage.init(named: metadata.iconName)
  482. } else {
  483. cell.file.image = UIImage.init(named: "file")
  484. }
  485. }
  486. // Local Image - Offline
  487. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  488. if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.fileID, fileNameView: metadata.fileNameView) {
  489. if tableLocalFile!.offline { cell.local.image = UIImage.init(named: "offlineFlag") }
  490. else { cell.local.image = UIImage.init(named: "local") }
  491. }
  492. // Status image: encrypted
  493. let tableE2eEncryption = NCManageDatabase.sharedInstance.getE2eEncryption(predicate: NSPredicate(format: "account == %@ AND fileNameIdentifier == %@", appDelegate.activeAccount, metadata.fileName))
  494. if tableE2eEncryption != nil && NCUtility.sharedInstance.isEncryptedMetadata(metadata) {
  495. cell.status.image = UIImage.init(named: "encrypted")
  496. }
  497. // Share
  498. if (isShare) {
  499. cell.shared.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  500. } else if (isMounted) {
  501. cell.shared.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "shareMounted"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  502. } else if (sharesLink != nil) {
  503. cell.shared.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "sharebylink"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  504. } else if (sharesUserAndGroup != nil) {
  505. cell.shared.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  506. }
  507. }
  508. //
  509. // File & Directory
  510. //
  511. // Favorite
  512. if metadata.favorite {
  513. cell.favorite.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), multiplier: 2, color: NCBrandColor.sharedInstance.yellowFavorite)
  514. }
  515. // More Image
  516. cell.more.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "more"), multiplier: 1, color: NCBrandColor.sharedInstance.optionItem)
  517. return cell
  518. } else {
  519. // TRASNFER
  520. let cell = tableView.dequeueReusableCell(withIdentifier: "CellMainTransfer", for: indexPath) as! CCCellMainTransfer
  521. cell.separatorInset = UIEdgeInsets.init(top: 0, left: 60, bottom: 0, right: 0)
  522. cell.accessoryType = UITableViewCell.AccessoryType.none
  523. cell.file.image = nil
  524. cell.status.image = nil
  525. cell.user.image = nil
  526. cell.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  527. cell.labelTitle.textColor = UIColor.black
  528. cell.labelTitle.text = metadata.fileNameView
  529. cell.transferButton.tintColor = NCBrandColor.sharedInstance.optionItem
  530. var progress: CGFloat = 0.0
  531. var totalBytes: Double = 0.0
  532. //var totalBytesExpected : Double = 0
  533. let progressArray = appDelegate.listProgressMetadata.object(forKey: metadata.fileID) as? NSArray
  534. if progressArray != nil && progressArray?.count == 3 {
  535. progress = progressArray?.object(at: 0) as! CGFloat
  536. totalBytes = progressArray?.object(at: 1) as! Double
  537. //totalBytesExpected = progressArray?.object(at: 2) as! Double
  538. }
  539. // Write status on Label Info
  540. switch metadata.status {
  541. case Int(k_metadataStatusWaitDownload):
  542. cell.labelInfoFile.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_wait_download_", comment: "")
  543. progress = 0.0
  544. break
  545. case Int(k_metadataStatusInDownload):
  546. cell.labelInfoFile.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_in_download_", comment: "")
  547. progress = 0.0
  548. break
  549. case Int(k_metadataStatusDownloading):
  550. cell.labelInfoFile.text = CCUtility.transformedSize(metadata.size) + " - ↓" + CCUtility.transformedSize(totalBytes)
  551. break
  552. case Int(k_metadataStatusWaitUpload):
  553. cell.labelInfoFile.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_wait_upload_", comment: "")
  554. progress = 0.0
  555. break
  556. case Int(k_metadataStatusInUpload):
  557. cell.labelInfoFile.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_in_upload_", comment: "")
  558. progress = 0.0
  559. break
  560. case Int(k_metadataStatusUploading):
  561. cell.labelInfoFile.text = CCUtility.transformedSize(metadata.size) + " - ↑" + CCUtility.transformedSize(totalBytes)
  562. break
  563. default:
  564. cell.labelInfoFile.text = CCUtility.transformedSize(metadata.size)
  565. progress = 0.0
  566. }
  567. let iconFileExists = FileManager.default.fileExists(atPath: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileNameView))
  568. if iconFileExists {
  569. cell.file.image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconFileID(metadata.fileID, fileNameView: metadata.fileNameView))
  570. } else {
  571. if metadata.iconName.count > 0 {
  572. cell.file.image = UIImage.init(named: metadata.iconName)
  573. } else {
  574. cell.file.image = UIImage.init(named: "file")
  575. }
  576. }
  577. // Session Upload Extension
  578. if metadata.session == k_upload_session_extension && (metadata.status == k_metadataStatusInUpload || metadata.status == k_metadataStatusUploading) {
  579. cell.labelTitle.isEnabled = false
  580. cell.labelInfoFile.isEnabled = false
  581. } else {
  582. cell.labelTitle.isEnabled = true
  583. cell.labelInfoFile.isEnabled = true
  584. }
  585. // downloadFile
  586. if metadata.status == k_metadataStatusWaitDownload || metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status == k_metadataStatusDownloadError {
  587. //
  588. }
  589. // downloadFile Error
  590. if metadata.status == k_metadataStatusDownloadError {
  591. cell.status.image = UIImage.init(named: "statuserror")
  592. if metadata.sessionError.count == 0 {
  593. cell.labelInfoFile.text = NSLocalizedString("_error_", comment: "") + ", " + NSLocalizedString("_file_not_downloaded_", comment: "")
  594. } else {
  595. cell.labelInfoFile.text = metadata.sessionError
  596. }
  597. }
  598. // uploadFile
  599. if metadata.status == k_metadataStatusWaitUpload || metadata.status == k_metadataStatusInUpload || metadata.status == k_metadataStatusUploading || metadata.status == k_metadataStatusUploadError {
  600. if (!iconFileExists) {
  601. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "uploadCloud"), multiplier: 2, color: NCBrandColor.sharedInstance.brandElement)
  602. }
  603. cell.labelTitle.isEnabled = false
  604. }
  605. // uploadFileError
  606. if metadata.status == k_metadataStatusUploadError {
  607. cell.labelTitle.isEnabled = false
  608. cell.status.image = UIImage.init(named: "statuserror")
  609. if !iconFileExists {
  610. cell.file.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "uploadCloud"), multiplier: 2, color: NCBrandColor.sharedInstance.brandElement)
  611. }
  612. if metadata.sessionError.count == 0 {
  613. cell.labelInfoFile.text = NSLocalizedString("_error_", comment: "") + ", " + NSLocalizedString("_file_not_uploaded_", comment: "")
  614. } else {
  615. cell.labelInfoFile.text = metadata.sessionError
  616. }
  617. }
  618. // Progress
  619. cell.transferButton.progress = progress
  620. // User
  621. if metadata.account != appDelegate.activeAccount {
  622. let tableAccount = NCManageDatabase.sharedInstance.getAccount(predicate: NSPredicate(format: "account == %@", metadata.account))
  623. if tableAccount != nil {
  624. let fileNamePath = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(tableAccount!.user, activeUrl: tableAccount!.url) + "-" + tableAccount!.user + ".png"
  625. var avatar = UIImage.init(contentsOfFile: fileNamePath)
  626. if avatar != nil {
  627. let avatarImageView = CCAvatar.init(image: avatar, borderColor: UIColor.black, borderWidth: 0.5)
  628. let imageSize = avatarImageView?.bounds.size
  629. UIGraphicsBeginImageContext(imageSize!)
  630. let context = UIGraphicsGetCurrentContext()
  631. avatarImageView?.layer.render(in: context!)
  632. avatar = UIGraphicsGetImageFromCurrentImageContext()
  633. UIGraphicsEndImageContext()
  634. cell.user.image = avatar
  635. }
  636. }
  637. }
  638. return cell
  639. }
  640. }
  641. @objc func getMetadataFromSectionDataSourceIndexPath(_ indexPath: IndexPath?, sectionDataSource: CCSectionDataSourceMetadata?) -> tableMetadata? {
  642. guard let indexPath = indexPath else {
  643. return nil
  644. }
  645. guard let sectionDataSource = sectionDataSource else {
  646. return nil
  647. }
  648. let section = indexPath.section + 1
  649. let row = indexPath.row + 1
  650. let totSections = sectionDataSource.sections.count
  651. if totSections < section || section > totSections {
  652. return nil
  653. }
  654. let valueSection = sectionDataSource.sections.object(at: indexPath.section)
  655. guard let filesID = sectionDataSource.sectionArrayRow.object(forKey: valueSection) as? NSArray else {
  656. return nil
  657. }
  658. let totRows = filesID.count
  659. if totRows < row || row > totRows {
  660. return nil
  661. }
  662. let fileID = filesID.object(at: indexPath.row)
  663. let metadata = sectionDataSource.allRecordsDataSource.object(forKey: fileID) as? tableMetadata
  664. return metadata
  665. }
  666. @objc func reloadDatasource(ServerUrl: String?, fileID: String?, action: Int32) {
  667. if operationQueueReloadDatasource.operationCount > 0 {
  668. return
  669. }
  670. if self.appDelegate.activeMain != nil && ServerUrl != nil && self.appDelegate.activeMain.serverUrl == ServerUrl {
  671. self.operationQueueReloadDatasource.addOperation {
  672. DispatchQueue.main.async {
  673. self.appDelegate.activeMain.reloadDatasource(ServerUrl, fileID: fileID, action: Int(action))
  674. }
  675. }
  676. }
  677. if self.appDelegate.activeFavorites != nil && self.appDelegate.activeFavorites.viewIfLoaded?.window != nil {
  678. self.operationQueueReloadDatasource.addOperation {
  679. DispatchQueue.main.async {
  680. self.appDelegate.activeFavorites.reloadDatasource(fileID, action: Int(action))
  681. }
  682. }
  683. }
  684. if self.appDelegate.activeTransfers != nil && self.appDelegate.activeTransfers.viewIfLoaded?.window != nil {
  685. self.operationQueueReloadDatasource.addOperation {
  686. DispatchQueue.main.async {
  687. self.appDelegate.activeTransfers.reloadDatasource(fileID, action: Int(action))
  688. }
  689. }
  690. }
  691. }
  692. @objc func isValidIndexPath(_ indexPath: IndexPath, view: Any) -> Bool {
  693. if view is UICollectionView {
  694. return indexPath.section < (view as! UICollectionView).numberOfSections && indexPath.row < (view as! UICollectionView).numberOfItems(inSection: indexPath.section)
  695. }
  696. if view is UITableView {
  697. return indexPath.section < (view as! UITableView).numberOfSections && indexPath.row < (view as! UITableView).numberOfRows(inSection: indexPath.section)
  698. }
  699. return true
  700. }
  701. //MARK: -
  702. @objc func deleteFile(metadatas: NSArray, e2ee: Bool, serverUrl: String, folderFileID: String, completion: @escaping (_ errorCode: Int, _ message: String)->()) {
  703. var copyMetadatas = [tableMetadata]()
  704. for metadata in metadatas {
  705. copyMetadatas.append(tableMetadata.init(value: metadata))
  706. }
  707. if e2ee {
  708. DispatchQueue.global().async {
  709. let error = NCNetworkingEndToEnd.sharedManager().lockFolderEncrypted(onServerUrl: serverUrl, fileID: folderFileID, user: self.appDelegate.activeUser, userID: self.appDelegate.activeUserID, password: self.appDelegate.activePassword, url: self.appDelegate.activeUrl)
  710. DispatchQueue.main.async {
  711. if error == nil {
  712. self.delete(metadatas: copyMetadatas, serverUrl:serverUrl, e2ee: e2ee, completion: completion)
  713. } else {
  714. self.appDelegate.messageNotification("_delete_", description: error?.localizedDescription, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: Int(k_CCErrorInternalError))
  715. return
  716. }
  717. }
  718. }
  719. } else {
  720. delete(metadatas: copyMetadatas, serverUrl:serverUrl, e2ee: e2ee, completion: completion)
  721. }
  722. }
  723. private func delete(metadatas: [tableMetadata], serverUrl: String, e2ee: Bool, completion: @escaping (_ errorCode: Int, _ message: String)->()) {
  724. var count: Int = 0
  725. var completionErrorCode: Int = 0
  726. var completionMessage = ""
  727. for metadata in metadatas {
  728. self.appDelegate.filterFileID.add(metadata.fileID)
  729. let path = metadata.serverUrl + "/" + metadata.fileName
  730. OCNetworking.sharedManager().deleteFileOrFolder(withAccount: appDelegate.activeAccount, path: path, completion: { (account, message, errorCode) in
  731. if account == self.appDelegate.activeAccount {
  732. count += 1
  733. if errorCode == 0 || errorCode == kOCErrorServerPathNotFound {
  734. do {
  735. try FileManager.default.removeItem(atPath: CCUtility.getDirectoryProviderStorageFileID(metadata.fileID))
  736. } catch { }
  737. NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  738. NCManageDatabase.sharedInstance.deleteLocalFile(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  739. NCManageDatabase.sharedInstance.deletePhotos(fileID: metadata.fileID)
  740. if metadata.directory {
  741. NCManageDatabase.sharedInstance.deleteDirectoryAndSubDirectory(serverUrl: CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName), account: metadata.account)
  742. }
  743. if (e2ee) {
  744. NCManageDatabase.sharedInstance.deleteE2eEncryption(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameIdentifier == %@", metadata.account, serverUrl, metadata.fileName))
  745. }
  746. self.appDelegate.filterFileID.remove(metadata.fileID)
  747. } else {
  748. completionErrorCode = errorCode
  749. completionMessage = ""
  750. if message != nil {
  751. completionMessage = message!
  752. }
  753. self.appDelegate.filterFileID.remove(metadata.fileID)
  754. }
  755. if count == metadatas.count {
  756. if e2ee {
  757. DispatchQueue.global().async {
  758. NCNetworkingEndToEnd.sharedManager().rebuildAndSendMetadata(onServerUrl: serverUrl, account: self.appDelegate.activeAccount, user: self.appDelegate.activeUser, userID: self.appDelegate.activeUserID, password: self.appDelegate.activePassword, url: self.appDelegate.activeUrl)
  759. DispatchQueue.main.async {
  760. completion(completionErrorCode, completionMessage)
  761. }
  762. }
  763. } else {
  764. completion(completionErrorCode, completionMessage)
  765. }
  766. }
  767. }
  768. })
  769. }
  770. self.reloadDatasource(ServerUrl: serverUrl, fileID: nil, action: k_action_NULL)
  771. self.appDelegate.activeMedia.loadDatasource()
  772. }
  773. @objc func editPhoto(_ metadata: tableMetadata, viewController: UIViewController) {
  774. guard let path = CCUtility.getDirectoryProviderStorageFileID(metadata.fileID, fileNameView: metadata.fileNameView) else {
  775. return
  776. }
  777. guard let image = UIImage(contentsOfFile: path) else {
  778. return
  779. }
  780. self.metadata = metadata
  781. let photoEditor = PhotoEditorViewController(nibName:"PhotoEditorViewController",bundle: Bundle(for: PhotoEditorViewController.self))
  782. photoEditor.image = image
  783. photoEditor.photoEditorDelegate = self
  784. photoEditor.hiddenControls = [.save, .share, .sticker]
  785. photoEditor.cancelButtonImage = CCGraphics.changeThemingColorImage(UIImage(named: "photoEditorCancel")!, multiplier:2, color: .white)
  786. photoEditor.cropButtonImage = CCGraphics.changeThemingColorImage(UIImage(named: "photoEditorCrop")!, multiplier:2, color: .white)
  787. photoEditor.drawButtonImage = CCGraphics.changeThemingColorImage(UIImage(named: "photoEditorDraw")!, multiplier:2, color: .white)
  788. photoEditor.textButtonImage = CCGraphics.changeThemingColorImage(UIImage(named: "photoEditorText")!, multiplier:2, color: .white)
  789. photoEditor.clearButtonImage = CCGraphics.changeThemingColorImage(UIImage(named: "photoEditorClear")!, multiplier:2, color: .white)
  790. photoEditor.continueButtonImage = CCGraphics.changeThemingColorImage(UIImage(named: "photoEditorDone")!, multiplier:2, color: .white)
  791. viewController.present(photoEditor, animated: true, completion: nil)
  792. }
  793. func doneEditing(image: UIImage) {
  794. guard let metadata = self.metadata else {
  795. return
  796. }
  797. guard let path = CCUtility.getDirectoryProviderStorageFileID(metadata.fileID, fileNameView: metadata.fileNameView) else {
  798. return
  799. }
  800. guard let filetype = NCUtility.sharedInstance.isEditImage(metadata.fileNameView as NSString) else {
  801. return
  802. }
  803. if filetype == "PNG" {
  804. do {
  805. try image.pngData()?.write(to: path.url, options: .atomic)
  806. } catch { return }
  807. } else if filetype == "JPG" {
  808. let imageData = image.jpegData(compressionQuality: 1)
  809. do {
  810. try imageData?.write(to: path.url)
  811. } catch { return }
  812. }
  813. // write icon
  814. CCGraphics.createNewImage(from: metadata.fileNameView, fileID: metadata.fileID, extension: filetype, filterGrayScale: false, typeFile: metadata.typeFile, writeImage: true)
  815. // upload
  816. metadata.session = k_upload_session
  817. metadata.sessionSelector = selectorUploadFile
  818. metadata.status = Int(k_metadataStatusWaitUpload)
  819. _ = NCManageDatabase.sharedInstance.addMetadata(metadata)
  820. }
  821. func canceledEditing() {
  822. print("Canceled")
  823. }
  824. }
  825. //MARK: -
  826. class CCMainTabBarController : UITabBarController, UITabBarControllerDelegate {
  827. override func viewDidLoad() {
  828. super.viewDidLoad()
  829. delegate = self
  830. }
  831. //Delegate methods
  832. func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool {
  833. let tabViewControllers = tabBarController.viewControllers!
  834. guard let toIndex = tabViewControllers.index(of: viewController) else {
  835. if let vc = viewController as? UINavigationController {
  836. vc.popToRootViewController(animated: true);
  837. }
  838. return false
  839. }
  840. animateToTab(toIndex: toIndex)
  841. return true
  842. }
  843. func animateToTab(toIndex: Int) {
  844. let tabViewControllers = viewControllers!
  845. let fromView = selectedViewController!.view!
  846. let toView = tabViewControllers[toIndex].view!
  847. let fromIndex = tabViewControllers.index(of: selectedViewController!)
  848. guard fromIndex != toIndex else {return}
  849. // Add the toView to the tab bar view
  850. fromView.superview?.addSubview(toView)
  851. fromView.superview?.backgroundColor = UIColor.white
  852. // Position toView off screen (to the left/right of fromView)
  853. let screenWidth = UIScreen.main.bounds.size.width;
  854. let scrollRight = toIndex > fromIndex!;
  855. let offset = (scrollRight ? screenWidth : -screenWidth)
  856. toView.center = CGPoint(x: (fromView.center.x) + offset, y: (toView.center.y))
  857. // Disable interaction during animation
  858. view.isUserInteractionEnabled = false
  859. UIView.animate(withDuration: 0.3, delay: 0.0, usingSpringWithDamping: 1, initialSpringVelocity: 0, options: UIView.AnimationOptions.curveEaseOut, animations: {
  860. // Slide the views by -offset
  861. fromView.center = CGPoint(x: fromView.center.x - offset, y: fromView.center.y);
  862. toView.center = CGPoint(x: toView.center.x - offset, y: toView.center.y);
  863. }, completion: { finished in
  864. // Remove the old view from the tabbar view.
  865. fromView.removeFromSuperview()
  866. self.selectedIndex = toIndex
  867. self.view.isUserInteractionEnabled = true
  868. })
  869. }
  870. }
  871. //
  872. // https://stackoverflow.com/questions/44822558/ios-11-uitabbar-uitabbaritem-positioning-issue/46348796#46348796
  873. //
  874. extension UITabBar {
  875. // Workaround for iOS 11's new UITabBar behavior where on iPad, the UITabBar inside
  876. // the Master view controller shows the UITabBarItem icon next to the text
  877. override open var traitCollection: UITraitCollection {
  878. if UIDevice.current.userInterfaceIdiom == .pad {
  879. return UITraitCollection(horizontalSizeClass: .compact)
  880. }
  881. return super.traitCollection
  882. }
  883. }
  884. //MARK: -
  885. class NCNetworkingMain: NSObject, CCNetworkingDelegate {
  886. @objc static let sharedInstance: NCNetworkingMain = {
  887. let instance = NCNetworkingMain()
  888. return instance
  889. }()
  890. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  891. // DOWNLOAD
  892. func downloadStart(_ fileID: String!, account: String!, task: URLSessionDownloadTask!, serverUrl: String!) {
  893. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_MOD))
  894. appDelegate.updateApplicationIconBadgeNumber()
  895. }
  896. func downloadFileSuccessFailure(_ fileName: String!, fileID: String!, serverUrl: String!, selector: String!, errorMessage: String!, errorCode: Int) {
  897. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileID == %@", fileID)) else {
  898. return
  899. }
  900. if metadata.account != appDelegate.activeAccount {
  901. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_MOD))
  902. return
  903. }
  904. if errorCode == 0 {
  905. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_MOD))
  906. // Synchronized
  907. if selector == selectorDownloadSynchronize {
  908. appDelegate.updateApplicationIconBadgeNumber()
  909. return
  910. }
  911. // Modify Photo
  912. if selector == selectorDownloadEditPhoto {
  913. NCMainCommon.sharedInstance.editPhoto(metadata, viewController: appDelegate.activeMain)
  914. return
  915. }
  916. // open View File
  917. if selector == selectorLoadFileView && UIApplication.shared.applicationState == UIApplication.State.active {
  918. var uti = CCUtility.insertTypeFileIconName(metadata.fileNameView, metadata: metadata)
  919. if uti == nil {
  920. uti = ""
  921. } else if uti!.contains("opendocument") && !NCViewerRichdocument.sharedInstance.isRichDocument(metadata) {
  922. metadata.typeFile = k_metadataTypeFile_unknown
  923. }
  924. if metadata.typeFile == k_metadataTypeFile_compress || metadata.typeFile == k_metadataTypeFile_unknown {
  925. if appDelegate.activeMain.view.window != nil {
  926. appDelegate.activeMain.open(in: metadata)
  927. }
  928. if appDelegate.activeFavorites.view.window != nil {
  929. appDelegate.activeFavorites.open(in: metadata)
  930. }
  931. } else {
  932. if appDelegate.activeMain.view.window != nil {
  933. appDelegate.activeMain.shouldPerformSegue(metadata)
  934. }
  935. if appDelegate.activeFavorites.view.window != nil {
  936. appDelegate.activeFavorites.shouldPerformSegue(metadata)
  937. }
  938. }
  939. }
  940. // Open in...
  941. if selector == selectorOpenIn && UIApplication.shared.applicationState == UIApplication.State.active {
  942. if appDelegate.activeMain.view.window != nil {
  943. appDelegate.activeMain.open(in: metadata)
  944. }
  945. if appDelegate.activeFavorites.view.window != nil {
  946. appDelegate.activeFavorites.open(in: metadata)
  947. }
  948. }
  949. // Save to Photo Album
  950. if selector == selectorSave {
  951. appDelegate.activeMain.save(toPhotoAlbum: metadata)
  952. }
  953. // Copy File
  954. if selector == selectorLoadCopy {
  955. appDelegate.activeMain.copyFile(toPasteboard: metadata)
  956. }
  957. // Set as available offline
  958. if selector == selectorLoadOffline {
  959. NCManageDatabase.sharedInstance.setLocalFile(fileID: metadata.fileID, offline: true)
  960. }
  961. //selectorLoadViewImage
  962. if selector == selectorLoadViewImage {
  963. if appDelegate.activeDetail != nil {
  964. appDelegate.activeDetail.downloadPhotoBrowserSuccessFailure(metadata, selector: selector, errorCode: errorCode)
  965. }
  966. if appDelegate.activeMedia != nil {
  967. //appDelegate.activeMedia.downloadFileSuccessFailure(metadata.fileName, fileID: metadata.fileID, serverUrl: serverUrl, selector: selector, errorMessage: errorMessage, errorCode: errorCode)
  968. }
  969. }
  970. self.appDelegate.performSelector(onMainThread: #selector(self.appDelegate.loadAutoDownloadUpload), with: nil, waitUntilDone: true)
  971. } else {
  972. // File do not exists on server, remove in local
  973. if (errorCode == kOCErrorServerPathNotFound || errorCode == -1011) { // - 1011 = kCFURLErrorBadServerResponse
  974. do {
  975. try FileManager.default.removeItem(atPath: CCUtility.getDirectoryProviderStorageFileID(metadata.fileID))
  976. } catch { }
  977. NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  978. NCManageDatabase.sharedInstance.deleteLocalFile(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  979. NCManageDatabase.sharedInstance.deletePhotos(fileID: fileID)
  980. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_DEL))
  981. }
  982. if selector == selectorLoadViewImage {
  983. if appDelegate.activeDetail.view.window != nil {
  984. appDelegate.activeDetail.downloadPhotoBrowserSuccessFailure(metadata, selector: selector, errorCode: errorCode)
  985. }
  986. if appDelegate.activeMedia.view.window != nil {
  987. //appDelegate.activeMedia.downloadFileSuccessFailure(metadata.fileName, fileID: metadata.fileID, serverUrl: serverUrl, selector: selector, errorMessage: errorMessage, errorCode: errorCode)
  988. }
  989. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_MOD))
  990. }
  991. }
  992. }
  993. // UPLOAD
  994. func uploadStart(_ fileID: String!, account: String!, task: URLSessionUploadTask!, serverUrl: String!) {
  995. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_MOD))
  996. appDelegate.updateApplicationIconBadgeNumber()
  997. }
  998. func uploadFileSuccessFailure(_ fileName: String!, fileID: String!, assetLocalIdentifier: String!, serverUrl: String!, selector: String!, errorMessage: String!, errorCode: Int) {
  999. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileID == %@", fileID)) else {
  1000. return
  1001. }
  1002. if metadata.account != appDelegate.activeAccount {
  1003. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_MOD))
  1004. return
  1005. }
  1006. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: serverUrl, fileID: fileID, action: Int32(k_action_MOD))
  1007. if errorCode == 0 {
  1008. self.appDelegate.performSelector(onMainThread: #selector(self.appDelegate.loadAutoDownloadUpload), with: nil, waitUntilDone: true)
  1009. } else {
  1010. if errorCode != -999 && errorCode != kOCErrorServerUnauthorized && errorMessage != "" {
  1011. appDelegate.messageNotification("_upload_file_", description: errorMessage, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  1012. }
  1013. }
  1014. }
  1015. @objc func downloadThumbnail(with metadata: tableMetadata, view: Any, indexPath: IndexPath) {
  1016. if metadata.hasPreview == 1 && (!CCUtility.fileProviderStorageIconExists(metadata.fileID, fileNameView: metadata.fileName) || metadata.typeFile == k_metadataTypeFile_document) {
  1017. let width = NCUtility.sharedInstance.getScreenWidthForPreview()
  1018. let height = NCUtility.sharedInstance.getScreenHeightForPreview()
  1019. OCNetworking.sharedManager().downloadPreview(withAccount: appDelegate.activeAccount, metadata: metadata, withWidth: width, andHeight: height, completion: { (account, image, message, errorCode) in
  1020. if errorCode == 0 && account == self.appDelegate.activeAccount {
  1021. if CCUtility.fileProviderStorageIconExists(metadata.fileID, fileNameView: metadata.fileName) {
  1022. if view is UICollectionView && NCMainCommon.sharedInstance.isValidIndexPath(indexPath, view: view) {
  1023. if let cell = (view as! UICollectionView).cellForItem(at: indexPath) {
  1024. if cell is NCListCell {
  1025. (cell as! NCListCell).imageItem.image = image
  1026. } else if cell is NCGridCell {
  1027. (cell as! NCGridCell).imageItem.image = image
  1028. }
  1029. }
  1030. }
  1031. if view is UITableView && CCUtility.fileProviderStorageIconExists(metadata.fileID, fileNameView: metadata.fileName) && NCMainCommon.sharedInstance.isValidIndexPath(indexPath, view: view) {
  1032. if let cell = (view as! UITableView).cellForRow(at: indexPath) {
  1033. if cell is CCCellMainTransfer {
  1034. (cell as! CCCellMainTransfer).file.image = image
  1035. } else if cell is CCCellMain {
  1036. (cell as! CCCellMain).file.image = image
  1037. }
  1038. }
  1039. }
  1040. }
  1041. }
  1042. })
  1043. }
  1044. }
  1045. }
  1046. //MARK: -
  1047. class NCFunctionMain: NSObject {
  1048. @objc static let sharedInstance: NCFunctionMain = {
  1049. let instance = NCFunctionMain()
  1050. return instance
  1051. }()
  1052. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  1053. @objc func synchronizeOffline() {
  1054. let directories = NCManageDatabase.sharedInstance.getTablesDirectory(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.activeAccount), sorted: "serverUrl", ascending: true)
  1055. if (directories != nil) {
  1056. for directory: tableDirectory in directories! {
  1057. CCSynchronize.shared()?.readFolder(directory.serverUrl, selector: selectorReadFolderWithDownload)
  1058. }
  1059. }
  1060. let files = NCManageDatabase.sharedInstance.getTableLocalFiles(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.activeAccount), sorted: "fileName", ascending: true)
  1061. if (files != nil) {
  1062. for file: tableLocalFile in files! {
  1063. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileID == %@", file.fileID)) else {
  1064. continue
  1065. }
  1066. CCSynchronize.shared()?.readFile(metadata.fileID, fileName: metadata.fileName, serverUrl: metadata.serverUrl, selector: selectorReadFileWithDownload)
  1067. }
  1068. }
  1069. }
  1070. }