NCGroupfolders.swift 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. //
  2. // NCGroupfolders.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 14/04/2023.
  6. // Copyright © 2023 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 UIKit
  24. import NextcloudKit
  25. class NCGroupfolders: NCCollectionViewCommon {
  26. required init?(coder aDecoder: NSCoder) {
  27. super.init(coder: aDecoder)
  28. titleCurrentFolder = NSLocalizedString("_group_folders_", comment: "")
  29. layoutKey = NCGlobal.shared.layoutViewGroupfolders
  30. enableSearchBar = false
  31. headerRichWorkspaceDisable = true
  32. emptyImage = utility.loadImage(named: "folder_group", colors: [NCBrandColor.shared.brandElement])
  33. emptyTitle = "_files_no_files_"
  34. emptyDescription = "_tutorial_groupfolders_view_"
  35. }
  36. // MARK: - View Life Cycle
  37. override func viewWillAppear(_ animated: Bool) {
  38. super.viewWillAppear(animated)
  39. if dataSource.metadatas.isEmpty {
  40. reloadDataSource()
  41. }
  42. reloadDataSourceNetwork()
  43. }
  44. // MARK: - DataSource + NC Endpoint
  45. override func queryDB() {
  46. super.queryDB()
  47. var metadatas: [tableMetadata] = []
  48. if self.serverUrl.isEmpty {
  49. metadatas = NCManageDatabase.shared.getMetadatasFromGroupfolders(account: self.appDelegate.account, urlBase: self.appDelegate.urlBase, userId: self.appDelegate.userId)
  50. } else {
  51. metadatas = NCManageDatabase.shared.getMetadatas(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", self.appDelegate.account, self.serverUrl))
  52. }
  53. self.dataSource = NCDataSource(metadatas: metadatas, account: self.appDelegate.account, layoutForView: layoutForView, providers: self.providers, searchResults: self.searchResults)
  54. }
  55. override func reloadDataSourceNetwork(withQueryDB: Bool = false) {
  56. super.reloadDataSourceNetwork()
  57. let homeServerUrl = utilityFileSystem.getHomeServer(urlBase: self.appDelegate.urlBase, userId: self.appDelegate.userId)
  58. NextcloudKit.shared.getGroupfolders(account: self.appDelegate.account, options: NKRequestOptions(queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)) { task in
  59. self.dataSourceTask = task
  60. self.collectionView.reloadData()
  61. } completion: { account, results, _, error in
  62. if error == .success, let groupfolders = results {
  63. NCManageDatabase.shared.addGroupfolders(account: account, groupfolders: groupfolders)
  64. Task {
  65. for groupfolder in groupfolders {
  66. let mountPoint = groupfolder.mountPoint.hasPrefix("/") ? groupfolder.mountPoint : "/" + groupfolder.mountPoint
  67. let serverUrlFileName = homeServerUrl + mountPoint
  68. if NCManageDatabase.shared.getMetadataFromDirectory(account: self.appDelegate.account, serverUrl: serverUrlFileName) == nil {
  69. let results = await NCNetworking.shared.readFileOrFolder(serverUrlFileName: serverUrlFileName, depth: "0", showHiddenFiles: NCKeychain().showHiddenFiles, account: account)
  70. if results.error == .success, let file = results.files.first {
  71. let isDirectoryE2EE = self.utilityFileSystem.isDirectoryE2EE(file: file)
  72. let metadata = NCManageDatabase.shared.convertFileToMetadata(file, isDirectoryE2EE: isDirectoryE2EE)
  73. NCManageDatabase.shared.addMetadata(metadata)
  74. NCManageDatabase.shared.addDirectory(e2eEncrypted: isDirectoryE2EE, favorite: metadata.favorite, ocId: metadata.ocId, fileId: metadata.fileId, permissions: metadata.permissions, serverUrl: serverUrlFileName, account: metadata.account)
  75. }
  76. }
  77. }
  78. self.reloadDataSource()
  79. }
  80. } else {
  81. self.reloadDataSource(withQueryDB: withQueryDB)
  82. }
  83. }
  84. }
  85. }