NCCollectionCommon.swift 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083
  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 notificationDownloadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  326. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  327. let indexPath = IndexPath(row: row, section: 0)
  328. collectionView?.reloadItems(at: [indexPath])
  329. }
  330. }
  331. func notificationDownloadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  332. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  333. let indexPath = IndexPath(row: row, section: 0)
  334. collectionView?.reloadItems(at: [indexPath])
  335. }
  336. }
  337. func notificationDownloadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  338. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  339. let indexPath = IndexPath(row: row, section: 0)
  340. collectionView?.reloadItems(at: [indexPath])
  341. }
  342. }
  343. func notificationUploadStartFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) {
  344. if let row = dataSource?.addMetadata(metadata) {
  345. let indexPath = IndexPath(row: row, section: 0)
  346. collectionView?.performBatchUpdates({
  347. collectionView?.insertItems(at: [indexPath])
  348. }, completion: { (_) in
  349. collectionView?.reloadData()
  350. })
  351. }
  352. }
  353. func notificationUploadedFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata, ocIdTemp: String) {
  354. _ = dataSource?.reloadMetadata(ocId: metadata.ocId, ocIdTemp: ocIdTemp)
  355. collectionView?.reloadData()
  356. }
  357. func notificationUploadCancelFile(collectionView: UICollectionView?, dataSource: NCDataSource?, metadata: tableMetadata) -> Bool {
  358. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  359. let indexPath = IndexPath(row: row, section: 0)
  360. collectionView?.performBatchUpdates({
  361. collectionView?.deleteItems(at: [indexPath])
  362. }, completion: { (_) in
  363. collectionView?.reloadData()
  364. })
  365. return true
  366. }
  367. return false
  368. }
  369. func notificationTriggerProgressTask(collectionView: UICollectionView?, dataSource: NCDataSource?, ocId: String, progress: Float) {
  370. if let index = dataSource?.getIndexMetadata(ocId: ocId) {
  371. if let cell = collectionView?.cellForItem(at: IndexPath(row: index, section: 0)) {
  372. if cell is NCListCell {
  373. let cell = cell as! NCListCell
  374. if progress > 0 {
  375. cell.progressView?.isHidden = false
  376. cell.progressView?.progress = progress
  377. cell.setButtonMore(named: "stop")
  378. }
  379. } else if cell is NCGridCell {
  380. let cell = cell as! NCGridCell
  381. if progress > 0 {
  382. cell.progressView.isHidden = false
  383. cell.progressView.progress = progress
  384. cell.setButtonMore(named: "stop")
  385. }
  386. }
  387. }
  388. }
  389. }
  390. }
  391. // MARK: - List Layout
  392. class NCListLayout: UICollectionViewFlowLayout {
  393. let itemHeight: CGFloat = 60
  394. override init() {
  395. super.init()
  396. sectionHeadersPinToVisibleBounds = false
  397. minimumInteritemSpacing = 0
  398. minimumLineSpacing = 1
  399. self.scrollDirection = .vertical
  400. self.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
  401. }
  402. required init?(coder aDecoder: NSCoder) {
  403. fatalError("init(coder:) has not been implemented")
  404. }
  405. override var itemSize: CGSize {
  406. get {
  407. if let collectionView = collectionView {
  408. let itemWidth: CGFloat = collectionView.frame.width
  409. return CGSize(width: itemWidth, height: self.itemHeight)
  410. }
  411. // Default fallback
  412. return CGSize(width: 100, height: 100)
  413. }
  414. set {
  415. super.itemSize = newValue
  416. }
  417. }
  418. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  419. return proposedContentOffset
  420. }
  421. }
  422. // MARK: - Grid Layout
  423. class NCGridLayout: UICollectionViewFlowLayout {
  424. var heightLabelPlusButton: CGFloat = 45
  425. var marginLeftRight: CGFloat = 6
  426. var itemForLine: CGFloat = 3
  427. override init() {
  428. super.init()
  429. sectionHeadersPinToVisibleBounds = false
  430. minimumInteritemSpacing = 1
  431. minimumLineSpacing = marginLeftRight
  432. self.scrollDirection = .vertical
  433. self.sectionInset = UIEdgeInsets(top: 10, left: marginLeftRight, bottom: 0, right: marginLeftRight)
  434. }
  435. required init?(coder aDecoder: NSCoder) {
  436. fatalError("init(coder:) has not been implemented")
  437. }
  438. override var itemSize: CGSize {
  439. get {
  440. if let collectionView = collectionView {
  441. let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
  442. let itemHeight: CGFloat = itemWidth + heightLabelPlusButton
  443. return CGSize(width: itemWidth, height: itemHeight)
  444. }
  445. // Default fallback
  446. return CGSize(width: 100, height: 100)
  447. }
  448. set {
  449. super.itemSize = newValue
  450. }
  451. }
  452. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  453. return proposedContentOffset
  454. }
  455. }
  456. // MARK: - NCSelect + Delegate
  457. extension NCCollectionCommon: NCSelectDelegate {
  458. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, array: [Any], buttonType: String, overwrite: Bool) {
  459. if (serverUrl != nil && array.count > 0) {
  460. var move = true
  461. if buttonType == "done1" { move = false }
  462. for metadata in array as! [tableMetadata] {
  463. NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: move)
  464. }
  465. }
  466. }
  467. func openSelectView(viewController: UIViewController, array: [Any]) {
  468. let navigationController = UIStoryboard.init(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
  469. let vc = navigationController.topViewController as! NCSelect
  470. vc.delegate = self
  471. vc.hideButtonCreateFolder = false
  472. vc.selectFile = false
  473. vc.includeDirectoryE2EEncryption = false
  474. vc.includeImages = false
  475. vc.type = ""
  476. vc.titleButtonDone = NSLocalizedString("_move_", comment: "")
  477. vc.titleButtonDone1 = NSLocalizedString("_copy_",comment: "")
  478. vc.isButtonDone1Hide = false
  479. vc.isOverwriteHide = false
  480. vc.keyLayout = k_layout_view_move
  481. vc.array = array
  482. navigationController.modalPresentationStyle = .fullScreen
  483. viewController.present(navigationController, animated: true, completion: nil)
  484. }
  485. }
  486. // MARK: - Nextcloud CollectionView Common
  487. class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  488. @IBOutlet weak var collectionView: UICollectionView!
  489. @objc var serverUrl = ""
  490. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  491. internal var metadataPush: tableMetadata?
  492. internal var isEditMode = false
  493. internal var selectOcId: [String] = []
  494. internal var dataSource: NCDataSource?
  495. internal var layout = ""
  496. internal var groupBy = ""
  497. internal var titleButton = ""
  498. internal var itemForLine = 0
  499. private var autoUploadFileName = ""
  500. private var autoUploadDirectory = ""
  501. private var listLayout: NCListLayout!
  502. private var gridLayout: NCGridLayout!
  503. private let headerMenuHeight: CGFloat = 50
  504. private let sectionHeaderHeight: CGFloat = 20
  505. private let footerHeight: CGFloat = 50
  506. internal let refreshControl = UIRefreshControl()
  507. // DECLARE
  508. internal var layoutKey = ""
  509. internal var titleCurrentFolder = ""
  510. required init?(coder aDecoder: NSCoder) {
  511. super.init(coder: aDecoder)
  512. }
  513. override func viewDidLoad() {
  514. super.viewDidLoad()
  515. // Cell
  516. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  517. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  518. // Header
  519. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  520. collectionView.register(UINib.init(nibName: "NCSectionHeader", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeader")
  521. // Footer
  522. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  523. collectionView.alwaysBounceVertical = true
  524. listLayout = NCListLayout()
  525. gridLayout = NCGridLayout()
  526. // Refresh Control
  527. collectionView.addSubview(refreshControl)
  528. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  529. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  530. refreshControl.addTarget(self, action: #selector(reloadDataSourceNetwork), for: .valueChanged)
  531. // empty Data Source
  532. self.collectionView.emptyDataSetDelegate = self
  533. self.collectionView.emptyDataSetSource = self
  534. // 3D Touch peek and pop
  535. if traitCollection.forceTouchCapability == .available {
  536. registerForPreviewing(with: self, sourceView: view)
  537. }
  538. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  539. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  540. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_deleteFile), object: nil)
  541. NotificationCenter.default.addObserver(self, selector: #selector(downloadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadStartFile), object: nil)
  542. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
  543. NotificationCenter.default.addObserver(self, selector: #selector(downloadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadCancelFile), object: nil)
  544. NotificationCenter.default.addObserver(self, selector: #selector(uploadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadStartFile), object: nil)
  545. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
  546. NotificationCenter.default.addObserver(self, selector: #selector(uploadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadCancelFile), object: nil)
  547. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_progressTask), object:nil)
  548. changeTheming()
  549. }
  550. override func viewWillAppear(_ animated: Bool) {
  551. super.viewWillAppear(animated)
  552. self.navigationItem.title = titleCurrentFolder
  553. // get auto upload folder
  554. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  555. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  556. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: layoutKey)
  557. gridLayout.itemForLine = CGFloat(itemForLine)
  558. if layout == k_layout_list {
  559. collectionView?.collectionViewLayout = listLayout
  560. } else {
  561. collectionView?.collectionViewLayout = gridLayout
  562. }
  563. reloadDataSource()
  564. }
  565. override func viewDidAppear(_ animated: Bool) {
  566. super.viewDidAppear(animated)
  567. reloadDataSourceNetwork()
  568. }
  569. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  570. super.viewWillTransition(to: size, with: coordinator)
  571. coordinator.animate(alongsideTransition: nil) { _ in
  572. self.collectionView?.collectionViewLayout.invalidateLayout()
  573. }
  574. }
  575. // MARK: - NotificationCenter
  576. @objc func changeTheming() {
  577. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  578. }
  579. @objc func deleteFile(_ notification: NSNotification) {
  580. if self.view?.window == nil { return }
  581. if let userInfo = notification.userInfo as NSDictionary? {
  582. 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 {
  583. NCCollectionCommon.shared.notificationDeleteFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, errorCode: errorCode, errorDescription: errorDescription, onlyLocal: onlyLocal)
  584. }
  585. }
  586. }
  587. @objc func downloadStartFile(_ notification: NSNotification) {
  588. if self.view?.window == nil { return }
  589. if let userInfo = notification.userInfo as NSDictionary? {
  590. if let metadata = userInfo["metadata"] as? tableMetadata {
  591. NCCollectionCommon.shared.notificationDownloadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  592. }
  593. }
  594. }
  595. @objc func downloadedFile(_ notification: NSNotification) {
  596. if self.view?.window == nil { return }
  597. if let userInfo = notification.userInfo as NSDictionary? {
  598. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  599. NCCollectionCommon.shared.notificationDownloadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  600. }
  601. }
  602. }
  603. @objc func downloadCancelFile(_ notification: NSNotification) {
  604. if self.view?.window == nil { return }
  605. if let userInfo = notification.userInfo as NSDictionary? {
  606. if let metadata = userInfo["metadata"] as? tableMetadata {
  607. NCCollectionCommon.shared.notificationDownloadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  608. }
  609. }
  610. }
  611. @objc func uploadStartFile(_ notification: NSNotification) {
  612. if self.view?.window == nil { return }
  613. if let userInfo = notification.userInfo as NSDictionary? {
  614. if let metadata = userInfo["metadata"] as? tableMetadata {
  615. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  616. NCCollectionCommon.shared.notificationUploadStartFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  617. }
  618. }
  619. }
  620. }
  621. @objc func uploadedFile(_ notification: NSNotification) {
  622. if self.view?.window == nil { return }
  623. if let userInfo = notification.userInfo as NSDictionary? {
  624. if let metadata = userInfo["metadata"] as? tableMetadata, let ocIdTemp = userInfo["ocIdTemp"] as? String, let _ = userInfo["errorCode"] as? Int {
  625. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  626. NCCollectionCommon.shared.notificationUploadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, ocIdTemp:ocIdTemp)
  627. }
  628. }
  629. }
  630. }
  631. @objc func uploadCancelFile(_ notification: NSNotification) {
  632. if self.view?.window == nil { return }
  633. if let userInfo = notification.userInfo as NSDictionary? {
  634. if let metadata = userInfo["metadata"] as? tableMetadata {
  635. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  636. if !NCCollectionCommon.shared.notificationUploadCancelFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata) {
  637. self.reloadDataSource()
  638. }
  639. }
  640. }
  641. }
  642. }
  643. @objc func triggerProgressTask(_ notification: NSNotification) {
  644. if self.view?.window == nil { return }
  645. if let userInfo = notification.userInfo as NSDictionary? {
  646. if let ocId = userInfo["ocId"] as? String {
  647. let progressNumber = userInfo["progress"] as? NSNumber ?? 0
  648. let progress = progressNumber.floatValue
  649. NCCollectionCommon.shared.notificationTriggerProgressTask(collectionView: collectionView, dataSource: dataSource, ocId: ocId, progress: progress)
  650. }
  651. }
  652. }
  653. // MARK: DZNEmpty
  654. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  655. return NCBrandColor.sharedInstance.backgroundView
  656. }
  657. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  658. return nil
  659. }
  660. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  661. return nil
  662. }
  663. func description(forEmptyDataSet scrollView: UIScrollView!) -> NSAttributedString! {
  664. return nil
  665. }
  666. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  667. return true
  668. }
  669. // MARK: TAP EVENT
  670. func tapSwitchHeader(sender: Any) {
  671. if collectionView.collectionViewLayout == gridLayout {
  672. // list layout
  673. UIView.animate(withDuration: 0.0, animations: {
  674. self.collectionView.collectionViewLayout.invalidateLayout()
  675. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  676. self.collectionView.reloadData()
  677. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  678. })
  679. })
  680. layout = k_layout_list
  681. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  682. } else {
  683. // grid layout
  684. UIView.animate(withDuration: 0.0, animations: {
  685. self.collectionView.collectionViewLayout.invalidateLayout()
  686. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  687. self.collectionView.reloadData()
  688. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  689. })
  690. })
  691. layout = k_layout_grid
  692. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  693. }
  694. }
  695. func tapOrderHeader(sender: Any) {
  696. let sortMenu = NCSortMenu()
  697. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  698. }
  699. func tapMoreHeader(sender: Any) {
  700. }
  701. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  702. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender)
  703. }
  704. func tapShareListItem(with objectId: String, sender: Any) {
  705. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else {
  706. return
  707. }
  708. NCMainCommon.shared.openShare(ViewController: self, metadata: metadata, indexPage: 2)
  709. }
  710. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  711. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else { return }
  712. guard let tabBarController = self.tabBarController else { return }
  713. if namedButtonMore == "more" {
  714. toggleMoreMenu(viewController: tabBarController, metadata: metadata)
  715. } else if namedButtonMore == "stop" {
  716. NCMainCommon.shared.cancelTransferMetadata(metadata, uploadStatusForcedStart: false)
  717. }
  718. }
  719. // MARK: SEGUE
  720. @objc func segue(metadata: tableMetadata) {
  721. self.metadataPush = metadata
  722. performSegue(withIdentifier: "segueDetail", sender: self)
  723. }
  724. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  725. let photoDataSource: NSMutableArray = []
  726. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  727. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  728. photoDataSource.add(metadata)
  729. }
  730. }
  731. if let segueNavigationController = segue.destination as? UINavigationController {
  732. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  733. segueViewController.metadata = metadataPush
  734. }
  735. }
  736. }
  737. // MARK: - NC API & Algorithm
  738. @objc func reloadDataSource() { }
  739. @objc func reloadDataSourceNetwork() { }
  740. }
  741. // MARK: - 3D Touch peek and pop
  742. extension NCCollectionViewCommon: UIViewControllerPreviewingDelegate {
  743. func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
  744. guard let point = collectionView?.convert(location, from: collectionView?.superview) else { return nil }
  745. guard let indexPath = collectionView?.indexPathForItem(at: point) else { return nil }
  746. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return nil }
  747. guard let viewController = UIStoryboard(name: "CCPeekPop", bundle: nil).instantiateViewController(withIdentifier: "PeekPopImagePreview") as? CCPeekPop else { return nil }
  748. viewController.metadata = metadata
  749. if layout == k_layout_grid {
  750. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCGridCell else { return nil }
  751. previewingContext.sourceRect = cell.frame
  752. viewController.imageFile = cell.imageItem.image
  753. } else {
  754. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCListCell else { return nil }
  755. previewingContext.sourceRect = cell.frame
  756. viewController.imageFile = cell.imageItem.image
  757. }
  758. viewController.showOpenIn = true
  759. viewController.showOpenQuickLook = NCUtility.shared.isQuickLookDisplayable(metadata: metadata)
  760. viewController.showShare = false
  761. return viewController
  762. }
  763. func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) {
  764. guard let indexPath = collectionView?.indexPathForItem(at: previewingContext.sourceRect.origin) else { return }
  765. collectionView(collectionView, didSelectItemAt: indexPath)
  766. }
  767. }
  768. // MARK: - Collection View
  769. extension NCCollectionViewCommon: UICollectionViewDelegate {
  770. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { }
  771. }
  772. extension NCCollectionViewCommon: UICollectionViewDataSource {
  773. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  774. if (indexPath.section == 0) {
  775. if kind == UICollectionView.elementKindSectionHeader {
  776. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  777. if collectionView.collectionViewLayout == gridLayout {
  778. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  779. } else {
  780. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  781. }
  782. header.delegate = self
  783. header.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  784. header.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  785. header.setStatusButton(count: dataSource?.metadatas.count ?? 0)
  786. header.setTitleSorted(datasourceTitleButton: titleButton)
  787. if groupBy == "none" {
  788. header.labelSection.isHidden = true
  789. header.labelSectionHeightConstraint.constant = 0
  790. } else {
  791. header.labelSection.isHidden = false
  792. header.setTitleLabel(title: "")
  793. header.labelSectionHeightConstraint.constant = sectionHeaderHeight
  794. }
  795. return header
  796. } else {
  797. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  798. let info = dataSource?.getFilesInformation()
  799. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  800. return footer
  801. }
  802. } else {
  803. if kind == UICollectionView.elementKindSectionHeader {
  804. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCSectionHeader
  805. header.setTitleLabel(title: "")
  806. return header
  807. } else {
  808. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  809. let info = dataSource?.getFilesInformation()
  810. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  811. return footer
  812. }
  813. }
  814. }
  815. func numberOfSections(in collectionView: UICollectionView) -> Int {
  816. return 1
  817. }
  818. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  819. return dataSource?.numberOfItemsInSection(section: section) ?? 1
  820. }
  821. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  822. let cell: UICollectionViewCell
  823. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else {
  824. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  825. }
  826. if layout == k_layout_grid {
  827. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  828. } else {
  829. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  830. }
  831. let shares = NCManageDatabase.sharedInstance.getTableShares(account: metadata.account, serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  832. 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)
  833. return cell
  834. }
  835. }
  836. extension NCCollectionViewCommon: UICollectionViewDelegateFlowLayout {
  837. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  838. if section == 0 {
  839. if groupBy == "none" {
  840. return CGSize(width: collectionView.frame.width, height: headerMenuHeight)
  841. } else {
  842. return CGSize(width: collectionView.frame.width, height: headerMenuHeight + sectionHeaderHeight)
  843. }
  844. } else {
  845. return CGSize(width: collectionView.frame.width, height: sectionHeaderHeight)
  846. }
  847. }
  848. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  849. let sections = 1
  850. if (section == sections - 1) {
  851. return CGSize(width: collectionView.frame.width, height: footerHeight)
  852. } else {
  853. return CGSize(width: collectionView.frame.width, height: 0)
  854. }
  855. }
  856. }