NCMainCommon.swift 67 KB

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