NCSelect.swift 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. //
  2. // NCSelect.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 06/11/2018.
  6. // Copyright © 2018 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. import SwiftUI
  25. import NextcloudKit
  26. @objc protocol NCSelectDelegate {
  27. @objc func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], indexPath: [IndexPath], overwrite: Bool, copy: Bool, move: Bool)
  28. }
  29. class NCSelect: UIViewController, UIGestureRecognizerDelegate, UIAdaptivePresentationControllerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, NCEmptyDataSetDelegate {
  30. @IBOutlet private var collectionView: UICollectionView!
  31. @IBOutlet private var buttonCancel: UIBarButtonItem!
  32. @IBOutlet private var bottomContraint: NSLayoutConstraint?
  33. private let appDelegate = (UIApplication.shared.delegate as? AppDelegate)!
  34. private var selectCommandViewSelect: NCSelectCommandView?
  35. let utilityFileSystem = NCUtilityFileSystem()
  36. let utility = NCUtility()
  37. @objc enum selectType: Int {
  38. case select
  39. case selectCreateFolder
  40. case copyMove
  41. case nothing
  42. }
  43. // ------ external settings ------------------------------------
  44. @objc weak var delegate: NCSelectDelegate?
  45. @objc var typeOfCommandView: selectType = .select
  46. @objc var includeDirectoryE2EEncryption = false
  47. @objc var includeImages = false
  48. @objc var enableSelectFile = false
  49. @objc var type = ""
  50. @objc var items: [tableMetadata] = []
  51. @objc var selectIndexPath: [IndexPath] = []
  52. var titleCurrentFolder = NCBrandOptions.shared.brand
  53. var serverUrl = ""
  54. // -------------------------------------------------------------
  55. private var emptyDataSet: NCEmptyDataSet?
  56. private var serverUrlPush = ""
  57. private var metadataFolder = tableMetadata()
  58. private var networkInProgress = false
  59. private var overwrite = true
  60. private var dataSource = NCDataSource()
  61. internal var richWorkspaceText: String?
  62. internal var headerMenu: NCSectionHeaderMenu?
  63. private var autoUploadFileName = ""
  64. private var autoUploadDirectory = ""
  65. private var backgroundImageView = UIImageView()
  66. private var activeAccount: tableAccount!
  67. private let window = UIApplication.shared.connectedScenes.flatMap { ($0 as? UIWindowScene)?.windows ?? [] }.first { $0.isKeyWindow }
  68. // MARK: - View Life Cycle
  69. override func viewDidLoad() {
  70. super.viewDidLoad()
  71. self.navigationController?.navigationBar.prefersLargeTitles = true
  72. self.navigationController?.presentationController?.delegate = self
  73. view.backgroundColor = .systemBackground
  74. selectCommandViewSelect?.separatorView.backgroundColor = .separator
  75. activeAccount = NCManageDatabase.shared.getActiveAccount()
  76. // Cell
  77. collectionView.register(UINib(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  78. collectionView.collectionViewLayout = NCListLayout()
  79. // Header
  80. collectionView.register(UINib(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  81. // Footer
  82. collectionView.register(UINib(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  83. collectionView.alwaysBounceVertical = true
  84. collectionView.backgroundColor = .systemBackground
  85. buttonCancel.title = NSLocalizedString("_cancel_", comment: "")
  86. bottomContraint?.constant = window?.rootViewController?.view.safeAreaInsets.bottom ?? 0
  87. // Empty
  88. emptyDataSet = NCEmptyDataSet(view: collectionView, offset: NCGlobal.shared.heightButtonsView, delegate: self)
  89. // Type of command view
  90. if typeOfCommandView == .select || typeOfCommandView == .selectCreateFolder {
  91. if typeOfCommandView == .select {
  92. selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewSelect", owner: self, options: nil)?.first as? NCSelectCommandView
  93. } else {
  94. selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewSelect+CreateFolder", owner: self, options: nil)?.first as? NCSelectCommandView
  95. }
  96. self.view.addSubview(selectCommandViewSelect!)
  97. selectCommandViewSelect?.selectView = self
  98. selectCommandViewSelect?.translatesAutoresizingMaskIntoConstraints = false
  99. selectCommandViewSelect?.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
  100. selectCommandViewSelect?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
  101. selectCommandViewSelect?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
  102. selectCommandViewSelect?.heightAnchor.constraint(equalToConstant: 80).isActive = true
  103. bottomContraint?.constant = 80
  104. }
  105. if typeOfCommandView == .copyMove {
  106. selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewCopyMove", owner: self, options: nil)?.first as? NCSelectCommandView
  107. self.view.addSubview(selectCommandViewSelect!)
  108. selectCommandViewSelect?.selectView = self
  109. selectCommandViewSelect?.translatesAutoresizingMaskIntoConstraints = false
  110. if items.contains(where: { $0.lock }) {
  111. selectCommandViewSelect?.moveButton?.isEnabled = false
  112. selectCommandViewSelect?.moveButton?.titleLabel?.isEnabled = false
  113. }
  114. selectCommandViewSelect?.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
  115. selectCommandViewSelect?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
  116. selectCommandViewSelect?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
  117. selectCommandViewSelect?.heightAnchor.constraint(equalToConstant: 150).isActive = true
  118. bottomContraint?.constant = 150
  119. }
  120. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataSource), object: nil)
  121. NotificationCenter.default.addObserver(self, selector: #selector(createFolder(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCreateFolder), object: nil)
  122. }
  123. override func viewWillAppear(_ animated: Bool) {
  124. super.viewWillAppear(animated)
  125. self.navigationItem.title = titleCurrentFolder
  126. // set the serverUrl
  127. if serverUrl.isEmpty {
  128. serverUrl = utilityFileSystem.getHomeServer(urlBase: activeAccount.urlBase, userId: activeAccount.userId)
  129. }
  130. // get auto upload folder
  131. autoUploadFileName = NCManageDatabase.shared.getAccountAutoUploadFileName()
  132. autoUploadDirectory = NCManageDatabase.shared.getAccountAutoUploadDirectory(urlBase: activeAccount.urlBase, userId: activeAccount.userId, account: activeAccount.account)
  133. loadDatasource(withLoadFolder: true)
  134. }
  135. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  136. super.viewWillTransition(to: size, with: coordinator)
  137. coordinator.animate(alongsideTransition: nil) { _ in
  138. self.collectionView?.collectionViewLayout.invalidateLayout()
  139. }
  140. }
  141. func presentationControllerDidDismiss( _ presentationController: UIPresentationController) {
  142. // Dismission
  143. }
  144. // MARK: - NotificationCenter
  145. @objc func createFolder(_ notification: NSNotification) {
  146. guard let userInfo = notification.userInfo as NSDictionary?,
  147. let ocId = userInfo["ocId"] as? String,
  148. let serverUrl = userInfo["serverUrl"] as? String,
  149. serverUrl == self.serverUrl,
  150. let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId)
  151. else { return }
  152. pushMetadata(metadata)
  153. }
  154. // MARK: - Empty
  155. func emptyDataSetView(_ view: NCEmptyView) {
  156. if networkInProgress {
  157. view.emptyImage.image = UIImage(named: "networkInProgress")?.image(color: .gray, size: UIScreen.main.bounds.width)
  158. view.emptyTitle.text = NSLocalizedString("_request_in_progress_", comment: "")
  159. view.emptyDescription.text = ""
  160. } else {
  161. view.emptyImage.image = UIImage(named: "folder")?.image(color: NCBrandColor.shared.brandElement, size: UIScreen.main.bounds.width)
  162. if includeImages {
  163. view.emptyTitle.text = NSLocalizedString("_files_no_files_", comment: "")
  164. } else {
  165. view.emptyTitle.text = NSLocalizedString("_files_no_folders_", comment: "")
  166. }
  167. view.emptyDescription.text = ""
  168. }
  169. }
  170. // MARK: ACTION
  171. @IBAction func actionCancel(_ sender: UIBarButtonItem) {
  172. self.dismiss(animated: true, completion: nil)
  173. }
  174. func selectButtonPressed(_ sender: UIButton) {
  175. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, indexPath: selectIndexPath, overwrite: overwrite, copy: false, move: false)
  176. self.dismiss(animated: true, completion: nil)
  177. }
  178. func copyButtonPressed(_ sender: UIButton) {
  179. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, indexPath: selectIndexPath, overwrite: overwrite, copy: true, move: false)
  180. self.dismiss(animated: true, completion: nil)
  181. }
  182. func moveButtonPressed(_ sender: UIButton) {
  183. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, indexPath: selectIndexPath, overwrite: overwrite, copy: false, move: true)
  184. self.dismiss(animated: true, completion: nil)
  185. }
  186. func createFolderButtonPressed(_ sender: UIButton) {
  187. let alertController = UIAlertController.createFolder(serverUrl: serverUrl, urlBase: activeAccount)
  188. self.present(alertController, animated: true, completion: nil)
  189. }
  190. @IBAction func valueChangedSwitchOverwrite(_ sender: UISwitch) {
  191. overwrite = sender.isOn
  192. }
  193. // MARK: - Push metadata
  194. func pushMetadata(_ metadata: tableMetadata) {
  195. let serverUrlPush = utilityFileSystem.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)
  196. guard let viewController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateViewController(withIdentifier: "NCSelect.storyboard") as? NCSelect else { return }
  197. self.serverUrlPush = serverUrlPush
  198. viewController.delegate = delegate
  199. viewController.typeOfCommandView = typeOfCommandView
  200. viewController.includeDirectoryE2EEncryption = includeDirectoryE2EEncryption
  201. viewController.includeImages = includeImages
  202. viewController.enableSelectFile = enableSelectFile
  203. viewController.type = type
  204. viewController.overwrite = overwrite
  205. viewController.items = items
  206. viewController.selectIndexPath = selectIndexPath
  207. viewController.titleCurrentFolder = metadata.fileNameView
  208. viewController.serverUrl = serverUrlPush
  209. self.navigationController?.pushViewController(viewController, animated: true)
  210. }
  211. }
  212. // MARK: - Collection View
  213. extension NCSelect: UICollectionViewDelegate {
  214. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  215. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
  216. if metadata.directory {
  217. pushMetadata(metadata)
  218. } else {
  219. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadata, type: type, items: items, indexPath: selectIndexPath, overwrite: overwrite, copy: false, move: false)
  220. self.dismiss(animated: true, completion: nil)
  221. }
  222. }
  223. }
  224. extension NCSelect: UICollectionViewDataSource {
  225. func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  226. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
  227. // Thumbnail
  228. if !metadata.directory {
  229. if FileManager().fileExists(atPath: utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  230. (cell as? NCCellProtocol)?.filePreviewImageView?.image = UIImage(contentsOfFile: utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  231. } else {
  232. if metadata.iconName.isEmpty {
  233. (cell as? NCCellProtocol)?.filePreviewImageView?.image = NCImageCache.images.file
  234. } else {
  235. (cell as? NCCellProtocol)?.filePreviewImageView?.image = UIImage(named: metadata.iconName)
  236. }
  237. if metadata.hasPreview && metadata.status == NCGlobal.shared.metadataStatusNormal && (!utilityFileSystem.fileProviderStoragePreviewIconExists(metadata.ocId, etag: metadata.etag)) {
  238. for case let operation as NCCollectionViewDownloadThumbnail in NCNetworking.shared.downloadThumbnailQueue.operations where operation.metadata.ocId == metadata.ocId { return }
  239. NCNetworking.shared.downloadThumbnailQueue.addOperation(NCCollectionViewDownloadThumbnail(metadata: metadata, cell: (cell as? NCCellProtocol), collectionView: collectionView))
  240. }
  241. }
  242. }
  243. // Avatar
  244. if !metadata.ownerId.isEmpty,
  245. metadata.ownerId != activeAccount.userId,
  246. activeAccount.account == metadata.account,
  247. let cell = cell as? NCCellProtocol {
  248. let fileName = metadata.userBaseUrl + "-" + metadata.ownerId + ".png"
  249. NCNetworking.shared.downloadAvatar(user: metadata.ownerId, dispalyName: metadata.ownerDisplayName, fileName: fileName, cell: cell, view: collectionView, cellImageView: cell.fileAvatarImageView)
  250. }
  251. }
  252. func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  253. }
  254. func numberOfSections(in collectionView: UICollectionView) -> Int {
  255. return dataSource.numberOfSections()
  256. }
  257. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  258. let numberOfItems = dataSource.numberOfItemsInSection(section)
  259. emptyDataSet?.numberOfItemsInSection(numberOfItems, section: section)
  260. return numberOfItems
  261. }
  262. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  263. guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as? NCListCell,
  264. let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return UICollectionViewCell() }
  265. var isShare = false
  266. var isMounted = false
  267. isShare = metadata.permissions.contains(NCGlobal.shared.permissionShared) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionShared)
  268. isMounted = metadata.permissions.contains(NCGlobal.shared.permissionMounted) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionMounted)
  269. cell.delegate = self
  270. cell.fileObjectId = metadata.ocId
  271. cell.fileUser = metadata.ownerId
  272. cell.labelTitle.text = metadata.fileNameView
  273. cell.labelTitle.textColor = .label
  274. cell.imageSelect.image = nil
  275. cell.imageStatus.image = nil
  276. cell.imageLocal.image = nil
  277. cell.imageFavorite.image = nil
  278. cell.imageShared.image = nil
  279. cell.imageMore.image = nil
  280. cell.imageItem.image = nil
  281. cell.imageItem.backgroundColor = nil
  282. cell.progressView.progress = 0.0
  283. if metadata.directory {
  284. if metadata.e2eEncrypted {
  285. cell.imageItem.image = NCImageCache.images.folderEncrypted
  286. } else if isShare {
  287. cell.imageItem.image = NCImageCache.images.folderSharedWithMe
  288. } else if !metadata.shareType.isEmpty {
  289. metadata.shareType.contains(3) ?
  290. (cell.imageItem.image = NCImageCache.images.folderPublic) :
  291. (cell.imageItem.image = NCImageCache.images.folderSharedWithMe)
  292. } else if metadata.mountType == "group" {
  293. cell.imageItem.image = NCImageCache.images.folderGroup
  294. } else if isMounted {
  295. cell.imageItem.image = NCImageCache.images.folderExternal
  296. } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
  297. cell.imageItem.image = NCImageCache.images.folderAutomaticUpload
  298. } else {
  299. cell.imageItem.image = NCImageCache.images.folder
  300. }
  301. cell.imageItem.image = cell.imageItem.image?.colorizeFolder(metadata: metadata)
  302. cell.labelInfo.text = utility.dateDiff(metadata.date as Date)
  303. } else {
  304. cell.labelInfo.text = utility.dateDiff(metadata.date as Date) + " · " + utilityFileSystem.transformedSize(metadata.size)
  305. // image local
  306. if NCManageDatabase.shared.getTableLocalFile(ocId: metadata.ocId) != nil {
  307. cell.imageLocal.image = NCImageCache.images.offlineFlag
  308. } else if utilityFileSystem.fileProviderStorageExists(metadata) {
  309. cell.imageLocal.image = NCImageCache.images.local
  310. }
  311. }
  312. // image Favorite
  313. if metadata.favorite {
  314. cell.imageFavorite.image = NCImageCache.images.favorite
  315. }
  316. cell.imageSelect.isHidden = true
  317. cell.backgroundView = nil
  318. cell.hideButtonMore(true)
  319. cell.hideButtonShare(true)
  320. cell.selectMode(false)
  321. // Live Photo
  322. if metadata.isLivePhoto {
  323. cell.imageStatus.image = NCImageCache.images.livePhoto
  324. }
  325. // Remove last separator
  326. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
  327. cell.separator.isHidden = true
  328. } else {
  329. cell.separator.isHidden = false
  330. }
  331. // Add TAGS
  332. cell.setTags(tags: Array(metadata.tags))
  333. return cell
  334. }
  335. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  336. if kind == UICollectionView.elementKindSectionHeader {
  337. guard let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as? NCSectionHeaderMenu else { return UICollectionReusableView() }
  338. let (_, heightHeaderRichWorkspace, _) = getHeaderHeight(section: indexPath.section)
  339. self.headerMenu = header
  340. header.delegate = self
  341. // header.setButtonsView(height: 0)
  342. header.setRichWorkspaceHeight(heightHeaderRichWorkspace)
  343. header.setRichWorkspaceText(richWorkspaceText)
  344. header.setViewTransfer(isHidden: true)
  345. return header
  346. } else {
  347. guard let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as? NCSectionFooter else { return UICollectionReusableView() }
  348. let sections = dataSource.numberOfSections()
  349. let section = indexPath.section
  350. footer.setTitleLabel("")
  351. footer.separatorIsHidden(true)
  352. if sections == 1 || section == sections - 1 {
  353. let info = dataSource.getFooterInformationAllMetadatas()
  354. footer.setTitleLabel(directories: info.directories, files: info.files, size: info.size)
  355. } else {
  356. footer.separatorIsHidden(false)
  357. }
  358. return footer
  359. }
  360. }
  361. }
  362. extension NCSelect: UICollectionViewDelegateFlowLayout {
  363. func getHeaderHeight(section: Int) -> (heightHeaderCommands: CGFloat, heightHeaderRichWorkspace: CGFloat, heightHeaderSection: CGFloat) {
  364. var headerRichWorkspace: CGFloat = 0
  365. if let richWorkspaceText = richWorkspaceText {
  366. let trimmed = richWorkspaceText.trimmingCharacters(in: .whitespaces)
  367. // swiftlint:disable empty_count
  368. if trimmed.count > 0 {
  369. headerRichWorkspace = UIScreen.main.bounds.size.height / 6
  370. }
  371. // swiftlint:enable empty_count
  372. }
  373. return (0, headerRichWorkspace, 0)
  374. }
  375. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  376. let (heightHeaderCommands, heightHeaderRichWorkspace, heightHeaderSection) = getHeaderHeight(section: section)
  377. let heightHeader = heightHeaderCommands + heightHeaderRichWorkspace + heightHeaderSection
  378. return CGSize(width: collectionView.frame.width, height: heightHeader)
  379. }
  380. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  381. let sections = dataSource.numberOfSections()
  382. if section == sections - 1 {
  383. return CGSize(width: collectionView.frame.width, height: NCGlobal.shared.endHeightFooter)
  384. } else {
  385. return CGSize(width: collectionView.frame.width, height: NCGlobal.shared.heightFooter)
  386. }
  387. }
  388. }
  389. // MARK: -
  390. extension NCSelect {
  391. @objc func reloadDataSource() {
  392. loadDatasource(withLoadFolder: false)
  393. }
  394. @objc func loadDatasource(withLoadFolder: Bool) {
  395. var predicate: NSPredicate?
  396. if includeDirectoryE2EEncryption {
  397. if includeImages {
  398. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND (directory == true OR classFile == 'image')", activeAccount.account, serverUrl)
  399. } else {
  400. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND directory == true", activeAccount.account, serverUrl)
  401. }
  402. } else {
  403. if includeImages {
  404. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND (directory == true OR classFile == 'image')", activeAccount.account, serverUrl)
  405. } else if enableSelectFile {
  406. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false", activeAccount.account, serverUrl)
  407. } else {
  408. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND directory == true", activeAccount.account, serverUrl)
  409. }
  410. }
  411. let metadatas = NCManageDatabase.shared.getMetadatas(predicate: predicate!)
  412. self.dataSource = NCDataSource(metadatas: metadatas,
  413. account: activeAccount.account,
  414. sort: "fileName",
  415. ascending: true,
  416. directoryOnTop: true,
  417. favoriteOnTop: true,
  418. groupByField: "none")
  419. if withLoadFolder {
  420. loadFolder()
  421. }
  422. let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", activeAccount.account, serverUrl))
  423. richWorkspaceText = directory?.richWorkspace
  424. DispatchQueue.main.async {
  425. self.collectionView.reloadData()
  426. }
  427. }
  428. func loadFolder() {
  429. networkInProgress = true
  430. collectionView.reloadData()
  431. NCNetworking.shared.readFolder(serverUrl: serverUrl, account: activeAccount.account) { _, _, _, _, _, error in
  432. if error != .success {
  433. NCContentPresenter().showError(error: error)
  434. }
  435. self.networkInProgress = false
  436. self.loadDatasource(withLoadFolder: false)
  437. }
  438. }
  439. }
  440. // MARK: -
  441. class NCSelectCommandView: UIView {
  442. @IBOutlet weak var separatorView: UIView!
  443. @IBOutlet weak var createFolderButton: UIButton?
  444. @IBOutlet weak var selectButton: UIButton?
  445. @IBOutlet weak var copyButton: UIButton?
  446. @IBOutlet weak var moveButton: UIButton?
  447. @IBOutlet weak var overwriteSwitch: UISwitch?
  448. @IBOutlet weak var overwriteLabel: UILabel?
  449. @IBOutlet weak var separatorHeightConstraint: NSLayoutConstraint!
  450. var selectView: NCSelect?
  451. private let gradient: CAGradientLayer = CAGradientLayer()
  452. override func awakeFromNib() {
  453. separatorHeightConstraint.constant = 0.5
  454. separatorView.backgroundColor = .separator
  455. overwriteSwitch?.onTintColor = NCBrandColor.shared.brand
  456. overwriteLabel?.text = NSLocalizedString("_overwrite_", comment: "")
  457. selectButton?.layer.cornerRadius = 15
  458. selectButton?.layer.masksToBounds = true
  459. selectButton?.setTitle(NSLocalizedString("_select_", comment: ""), for: .normal)
  460. selectButton?.backgroundColor = NCBrandColor.shared.brand
  461. selectButton?.setTitleColor(UIColor(white: 1, alpha: 0.3), for: .highlighted)
  462. selectButton?.setTitleColor(NCBrandColor.shared.brandText, for: .normal)
  463. createFolderButton?.layer.cornerRadius = 15
  464. createFolderButton?.layer.masksToBounds = true
  465. createFolderButton?.setTitle(NSLocalizedString("_create_folder_", comment: ""), for: .normal)
  466. createFolderButton?.backgroundColor = NCBrandColor.shared.brand
  467. createFolderButton?.setTitleColor(UIColor(white: 1, alpha: 0.3), for: .highlighted)
  468. createFolderButton?.setTitleColor(NCBrandColor.shared.brandText, for: .normal)
  469. copyButton?.layer.cornerRadius = 15
  470. copyButton?.layer.masksToBounds = true
  471. copyButton?.setTitle(NSLocalizedString("_copy_", comment: ""), for: .normal)
  472. copyButton?.backgroundColor = NCBrandColor.shared.brand
  473. copyButton?.setTitleColor(UIColor(white: 1, alpha: 0.3), for: .highlighted)
  474. copyButton?.setTitleColor(NCBrandColor.shared.brandText, for: .normal)
  475. moveButton?.layer.cornerRadius = 15
  476. moveButton?.layer.masksToBounds = true
  477. moveButton?.setTitle(NSLocalizedString("_move_", comment: ""), for: .normal)
  478. moveButton?.backgroundColor = NCBrandColor.shared.brand
  479. moveButton?.setTitleColor(UIColor(white: 1, alpha: 0.3), for: .highlighted)
  480. moveButton?.setTitleColor(NCBrandColor.shared.brandText, for: .normal)
  481. }
  482. @IBAction func createFolderButtonPressed(_ sender: UIButton) {
  483. selectView?.createFolderButtonPressed(sender)
  484. }
  485. @IBAction func selectButtonPressed(_ sender: UIButton) {
  486. selectView?.selectButtonPressed(sender)
  487. }
  488. @IBAction func copyButtonPressed(_ sender: UIButton) {
  489. selectView?.copyButtonPressed(sender)
  490. }
  491. @IBAction func moveButtonPressed(_ sender: UIButton) {
  492. selectView?.moveButtonPressed(sender)
  493. }
  494. @IBAction func valueChangedSwitchOverwrite(_ sender: UISwitch) {
  495. selectView?.valueChangedSwitchOverwrite(sender)
  496. }
  497. }
  498. // MARK: - UIViewControllerRepresentable
  499. struct NCSelectViewControllerRepresentable: UIViewControllerRepresentable {
  500. typealias UIViewControllerType = UINavigationController
  501. var delegate: NCSelectDelegate
  502. func makeUIViewController(context: Context) -> UINavigationController {
  503. let storyboard = UIStoryboard(name: "NCSelect", bundle: nil)
  504. let navigationController = storyboard.instantiateInitialViewController() as? UINavigationController
  505. let viewController = navigationController?.topViewController as? NCSelect
  506. viewController?.delegate = delegate
  507. viewController?.typeOfCommandView = .selectCreateFolder
  508. viewController?.includeDirectoryE2EEncryption = true
  509. return navigationController!
  510. }
  511. func updateUIViewController(_ uiViewController: UINavigationController, context: Context) { }
  512. }
  513. struct SelectView: UIViewControllerRepresentable {
  514. typealias UIViewControllerType = UINavigationController
  515. @Binding var serverUrl: String
  516. class Coordinator: NSObject, NCSelectDelegate {
  517. var parent: SelectView
  518. init(_ parent: SelectView) {
  519. self.parent = parent
  520. }
  521. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], indexPath: [IndexPath], overwrite: Bool, copy: Bool, move: Bool) {
  522. if let serverUrl = serverUrl {
  523. self.parent.serverUrl = serverUrl
  524. }
  525. }
  526. }
  527. func makeUIViewController(context: Context) -> UINavigationController {
  528. let storyboard = UIStoryboard(name: "NCSelect", bundle: nil)
  529. let navigationController = storyboard.instantiateInitialViewController() as? UINavigationController
  530. let viewController = navigationController?.topViewController as? NCSelect
  531. viewController?.delegate = context.coordinator
  532. viewController?.typeOfCommandView = .selectCreateFolder
  533. viewController?.includeDirectoryE2EEncryption = true
  534. return navigationController!
  535. }
  536. func updateUIViewController(_ uiViewController: UINavigationController, context: Context) { }
  537. func makeCoordinator() -> Coordinator {
  538. Coordinator(self)
  539. }
  540. }