NCCollectionCommon.swift 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224
  1. //
  2. // NCCollectionCommon.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 08/09/2020.
  6. // Copyright © 2020 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. import ZIPFoundation
  26. import NCCommunication
  27. class NCCollectionCommon: NSObject {
  28. @objc static let shared: NCCollectionCommon = {
  29. let instance = NCCollectionCommon()
  30. instance.createImagesThemingColor()
  31. return instance
  32. }()
  33. struct NCCollectionCommonImages {
  34. static var cellSharedImage = UIImage()
  35. static var cellCanShareImage = UIImage()
  36. static var cellShareByLinkImage = UIImage()
  37. static var cellFavouriteImage = UIImage()
  38. static var cellMoreImage = UIImage()
  39. static var cellCommentImage = UIImage()
  40. static var cellLivePhotoImage = UIImage()
  41. static var cellFolderEncryptedImage = UIImage()
  42. static var cellFolderSharedWithMeImage = UIImage()
  43. static var cellFolderPublicImage = UIImage()
  44. static var cellFolderGroupImage = UIImage()
  45. static var cellFolderExternalImage = UIImage()
  46. static var cellFolderAutomaticUploadImage = UIImage()
  47. static var cellFolderImage = UIImage()
  48. static var cellPlayImage = UIImage()
  49. }
  50. // MARK: -
  51. @objc func createImagesThemingColor() {
  52. NCCollectionCommonImages.cellSharedImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), width: 100, height: 100, color: NCBrandColor.sharedInstance.textView)
  53. NCCollectionCommonImages.cellCanShareImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), width: 100, height: 100, color: NCBrandColor.sharedInstance.optionItem)
  54. NCCollectionCommonImages.cellShareByLinkImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "sharebylink"), width: 100, height: 100, color: NCBrandColor.sharedInstance.optionItem)
  55. NCCollectionCommonImages.cellFavouriteImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "favorite"), width: 100, height: 100, color: NCBrandColor.sharedInstance.yellowFavorite)
  56. NCCollectionCommonImages.cellMoreImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "more"), width: 50, height: 50, color: NCBrandColor.sharedInstance.optionItem)
  57. NCCollectionCommonImages.cellCommentImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "comment"), width: 30, height: 30, color: NCBrandColor.sharedInstance.graySoft)
  58. NCCollectionCommonImages.cellLivePhotoImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "livePhoto"), width: 100, height: 100, color: NCBrandColor.sharedInstance.textView)
  59. NCCollectionCommonImages.cellFolderEncryptedImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderEncrypted"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  60. NCCollectionCommonImages.cellFolderSharedWithMeImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_shared_with_me"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  61. NCCollectionCommonImages.cellFolderPublicImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_public"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  62. NCCollectionCommonImages.cellFolderGroupImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_group"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  63. NCCollectionCommonImages.cellFolderExternalImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder_external"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  64. NCCollectionCommonImages.cellFolderAutomaticUploadImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folderAutomaticUpload"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  65. NCCollectionCommonImages.cellFolderImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), width: 600, height: 600, color: NCBrandColor.sharedInstance.brandElement)
  66. NCCollectionCommonImages.cellPlayImage = CCGraphics.changeThemingColorImage(UIImage.init(named: "play"), width: 100, height: 100, color: .white)
  67. }
  68. // MARK: -
  69. func cellForItemAt(indexPath: IndexPath, collectionView: UICollectionView, cell: UICollectionViewCell, metadata: tableMetadata, metadataFolder: tableMetadata?, serverUrl: String, isEditMode: Bool, selectocId: [String], autoUploadFileName: String, autoUploadDirectory: String, hideButtonMore: Bool, downloadThumbnail: Bool, shares: [tableShare]?, source: UIViewController, dataSource: NCDataSource?) {
  70. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  71. var tableShare: tableShare?
  72. // Share
  73. if shares != nil {
  74. for share in shares! {
  75. if share.fileName == metadata.fileName {
  76. tableShare = share
  77. break
  78. }
  79. }
  80. }
  81. // Download preview
  82. if downloadThumbnail {
  83. NCOperationQueue.shared.downloadThumbnail(metadata: metadata, urlBase: appDelegate.urlBase, view: collectionView, indexPath: indexPath)
  84. }
  85. var isShare = false
  86. var isMounted = false
  87. if metadataFolder != nil {
  88. isShare = metadata.permissions.contains(k_permission_shared) && !metadataFolder!.permissions.contains(k_permission_shared)
  89. isMounted = metadata.permissions.contains(k_permission_mounted) && !metadataFolder!.permissions.contains(k_permission_mounted)
  90. }
  91. if cell is NCListCell {
  92. let cell = cell as! NCListCell
  93. cell.delegate = source as? NCListCellDelegate
  94. cell.objectId = metadata.ocId
  95. cell.indexPath = indexPath
  96. cell.labelTitle.text = metadata.fileNameView
  97. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  98. cell.imageStatus.image = nil
  99. cell.imageLocal.image = nil
  100. cell.imageFavorite.image = nil
  101. cell.imageShared.image = nil
  102. cell.imageItem.image = nil
  103. cell.imageItem.backgroundColor = nil
  104. if metadata.directory {
  105. if metadata.e2eEncrypted {
  106. cell.imageItem.image = NCCollectionCommonImages.cellFolderEncryptedImage
  107. } else if isShare {
  108. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  109. } else if (tableShare != nil && tableShare!.shareType != 3) {
  110. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  111. } else if (tableShare != nil && tableShare!.shareType == 3) {
  112. cell.imageItem.image = NCCollectionCommonImages.cellFolderPublicImage
  113. } else if metadata.mountType == "group" {
  114. cell.imageItem.image = NCCollectionCommonImages.cellFolderGroupImage
  115. } else if isMounted {
  116. cell.imageItem.image = NCCollectionCommonImages.cellFolderExternalImage
  117. } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
  118. cell.imageItem.image = NCCollectionCommonImages.cellFolderAutomaticUploadImage
  119. } else {
  120. cell.imageItem.image = NCCollectionCommonImages.cellFolderImage
  121. }
  122. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
  123. let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
  124. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
  125. // Local image: offline
  126. if tableDirectory != nil && tableDirectory!.offline {
  127. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  128. }
  129. } else {
  130. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  131. cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  132. } else {
  133. if metadata.hasPreview {
  134. cell.imageItem.backgroundColor = .lightGray
  135. } else {
  136. if metadata.iconName.count > 0 {
  137. cell.imageItem.image = UIImage.init(named: metadata.iconName)
  138. } else {
  139. cell.imageItem.image = UIImage.init(named: "file")
  140. }
  141. }
  142. }
  143. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + " · " + CCUtility.transformedSize(metadata.size)
  144. // image local
  145. let size = CCUtility.fileProviderStorageSize(metadata.ocId, fileNameView: metadata.fileNameView)
  146. if size > 0 {
  147. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  148. if tableLocalFile == nil && size == metadata.size {
  149. NCManageDatabase.sharedInstance.addLocalFile(metadata: metadata)
  150. }
  151. if tableLocalFile?.offline ?? false {
  152. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  153. } else{
  154. cell.imageLocal.image = UIImage.init(named: "local")
  155. }
  156. }
  157. }
  158. // image Favorite
  159. if metadata.favorite {
  160. cell.imageFavorite.image = NCCollectionCommonImages.cellFavouriteImage
  161. }
  162. // Share image
  163. if (isShare) {
  164. cell.imageShared.image = NCCollectionCommonImages.cellSharedImage
  165. } else if (tableShare != nil && tableShare!.shareType == 3) {
  166. cell.imageShared.image = NCCollectionCommonImages.cellShareByLinkImage
  167. } else if (tableShare != nil && tableShare!.shareType != 3) {
  168. cell.imageShared.image = NCCollectionCommonImages.cellSharedImage
  169. } else {
  170. cell.imageShared.image = NCCollectionCommonImages.cellCanShareImage
  171. }
  172. if metadata.ownerId.count > 0 && metadata.ownerId != appDelegate.userID {
  173. // Load avatar
  174. let fileNameSource = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-" + metadata.ownerId + ".png"
  175. let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-avatar-" + metadata.ownerId + ".png"
  176. if FileManager.default.fileExists(atPath: fileNameSourceAvatar) {
  177. cell.imageShared.image = UIImage(contentsOfFile: fileNameSourceAvatar)
  178. } else if FileManager.default.fileExists(atPath: fileNameSource) {
  179. cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
  180. } else {
  181. NCCommunication.shared.downloadAvatar(userID: metadata.ownerId, fileNameLocalPath: fileNameSource, size: Int(k_avatar_size)) { (account, data, errorCode, errorMessage) in
  182. if errorCode == 0 && account == appDelegate.account {
  183. cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
  184. }
  185. }
  186. }
  187. }
  188. if isEditMode {
  189. cell.imageItemLeftConstraint.constant = 45
  190. cell.imageSelect.isHidden = false
  191. if selectocId.contains(metadata.ocId) {
  192. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  193. cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
  194. } else {
  195. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedNo"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  196. cell.backgroundView = nil
  197. }
  198. } else {
  199. cell.imageItemLeftConstraint.constant = 10
  200. cell.imageSelect.isHidden = true
  201. cell.backgroundView = nil
  202. }
  203. // Transfer
  204. if metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status >= k_metadataStatusTypeUpload {
  205. cell.progressView.isHidden = false
  206. cell.setButtonMore(named: "stop")
  207. } else {
  208. cell.progressView.isHidden = true
  209. cell.progressView.progress = 0.0
  210. cell.setButtonMore(named: "more")
  211. }
  212. // Remove last separator
  213. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
  214. cell.separator.isHidden = true
  215. } else {
  216. cell.separator.isHidden = false
  217. }
  218. } else if cell is NCGridCell {
  219. let cell = cell as! NCGridCell
  220. cell.delegate = source as? NCGridCellDelegate
  221. cell.objectId = metadata.ocId
  222. cell.indexPath = indexPath
  223. cell.labelTitle.text = metadata.fileNameView
  224. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  225. cell.imageStatus.image = nil
  226. cell.imageLocal.image = nil
  227. cell.imageFavorite.image = nil
  228. cell.imageItem.image = nil
  229. cell.imageItem.backgroundColor = nil
  230. if metadata.directory {
  231. if metadata.e2eEncrypted {
  232. cell.imageItem.image = NCCollectionCommonImages.cellFolderEncryptedImage
  233. } else if isShare {
  234. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  235. } else if (tableShare != nil && tableShare!.shareType != 3) {
  236. cell.imageItem.image = NCCollectionCommonImages.cellFolderSharedWithMeImage
  237. } else if (tableShare != nil && tableShare!.shareType == 3) {
  238. cell.imageItem.image = NCCollectionCommonImages.cellFolderPublicImage
  239. } else if metadata.mountType == "group" {
  240. cell.imageItem.image = NCCollectionCommonImages.cellFolderGroupImage
  241. } else if isMounted {
  242. cell.imageItem.image = NCCollectionCommonImages.cellFolderExternalImage
  243. } else if metadata.fileName == autoUploadFileName && serverUrl == autoUploadDirectory {
  244. cell.imageItem.image = NCCollectionCommonImages.cellFolderAutomaticUploadImage
  245. } else {
  246. cell.imageItem.image = NCCollectionCommonImages.cellFolderImage
  247. }
  248. let lockServerUrl = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)!
  249. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
  250. // Local image: offline
  251. if tableDirectory != nil && tableDirectory!.offline {
  252. cell.imageLocal.image = UIImage.init(named: "offlineFlag")
  253. }
  254. } else {
  255. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  256. cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  257. } else {
  258. if metadata.hasPreview {
  259. cell.imageItem.backgroundColor = .lightGray
  260. } else {
  261. if metadata.iconName.count > 0 {
  262. cell.imageItem.image = UIImage.init(named: metadata.iconName)
  263. } else {
  264. cell.imageItem.image = UIImage.init(named: "file")
  265. }
  266. }
  267. }
  268. // image Local
  269. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  270. if tableLocalFile != nil && CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  271. if tableLocalFile!.offline { cell.imageLocal.image = UIImage.init(named: "offlineFlag") }
  272. else { cell.imageLocal.image = UIImage.init(named: "local") }
  273. }
  274. }
  275. // image Favorite
  276. if metadata.favorite {
  277. cell.imageFavorite.image = NCCollectionCommonImages.cellFavouriteImage
  278. }
  279. if isEditMode {
  280. cell.imageSelect.isHidden = false
  281. if selectocId.contains(metadata.ocId) {
  282. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  283. cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
  284. } else {
  285. cell.imageSelect.isHidden = true
  286. cell.backgroundView = nil
  287. }
  288. } else {
  289. cell.imageSelect.isHidden = true
  290. cell.backgroundView = nil
  291. }
  292. // Transfer
  293. if metadata.status == k_metadataStatusInDownload || metadata.status == k_metadataStatusDownloading || metadata.status >= k_metadataStatusTypeUpload {
  294. cell.progressView.isHidden = false
  295. cell.setButtonMore(named: "stop")
  296. } else {
  297. cell.progressView.isHidden = true
  298. cell.progressView.progress = 0.0
  299. cell.setButtonMore(named: "more")
  300. }
  301. }
  302. }
  303. // MARK: -
  304. func notificationDeleteFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, errorCode: Int, errorDescription: String ,onlyLocal: Bool) {
  305. if errorCode == 0 {
  306. if onlyLocal {
  307. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  308. let indexPath = IndexPath(row: row, section: 0)
  309. collectionView?.reloadItems(at: [indexPath])
  310. }
  311. } else {
  312. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  313. let indexPath = IndexPath(row: row, section: 0)
  314. collectionView?.performBatchUpdates({
  315. collectionView?.deleteItems(at: [indexPath])
  316. }, completion: { (_) in
  317. collectionView?.reloadData()
  318. })
  319. }
  320. }
  321. } else {
  322. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  323. }
  324. }
  325. func notificationMoveFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, errorCode: Int, errorDescription: String) {
  326. if errorCode == 0 {
  327. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  328. let indexPath = IndexPath(row: row, section: 0)
  329. collectionView?.performBatchUpdates({
  330. collectionView?.deleteItems(at: [indexPath])
  331. }, completion: { (_) in
  332. collectionView?.reloadData()
  333. })
  334. }
  335. } else {
  336. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  337. }
  338. }
  339. func notificationRenameFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, errorCode: Int, errorDescription: String) {
  340. if errorCode == 0 {
  341. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  342. let indexPath = IndexPath(row: row, section: 0)
  343. collectionView?.performBatchUpdates({
  344. collectionView?.reloadItems(at: [indexPath])
  345. }, completion: { (_) in
  346. collectionView?.reloadData()
  347. })
  348. }
  349. } else {
  350. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  351. }
  352. }
  353. func notificationCreateFolder(collectionView: UICollectionView?, dataSource: NCDataSource?, fileName: String, serverUrl: String, errorCode: Int, errorDescription: String) {
  354. if errorCode == 0 {
  355. } else {
  356. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  357. }
  358. }
  359. func notificationFavoriteFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, favorite: Bool, errorCode: Int, errorDescription: String) {
  360. if errorCode == 0 {
  361. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  362. let indexPath = IndexPath(row: row, section: 0)
  363. collectionView?.reloadItems(at: [indexPath])
  364. }
  365. if favorite {
  366. if CCUtility.getFavoriteOffline() {
  367. NCOperationQueue.shared.synchronizationMetadata(metadata, selector: selectorDownloadAllFile)
  368. } else {
  369. NCOperationQueue.shared.synchronizationMetadata(metadata, selector: selectorReadFile)
  370. }
  371. }
  372. } else {
  373. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  374. }
  375. }
  376. func notificationDownloadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  377. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  378. let indexPath = IndexPath(row: row, section: 0)
  379. collectionView?.reloadItems(at: [indexPath])
  380. }
  381. }
  382. func notificationDownloadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  383. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  384. let indexPath = IndexPath(row: row, section: 0)
  385. collectionView?.reloadItems(at: [indexPath])
  386. }
  387. }
  388. func notificationDownloadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  389. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  390. let indexPath = IndexPath(row: row, section: 0)
  391. collectionView?.reloadItems(at: [indexPath])
  392. }
  393. }
  394. func notificationUploadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  395. if let row = dataSource?.addMetadata(metadata) {
  396. let indexPath = IndexPath(row: row, section: 0)
  397. collectionView?.performBatchUpdates({
  398. collectionView?.insertItems(at: [indexPath])
  399. }, completion: { (_) in
  400. collectionView?.reloadData()
  401. })
  402. }
  403. }
  404. func notificationUploadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, ocIdTemp: String) {
  405. _ = dataSource?.reloadMetadata(ocId: metadata.ocId, ocIdTemp: ocIdTemp)
  406. collectionView?.reloadData()
  407. }
  408. func notificationUploadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) -> Bool {
  409. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  410. let indexPath = IndexPath(row: row, section: 0)
  411. collectionView?.performBatchUpdates({
  412. collectionView?.deleteItems(at: [indexPath])
  413. }, completion: { (_) in
  414. collectionView?.reloadData()
  415. })
  416. return true
  417. }
  418. return false
  419. }
  420. func notificationTriggerProgressTask(collectionView: UICollectionView?, dataSource: NCDataSource?, ocId: String, progress: Float) {
  421. if let index = dataSource?.getIndexMetadata(ocId: ocId) {
  422. if let cell = collectionView?.cellForItem(at: IndexPath(row: index, section: 0)) {
  423. if cell is NCListCell {
  424. let cell = cell as! NCListCell
  425. if progress > 0 {
  426. cell.progressView?.isHidden = false
  427. cell.progressView?.progress = progress
  428. cell.setButtonMore(named: "stop")
  429. }
  430. } else if cell is NCGridCell {
  431. let cell = cell as! NCGridCell
  432. if progress > 0 {
  433. cell.progressView.isHidden = false
  434. cell.progressView.progress = progress
  435. cell.setButtonMore(named: "stop")
  436. }
  437. }
  438. }
  439. }
  440. }
  441. }
  442. // MARK: - List Layout
  443. class NCListLayout: UICollectionViewFlowLayout {
  444. let itemHeight: CGFloat = 60
  445. override init() {
  446. super.init()
  447. sectionHeadersPinToVisibleBounds = false
  448. minimumInteritemSpacing = 0
  449. minimumLineSpacing = 1
  450. self.scrollDirection = .vertical
  451. self.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
  452. }
  453. required init?(coder aDecoder: NSCoder) {
  454. fatalError("init(coder:) has not been implemented")
  455. }
  456. override var itemSize: CGSize {
  457. get {
  458. if let collectionView = collectionView {
  459. let itemWidth: CGFloat = collectionView.frame.width
  460. return CGSize(width: itemWidth, height: self.itemHeight)
  461. }
  462. // Default fallback
  463. return CGSize(width: 100, height: 100)
  464. }
  465. set {
  466. super.itemSize = newValue
  467. }
  468. }
  469. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  470. return proposedContentOffset
  471. }
  472. }
  473. // MARK: - Grid Layout
  474. class NCGridLayout: UICollectionViewFlowLayout {
  475. var heightLabelPlusButton: CGFloat = 45
  476. var marginLeftRight: CGFloat = 6
  477. var itemForLine: CGFloat = 3
  478. override init() {
  479. super.init()
  480. sectionHeadersPinToVisibleBounds = false
  481. minimumInteritemSpacing = 1
  482. minimumLineSpacing = marginLeftRight
  483. self.scrollDirection = .vertical
  484. self.sectionInset = UIEdgeInsets(top: 10, left: marginLeftRight, bottom: 0, right: marginLeftRight)
  485. }
  486. required init?(coder aDecoder: NSCoder) {
  487. fatalError("init(coder:) has not been implemented")
  488. }
  489. override var itemSize: CGSize {
  490. get {
  491. if let collectionView = collectionView {
  492. let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
  493. let itemHeight: CGFloat = itemWidth + heightLabelPlusButton
  494. return CGSize(width: itemWidth, height: itemHeight)
  495. }
  496. // Default fallback
  497. return CGSize(width: 100, height: 100)
  498. }
  499. set {
  500. super.itemSize = newValue
  501. }
  502. }
  503. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  504. return proposedContentOffset
  505. }
  506. }
  507. // MARK: - NCSelect + Delegate
  508. extension NCCollectionCommon: NCSelectDelegate {
  509. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, array: [Any], buttonType: String, overwrite: Bool) {
  510. if (serverUrl != nil && array.count > 0) {
  511. var move = true
  512. if buttonType == "done1" { move = false }
  513. for metadata in array as! [tableMetadata] {
  514. NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: move)
  515. }
  516. }
  517. }
  518. func openSelectView(viewController: UIViewController, array: [Any]) {
  519. let navigationController = UIStoryboard.init(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
  520. let vc = navigationController.topViewController as! NCSelect
  521. vc.delegate = self
  522. vc.hideButtonCreateFolder = false
  523. vc.selectFile = false
  524. vc.includeDirectoryE2EEncryption = false
  525. vc.includeImages = false
  526. vc.type = ""
  527. vc.titleButtonDone = NSLocalizedString("_move_", comment: "")
  528. vc.titleButtonDone1 = NSLocalizedString("_copy_",comment: "")
  529. vc.isButtonDone1Hide = false
  530. vc.isOverwriteHide = false
  531. vc.keyLayout = k_layout_view_move
  532. vc.array = array
  533. navigationController.modalPresentationStyle = .fullScreen
  534. viewController.present(navigationController, animated: true, completion: nil)
  535. }
  536. }
  537. // MARK: - Nextcloud CollectionView Common
  538. class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  539. @IBOutlet weak var collectionView: UICollectionView!
  540. @objc var serverUrl = ""
  541. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  542. internal var metadataPush: tableMetadata?
  543. internal var isEditMode = false
  544. internal var selectOcId: [String] = []
  545. internal var dataSource: NCDataSource?
  546. internal var layout = ""
  547. internal var groupBy = ""
  548. internal var titleButton = ""
  549. internal var itemForLine = 0
  550. private var autoUploadFileName = ""
  551. private var autoUploadDirectory = ""
  552. private var listLayout: NCListLayout!
  553. private var gridLayout: NCGridLayout!
  554. private let headerMenuHeight: CGFloat = 50
  555. private let sectionHeaderHeight: CGFloat = 20
  556. private let footerHeight: CGFloat = 50
  557. private var timerInputSearch: Timer?
  558. internal var literalSearch: String = ""
  559. internal let refreshControl = UIRefreshControl()
  560. // DECLARE
  561. internal var layoutKey = ""
  562. internal var titleCurrentFolder = ""
  563. internal var enableSearchBar: Bool = false
  564. required init?(coder aDecoder: NSCoder) {
  565. super.init(coder: aDecoder)
  566. }
  567. override func viewDidLoad() {
  568. super.viewDidLoad()
  569. self.navigationController?.navigationBar.prefersLargeTitles = true
  570. if enableSearchBar {
  571. let search = UISearchController(searchResultsController: nil)
  572. search.searchResultsUpdater = self
  573. self.navigationItem.searchController = search
  574. search.delegate = self
  575. search.searchBar.delegate = self
  576. }
  577. // Cell
  578. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  579. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  580. // Header
  581. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  582. collectionView.register(UINib.init(nibName: "NCSectionHeader", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeader")
  583. // Footer
  584. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  585. collectionView.alwaysBounceVertical = true
  586. listLayout = NCListLayout()
  587. gridLayout = NCGridLayout()
  588. // Refresh Control
  589. collectionView.addSubview(refreshControl)
  590. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  591. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  592. refreshControl.addTarget(self, action: #selector(reloadDataSourceNetwork), for: .valueChanged)
  593. // empty Data Source
  594. self.collectionView.emptyDataSetDelegate = self
  595. self.collectionView.emptyDataSetSource = self
  596. // 3D Touch peek and pop
  597. if traitCollection.forceTouchCapability == .available {
  598. registerForPreviewing(with: self, sourceView: view)
  599. }
  600. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  601. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  602. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_deleteFile), object: nil)
  603. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_moveFile), object: nil)
  604. NotificationCenter.default.addObserver(self, selector: #selector(copyFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_copyFile), object: nil)
  605. NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_renameFile), object: nil)
  606. NotificationCenter.default.addObserver(self, selector: #selector(createFolder(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_createFolder), object: nil)
  607. NotificationCenter.default.addObserver(self, selector: #selector(favoriteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_favoriteFile), object: nil)
  608. NotificationCenter.default.addObserver(self, selector: #selector(downloadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadStartFile), object: nil)
  609. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
  610. NotificationCenter.default.addObserver(self, selector: #selector(downloadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadCancelFile), object: nil)
  611. NotificationCenter.default.addObserver(self, selector: #selector(uploadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadStartFile), object: nil)
  612. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
  613. NotificationCenter.default.addObserver(self, selector: #selector(uploadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadCancelFile), object: nil)
  614. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_progressTask), object:nil)
  615. changeTheming()
  616. }
  617. override func viewWillAppear(_ animated: Bool) {
  618. super.viewWillAppear(animated)
  619. self.navigationItem.title = titleCurrentFolder
  620. // get auto upload folder
  621. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  622. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  623. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: layoutKey)
  624. gridLayout.itemForLine = CGFloat(itemForLine)
  625. if layout == k_layout_list {
  626. collectionView?.collectionViewLayout = listLayout
  627. } else {
  628. collectionView?.collectionViewLayout = gridLayout
  629. }
  630. reloadDataSource()
  631. }
  632. override func viewDidAppear(_ animated: Bool) {
  633. super.viewDidAppear(animated)
  634. reloadDataSourceNetwork()
  635. }
  636. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  637. super.viewWillTransition(to: size, with: coordinator)
  638. coordinator.animate(alongsideTransition: nil) { _ in
  639. self.collectionView?.collectionViewLayout.invalidateLayout()
  640. }
  641. }
  642. // MARK: - Utility
  643. @objc func minCharTextFieldDidChange(sender: UITextField) {
  644. guard let alertController = self.presentedViewController as? UIAlertController else { return }
  645. guard let password = alertController.textFields?.first else { return }
  646. guard let ok = alertController.actions.last else { return }
  647. ok.isEnabled = password.text?.count ?? 0 >= 8
  648. }
  649. // MARK: - NotificationCenter
  650. @objc func changeTheming() {
  651. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  652. }
  653. @objc func deleteFile(_ notification: NSNotification) {
  654. if self.view?.window == nil { return }
  655. if let userInfo = notification.userInfo as NSDictionary? {
  656. if let metadata = userInfo["metadata"] as? tableMetadata, let onlyLocal = userInfo["onlyLocal"] as? Bool, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
  657. NCCollectionCommon.shared.notificationDeleteFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, errorCode: errorCode, errorDescription: errorDescription, onlyLocal: onlyLocal)
  658. }
  659. }
  660. }
  661. @objc func moveFile(_ notification: NSNotification) {
  662. if self.view?.window == nil { return }
  663. if let userInfo = notification.userInfo as NSDictionary? {
  664. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["metadataNew"] as? tableMetadata, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
  665. NCCollectionCommon.shared.notificationMoveFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, errorCode: errorCode, errorDescription: errorDescription)
  666. }
  667. }
  668. }
  669. @objc func copyFile(_ notification: NSNotification) { }
  670. @objc func renameFile(_ notification: NSNotification) {
  671. if self.view?.window == nil { return }
  672. if let userInfo = notification.userInfo as NSDictionary? {
  673. if let metadata = userInfo["metadata"] as? tableMetadata, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
  674. NCCollectionCommon.shared.notificationRenameFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, errorCode: errorCode, errorDescription: errorDescription)
  675. }
  676. }
  677. }
  678. @objc func createFolder(_ notification: NSNotification) {
  679. if self.view?.window == nil { return }
  680. if let userInfo = notification.userInfo as NSDictionary? {
  681. if let fileName = userInfo["fileName"] as? String, let serverUrl = userInfo["serverUrl"] as? String,let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
  682. NCCollectionCommon.shared.notificationCreateFolder(collectionView: collectionView, dataSource: dataSource, fileName: fileName, serverUrl: serverUrl, errorCode: errorCode, errorDescription: errorDescription)
  683. }
  684. }
  685. }
  686. @objc func favoriteFile(_ notification: NSNotification) {
  687. if self.view?.window == nil { return }
  688. if let userInfo = notification.userInfo as NSDictionary? {
  689. if let metadata = userInfo["metadata"] as? tableMetadata, let favorite = userInfo["favorite"] as? Bool, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
  690. NCCollectionCommon.shared.notificationFavoriteFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, favorite: favorite, errorCode: errorCode, errorDescription: errorDescription)
  691. }
  692. }
  693. }
  694. @objc func downloadStartFile(_ notification: NSNotification) {
  695. if self.view?.window == nil { return }
  696. if let userInfo = notification.userInfo as NSDictionary? {
  697. if let metadata = userInfo["metadata"] as? tableMetadata {
  698. NCCollectionCommon.shared.notificationDownloadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  699. }
  700. }
  701. }
  702. @objc func downloadedFile(_ notification: NSNotification) {
  703. if self.view?.window == nil { return }
  704. if let userInfo = notification.userInfo as NSDictionary? {
  705. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  706. NCCollectionCommon.shared.notificationDownloadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  707. }
  708. }
  709. }
  710. @objc func downloadCancelFile(_ notification: NSNotification) {
  711. if self.view?.window == nil { return }
  712. if let userInfo = notification.userInfo as NSDictionary? {
  713. if let metadata = userInfo["metadata"] as? tableMetadata {
  714. NCCollectionCommon.shared.notificationDownloadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  715. }
  716. }
  717. }
  718. @objc func uploadStartFile(_ notification: NSNotification) {
  719. if self.view?.window == nil { return }
  720. if let userInfo = notification.userInfo as NSDictionary? {
  721. if let metadata = userInfo["metadata"] as? tableMetadata {
  722. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  723. NCCollectionCommon.shared.notificationUploadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  724. }
  725. }
  726. }
  727. }
  728. @objc func uploadedFile(_ notification: NSNotification) {
  729. if self.view?.window == nil { return }
  730. if let userInfo = notification.userInfo as NSDictionary? {
  731. if let metadata = userInfo["metadata"] as? tableMetadata, let ocIdTemp = userInfo["ocIdTemp"] as? String, let _ = userInfo["errorCode"] as? Int {
  732. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  733. NCCollectionCommon.shared.notificationUploadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, ocIdTemp:ocIdTemp)
  734. }
  735. }
  736. }
  737. }
  738. @objc func uploadCancelFile(_ notification: NSNotification) {
  739. if self.view?.window == nil { return }
  740. if let userInfo = notification.userInfo as NSDictionary? {
  741. if let metadata = userInfo["metadata"] as? tableMetadata {
  742. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  743. if !NCCollectionCommon.shared.notificationUploadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata) {
  744. self.reloadDataSource()
  745. }
  746. }
  747. }
  748. }
  749. }
  750. @objc func triggerProgressTask(_ notification: NSNotification) {
  751. if self.view?.window == nil { return }
  752. if let userInfo = notification.userInfo as NSDictionary? {
  753. if let ocId = userInfo["ocId"] as? String {
  754. let progressNumber = userInfo["progress"] as? NSNumber ?? 0
  755. let progress = progressNumber.floatValue
  756. NCCollectionCommon.shared.notificationTriggerProgressTask(collectionView: collectionView, dataSource: dataSource, ocId: ocId, progress: progress)
  757. }
  758. }
  759. }
  760. // MARK: DZNEmpty
  761. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  762. return NCBrandColor.sharedInstance.backgroundView
  763. }
  764. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  765. return nil
  766. }
  767. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  768. return nil
  769. }
  770. func description(forEmptyDataSet scrollView: UIScrollView!) -> NSAttributedString! {
  771. return nil
  772. }
  773. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  774. return true
  775. }
  776. // MARK: SEARCH
  777. func updateSearchResults(for searchController: UISearchController) {
  778. timerInputSearch?.invalidate()
  779. timerInputSearch = Timer.scheduledTimer(timeInterval: 1.5, target: self, selector: #selector(searchDataSourceNetwork), userInfo: nil, repeats: false)
  780. literalSearch = searchController.searchBar.text ?? ""
  781. }
  782. func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
  783. }
  784. // MARK: TAP EVENT
  785. func tapSwitchHeader(sender: Any) {
  786. if collectionView.collectionViewLayout == gridLayout {
  787. // list layout
  788. UIView.animate(withDuration: 0.0, animations: {
  789. self.collectionView.collectionViewLayout.invalidateLayout()
  790. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  791. self.collectionView.reloadData()
  792. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  793. })
  794. })
  795. layout = k_layout_list
  796. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  797. } else {
  798. // grid layout
  799. UIView.animate(withDuration: 0.0, animations: {
  800. self.collectionView.collectionViewLayout.invalidateLayout()
  801. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  802. self.collectionView.reloadData()
  803. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  804. })
  805. })
  806. layout = k_layout_grid
  807. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  808. }
  809. }
  810. func tapOrderHeader(sender: Any) {
  811. let sortMenu = NCSortMenu()
  812. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  813. }
  814. func tapMoreHeader(sender: Any) {
  815. }
  816. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  817. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender)
  818. }
  819. func tapShareListItem(with objectId: String, sender: Any) {
  820. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else {
  821. return
  822. }
  823. NCMainCommon.shared.openShare(ViewController: self, metadata: metadata, indexPage: 2)
  824. }
  825. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  826. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else { return }
  827. guard let tabBarController = self.tabBarController else { return }
  828. if namedButtonMore == "more" {
  829. toggleMoreMenu(viewController: tabBarController, metadata: metadata, selectOcId: selectOcId)
  830. } else if namedButtonMore == "stop" {
  831. NCMainCommon.shared.cancelTransferMetadata(metadata, uploadStatusForcedStart: false)
  832. }
  833. }
  834. // MARK: SEGUE
  835. @objc func segue(metadata: tableMetadata) {
  836. self.metadataPush = metadata
  837. performSegue(withIdentifier: "segueDetail", sender: self)
  838. }
  839. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  840. let photoDataSource: NSMutableArray = []
  841. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  842. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  843. photoDataSource.add(metadata)
  844. }
  845. }
  846. if let segueNavigationController = segue.destination as? UINavigationController {
  847. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  848. segueViewController.metadata = metadataPush
  849. }
  850. }
  851. }
  852. // MARK: - NC API & Algorithm
  853. @objc func reloadDataSource() { }
  854. @objc func reloadDataSourceNetwork() { }
  855. @objc func searchDataSourceNetwork() { }
  856. }
  857. // MARK: - 3D Touch peek and pop
  858. extension NCCollectionViewCommon: UIViewControllerPreviewingDelegate {
  859. func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
  860. guard let point = collectionView?.convert(location, from: collectionView?.superview) else { return nil }
  861. guard let indexPath = collectionView?.indexPathForItem(at: point) else { return nil }
  862. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return nil }
  863. guard let viewController = UIStoryboard(name: "CCPeekPop", bundle: nil).instantiateViewController(withIdentifier: "PeekPopImagePreview") as? CCPeekPop else { return nil }
  864. viewController.metadata = metadata
  865. if layout == k_layout_grid {
  866. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCGridCell else { return nil }
  867. previewingContext.sourceRect = cell.frame
  868. viewController.imageFile = cell.imageItem.image
  869. } else {
  870. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCListCell else { return nil }
  871. previewingContext.sourceRect = cell.frame
  872. viewController.imageFile = cell.imageItem.image
  873. }
  874. viewController.showOpenIn = true
  875. viewController.showOpenQuickLook = NCUtility.shared.isQuickLookDisplayable(metadata: metadata)
  876. viewController.showShare = false
  877. return viewController
  878. }
  879. func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) {
  880. guard let indexPath = collectionView?.indexPathForItem(at: previewingContext.sourceRect.origin) else { return }
  881. collectionView(collectionView, didSelectItemAt: indexPath)
  882. }
  883. }
  884. // MARK: - Collection View
  885. extension NCCollectionViewCommon: UICollectionViewDelegate {
  886. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { }
  887. }
  888. extension NCCollectionViewCommon: UICollectionViewDataSource {
  889. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  890. if (indexPath.section == 0) {
  891. if kind == UICollectionView.elementKindSectionHeader {
  892. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  893. if collectionView.collectionViewLayout == gridLayout {
  894. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  895. } else {
  896. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  897. }
  898. header.delegate = self
  899. header.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  900. header.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  901. header.setStatusButton(count: dataSource?.metadatas.count ?? 0)
  902. header.setTitleSorted(datasourceTitleButton: titleButton)
  903. if groupBy == "none" {
  904. header.labelSection.isHidden = true
  905. header.labelSectionHeightConstraint.constant = 0
  906. } else {
  907. header.labelSection.isHidden = false
  908. header.setTitleLabel(title: "")
  909. header.labelSectionHeightConstraint.constant = sectionHeaderHeight
  910. }
  911. return header
  912. } else {
  913. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  914. let info = dataSource?.getFilesInformation()
  915. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  916. return footer
  917. }
  918. } else {
  919. if kind == UICollectionView.elementKindSectionHeader {
  920. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCSectionHeader
  921. header.setTitleLabel(title: "")
  922. return header
  923. } else {
  924. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  925. let info = dataSource?.getFilesInformation()
  926. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  927. return footer
  928. }
  929. }
  930. }
  931. func numberOfSections(in collectionView: UICollectionView) -> Int {
  932. return 1
  933. }
  934. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  935. return dataSource?.numberOfItemsInSection(section: section) ?? 1
  936. }
  937. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  938. let cell: UICollectionViewCell
  939. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else {
  940. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  941. }
  942. if layout == k_layout_grid {
  943. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  944. } else {
  945. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  946. }
  947. let shares = NCManageDatabase.sharedInstance.getTableShares(account: metadata.account, serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  948. NCCollectionCommon.shared.cellForItemAt(indexPath: indexPath, collectionView: collectionView, cell: cell, metadata: metadata, metadataFolder: nil, serverUrl: metadata.serverUrl, isEditMode: isEditMode, selectocId: selectOcId, autoUploadFileName: autoUploadFileName, autoUploadDirectory: autoUploadDirectory, hideButtonMore: false, downloadThumbnail: true, shares: shares, source: self, dataSource: dataSource)
  949. return cell
  950. }
  951. }
  952. extension NCCollectionViewCommon: UICollectionViewDelegateFlowLayout {
  953. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  954. if section == 0 {
  955. if groupBy == "none" {
  956. return CGSize(width: collectionView.frame.width, height: headerMenuHeight)
  957. } else {
  958. return CGSize(width: collectionView.frame.width, height: headerMenuHeight + sectionHeaderHeight)
  959. }
  960. } else {
  961. return CGSize(width: collectionView.frame.width, height: sectionHeaderHeight)
  962. }
  963. }
  964. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  965. let sections = 1
  966. if (section == sections - 1) {
  967. return CGSize(width: collectionView.frame.width, height: footerHeight)
  968. } else {
  969. return CGSize(width: collectionView.frame.width, height: 0)
  970. }
  971. }
  972. }