NCSelect.swift 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  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 NCCommunication
  25. @objc protocol NCSelectDelegate {
  26. @objc func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], overwrite: Bool, copy: Bool, move: Bool)
  27. }
  28. class NCSelect: UIViewController, UIGestureRecognizerDelegate, UIAdaptivePresentationControllerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, NCEmptyDataSetDelegate {
  29. @IBOutlet private var collectionView: UICollectionView!
  30. @IBOutlet private var buttonCancel: UIBarButtonItem!
  31. @IBOutlet private var bottomContraint: NSLayoutConstraint?
  32. private var selectCommandViewSelect: NCSelectCommandView?
  33. @objc enum selectType: Int {
  34. case select
  35. case selectCreateFolder
  36. case copyMove
  37. }
  38. // ------ external settings ------------------------------------
  39. @objc weak var delegate: NCSelectDelegate?
  40. @objc var typeOfCommandView: selectType = .select
  41. @objc var includeDirectoryE2EEncryption = false
  42. @objc var includeImages = false
  43. @objc var enableSelectFile = false
  44. @objc var type = ""
  45. @objc var items: [tableMetadata] = []
  46. var titleCurrentFolder = NCBrandOptions.shared.brand
  47. var serverUrl = ""
  48. // -------------------------------------------------------------
  49. private var emptyDataSet: NCEmptyDataSet?
  50. private let layoutKey = NCGlobal.shared.layoutViewMove
  51. private var serverUrlPush = ""
  52. private var metadataFolder = tableMetadata()
  53. private var isEditMode = false
  54. private var isSearching = false
  55. private var networkInProgress = false
  56. private var selectOcId: [String] = []
  57. private var overwrite = true
  58. private var dataSource = NCDataSource()
  59. internal var richWorkspaceText: String?
  60. private var layoutForView: NCGlobal.layoutForViewType?
  61. internal var headerMenu: NCSectionHeaderMenu?
  62. private var autoUploadFileName = ""
  63. private var autoUploadDirectory = ""
  64. private var listLayout: NCListLayout!
  65. private var gridLayout: NCGridLayout!
  66. private var shares: [tableShare]?
  67. private var backgroundImageView = UIImageView()
  68. private var activeAccount: tableAccount!
  69. // MARK: - View Life Cycle
  70. override func viewDidLoad() {
  71. super.viewDidLoad()
  72. self.navigationController?.navigationBar.prefersLargeTitles = true
  73. self.navigationController?.presentationController?.delegate = self
  74. view.backgroundColor = NCBrandColor.shared.systemBackground
  75. activeAccount = NCManageDatabase.shared.getActiveAccount()
  76. // Cell
  77. collectionView.register(UINib(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  78. collectionView.register(UINib(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  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 = NCBrandColor.shared.systemBackground
  85. listLayout = NCListLayout()
  86. gridLayout = NCGridLayout()
  87. buttonCancel.title = NSLocalizedString("_cancel_", comment: "")
  88. bottomContraint?.constant = UIApplication.shared.keyWindow?.rootViewController?.view.safeAreaInsets.bottom ?? 0
  89. // Empty
  90. emptyDataSet = NCEmptyDataSet(view: collectionView, offset: NCGlobal.shared.heightButtonsView, delegate: self)
  91. // Type of command view
  92. if typeOfCommandView == .select || typeOfCommandView == .selectCreateFolder {
  93. if typeOfCommandView == .select {
  94. selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewSelect", owner: self, options: nil)?.first as? NCSelectCommandView
  95. } else {
  96. selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewSelect+CreateFolder", owner: self, options: nil)?.first as? NCSelectCommandView
  97. }
  98. self.view.addSubview(selectCommandViewSelect!)
  99. selectCommandViewSelect?.selectView = self
  100. selectCommandViewSelect?.translatesAutoresizingMaskIntoConstraints = false
  101. selectCommandViewSelect?.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
  102. selectCommandViewSelect?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
  103. selectCommandViewSelect?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
  104. selectCommandViewSelect?.heightAnchor.constraint(equalToConstant: 80).isActive = true
  105. bottomContraint?.constant = 80
  106. }
  107. if typeOfCommandView == .copyMove {
  108. selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewCopyMove", owner: self, options: nil)?.first as? NCSelectCommandView
  109. self.view.addSubview(selectCommandViewSelect!)
  110. selectCommandViewSelect?.selectView = self
  111. selectCommandViewSelect?.translatesAutoresizingMaskIntoConstraints = false
  112. if items.contains(where: { $0.lock }) {
  113. selectCommandViewSelect?.moveButton?.isEnabled = false
  114. selectCommandViewSelect?.moveButton?.titleLabel?.isEnabled = false
  115. }
  116. selectCommandViewSelect?.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
  117. selectCommandViewSelect?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
  118. selectCommandViewSelect?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
  119. selectCommandViewSelect?.heightAnchor.constraint(equalToConstant: 150).isActive = true
  120. bottomContraint?.constant = 150
  121. }
  122. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeTheming), object: nil)
  123. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataSource), object: nil)
  124. NotificationCenter.default.addObserver(self, selector: #selector(createFolder(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCreateFolder), object: nil)
  125. changeTheming()
  126. }
  127. override func viewWillAppear(_ animated: Bool) {
  128. super.viewWillAppear(animated)
  129. self.navigationItem.title = titleCurrentFolder
  130. // set the serverUrl
  131. if serverUrl == "" {
  132. serverUrl = NCUtilityFileSystem.shared.getHomeServer(account: activeAccount.account)
  133. }
  134. // get auto upload folder
  135. autoUploadFileName = NCManageDatabase.shared.getAccountAutoUploadFileName()
  136. autoUploadDirectory = NCManageDatabase.shared.getAccountAutoUploadDirectory(urlBase: activeAccount.urlBase, account: activeAccount.account)
  137. layoutForView = NCUtility.shared.getLayoutForView(key: layoutKey, serverUrl: serverUrl)
  138. gridLayout.itemForLine = CGFloat(layoutForView?.itemForLine ?? 3)
  139. if layoutForView?.layout == NCGlobal.shared.layoutList {
  140. collectionView.collectionViewLayout = listLayout
  141. } else {
  142. collectionView.collectionViewLayout = gridLayout
  143. }
  144. loadDatasource(withLoadFolder: true)
  145. shares = NCManageDatabase.shared.getTableShares(account: activeAccount.account, serverUrl: serverUrl)
  146. }
  147. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  148. super.viewWillTransition(to: size, with: coordinator)
  149. coordinator.animate(alongsideTransition: nil) { _ in
  150. self.collectionView?.collectionViewLayout.invalidateLayout()
  151. }
  152. }
  153. func presentationControllerDidDismiss( _ presentationController: UIPresentationController) {
  154. // Dismission
  155. }
  156. // MARK: - NotificationCenter
  157. @objc func changeTheming() {
  158. collectionView.reloadData()
  159. selectCommandViewSelect?.separatorView.backgroundColor = NCBrandColor.shared.separator
  160. }
  161. @objc func createFolder(_ notification: NSNotification) {
  162. if let userInfo = notification.userInfo as NSDictionary? {
  163. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  164. if metadata.serverUrl == serverUrl {
  165. pushMetadata(metadata)
  166. }
  167. }
  168. }
  169. }
  170. // MARK: - Empty
  171. func emptyDataSetView(_ view: NCEmptyView) {
  172. if networkInProgress {
  173. view.emptyImage.image = UIImage(named: "networkInProgress")?.image(color: .gray, size: UIScreen.main.bounds.width)
  174. view.emptyTitle.text = NSLocalizedString("_request_in_progress_", comment: "")
  175. view.emptyDescription.text = ""
  176. } else {
  177. view.emptyImage.image = UIImage(named: "folder")?.image(color: NCBrandColor.shared.brandElement, size: UIScreen.main.bounds.width)
  178. if includeImages {
  179. view.emptyTitle.text = NSLocalizedString("_files_no_files_", comment: "")
  180. } else {
  181. view.emptyTitle.text = NSLocalizedString("_files_no_folders_", comment: "")
  182. }
  183. view.emptyDescription.text = ""
  184. }
  185. }
  186. // MARK: ACTION
  187. @IBAction func actionCancel(_ sender: UIBarButtonItem) {
  188. self.dismiss(animated: true, completion: nil)
  189. }
  190. func selectButtonPressed(_ sender: UIButton) {
  191. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, overwrite: overwrite, copy: false, move: false)
  192. self.dismiss(animated: true, completion: nil)
  193. }
  194. func copyButtonPressed(_ sender: UIButton) {
  195. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, overwrite: overwrite, copy: true, move: false)
  196. self.dismiss(animated: true, completion: nil)
  197. }
  198. func moveButtonPressed(_ sender: UIButton) {
  199. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, overwrite: overwrite, copy: false, move: true)
  200. self.dismiss(animated: true, completion: nil)
  201. }
  202. func createFolderButtonPressed(_ sender: UIButton) {
  203. let alertController = UIAlertController.createFolder(serverUrl: serverUrl, urlBase: activeAccount)
  204. self.present(alertController, animated: true, completion: nil)
  205. }
  206. @IBAction func valueChangedSwitchOverwrite(_ sender: UISwitch) {
  207. overwrite = sender.isOn
  208. }
  209. // MARK: TAP EVENT
  210. func tapButtonSwitch(_ sender: Any) {
  211. if collectionView.collectionViewLayout == gridLayout {
  212. // list layout
  213. headerMenu?.buttonSwitch.accessibilityLabel = NSLocalizedString("_grid_view_", comment: "")
  214. UIView.animate(withDuration: 0.0, animations: {
  215. self.collectionView.collectionViewLayout.invalidateLayout()
  216. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { _ in
  217. self.collectionView.reloadData()
  218. })
  219. })
  220. layoutForView?.layout = NCGlobal.shared.layoutList
  221. NCUtility.shared.setLayoutForView(key: layoutKey, serverUrl: serverUrl, layout: layoutForView?.layout)
  222. } else {
  223. // grid layout
  224. headerMenu?.buttonSwitch.accessibilityLabel = NSLocalizedString("_list_view_", comment: "")
  225. UIView.animate(withDuration: 0.0, animations: {
  226. self.collectionView.collectionViewLayout.invalidateLayout()
  227. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { _ in
  228. self.collectionView.reloadData()
  229. })
  230. })
  231. layoutForView?.layout = NCGlobal.shared.layoutGrid
  232. NCUtility.shared.setLayoutForView(key: layoutKey, serverUrl: serverUrl, layout: layoutForView?.layout)
  233. }
  234. }
  235. func tapButtonOrder(_ sender: Any) {
  236. let sortMenu = NCSortMenu()
  237. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  238. }
  239. // MARK: - Push metadata
  240. func pushMetadata(_ metadata: tableMetadata) {
  241. guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName) else { return }
  242. guard let viewController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateViewController(withIdentifier: "NCSelect.storyboard") as? NCSelect else { return }
  243. self.serverUrlPush = serverUrlPush
  244. viewController.delegate = delegate
  245. viewController.typeOfCommandView = typeOfCommandView
  246. viewController.includeDirectoryE2EEncryption = includeDirectoryE2EEncryption
  247. viewController.includeImages = includeImages
  248. viewController.enableSelectFile = enableSelectFile
  249. viewController.type = type
  250. viewController.overwrite = overwrite
  251. viewController.items = items
  252. viewController.titleCurrentFolder = metadata.fileNameView
  253. viewController.serverUrl = serverUrlPush
  254. self.navigationController?.pushViewController(viewController, animated: true)
  255. }
  256. }
  257. // MARK: - Collection View
  258. extension NCSelect: UICollectionViewDelegate {
  259. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  260. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
  261. if isEditMode {
  262. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  263. selectOcId.remove(at: index)
  264. } else {
  265. selectOcId.append(metadata.ocId)
  266. }
  267. collectionView.reloadItems(at: [indexPath])
  268. return
  269. }
  270. if metadata.directory {
  271. pushMetadata(metadata)
  272. } else {
  273. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadata, type: type, items: items, overwrite: overwrite, copy: false, move: false)
  274. self.dismiss(animated: true, completion: nil)
  275. }
  276. }
  277. }
  278. extension NCSelect: UICollectionViewDataSource {
  279. func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  280. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
  281. // Thumbnail
  282. if !metadata.directory {
  283. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  284. (cell as! NCCellProtocol).filePreviewImageView?.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  285. } else {
  286. NCOperationQueue.shared.downloadThumbnail(metadata: metadata, placeholder: true, cell: cell, view: collectionView)
  287. }
  288. }
  289. // Avatar
  290. if metadata.ownerId.count > 0,
  291. metadata.ownerId != activeAccount.userId,
  292. activeAccount.account == metadata.account,
  293. let cell = cell as? NCCellProtocol {
  294. let fileName = metadata.userBaseUrl + "-" + metadata.ownerId + ".png"
  295. NCOperationQueue.shared.downloadAvatar(user: metadata.ownerId, dispalyName: metadata.ownerDisplayName, fileName: fileName, cell: cell, view: collectionView, cellImageView: cell.fileAvatarImageView)
  296. }
  297. }
  298. func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  299. }
  300. func numberOfSections(in collectionView: UICollectionView) -> Int {
  301. return dataSource.numberOfSections()
  302. }
  303. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  304. let numberOfItems = dataSource.numberOfItemsInSection(section)
  305. emptyDataSet?.numberOfItemsInSection(numberOfItems, section: section)
  306. return numberOfItems
  307. }
  308. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  309. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else {
  310. if layoutForView?.layout == NCGlobal.shared.layoutList {
  311. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  312. } else {
  313. return collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  314. }
  315. }
  316. var isShare = false
  317. var isMounted = false
  318. isShare = metadata.permissions.contains(NCGlobal.shared.permissionShared) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionShared)
  319. isMounted = metadata.permissions.contains(NCGlobal.shared.permissionMounted) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionMounted)
  320. let tableShare = dataSource.metadatasForSection[indexPath.section].metadataShare[metadata.ocId]
  321. // LAYOUT LIST
  322. if layoutForView?.layout == NCGlobal.shared.layoutList {
  323. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  324. cell.delegate = self
  325. cell.fileObjectId = metadata.ocId
  326. cell.fileUser = metadata.ownerId
  327. cell.labelTitle.text = metadata.fileNameView
  328. cell.labelTitle.textColor = NCBrandColor.shared.label
  329. cell.imageSelect.image = nil
  330. cell.imageStatus.image = nil
  331. cell.imageLocal.image = nil
  332. cell.imageFavorite.image = nil
  333. cell.imageShared.image = nil
  334. cell.imageMore.image = nil
  335. cell.imageItem.image = nil
  336. cell.imageItem.backgroundColor = nil
  337. cell.progressView.progress = 0.0
  338. if metadata.directory {
  339. if metadata.e2eEncrypted {
  340. cell.imageItem.image = NCBrandColor.cacheImages.folderEncrypted
  341. } else if isShare {
  342. cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
  343. } else if tableShare != nil && tableShare?.shareType != 3 {
  344. cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
  345. } else if tableShare != nil && tableShare?.shareType == 3 {
  346. cell.imageItem.image = NCBrandColor.cacheImages.folderPublic
  347. } else if metadata.mountType == "group" {
  348. cell.imageItem.image = NCBrandColor.cacheImages.folderGroup
  349. } else if isMounted {
  350. cell.imageItem.image = NCBrandColor.cacheImages.folderExternal
  351. } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
  352. cell.imageItem.image = NCBrandColor.cacheImages.folderAutomaticUpload
  353. } else {
  354. cell.imageItem.image = NCBrandColor.cacheImages.folder
  355. }
  356. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
  357. let lockServerUrl = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!
  358. let tableDirectory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", activeAccount.account, lockServerUrl))
  359. // Local image: offline
  360. if tableDirectory != nil && tableDirectory!.offline {
  361. cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
  362. }
  363. } else {
  364. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + " · " + CCUtility.transformedSize(metadata.size)
  365. // image local
  366. if dataSource.metadatasForSection[indexPath.section].metadataOffLine.contains(metadata.ocId) {
  367. cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
  368. } else if CCUtility.fileProviderStorageExists(metadata) {
  369. cell.imageLocal.image = NCBrandColor.cacheImages.local
  370. }
  371. }
  372. // image Favorite
  373. if metadata.favorite {
  374. cell.imageFavorite.image = NCBrandColor.cacheImages.favorite
  375. }
  376. // Share image
  377. if isShare {
  378. cell.imageShared.image = NCBrandColor.cacheImages.shared
  379. } else if tableShare != nil && tableShare?.shareType == 3 {
  380. cell.imageShared.image = NCBrandColor.cacheImages.shareByLink
  381. } else if tableShare != nil && tableShare?.shareType != 3 {
  382. cell.imageShared.image = NCBrandColor.cacheImages.shared
  383. } else {
  384. cell.imageShared.image = NCBrandColor.cacheImages.canShare
  385. }
  386. cell.imageSelect.isHidden = true
  387. cell.backgroundView = nil
  388. cell.hideButtonMore(true)
  389. cell.hideButtonShare(true)
  390. cell.selectMode(false)
  391. // Live Photo
  392. if metadata.livePhoto {
  393. cell.imageStatus.image = NCBrandColor.cacheImages.livePhoto
  394. }
  395. // Remove last separator
  396. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
  397. cell.separator.isHidden = true
  398. } else {
  399. cell.separator.isHidden = false
  400. }
  401. return cell
  402. }
  403. // LAYOUT GRID
  404. if layoutForView?.layout == NCGlobal.shared.layoutGrid {
  405. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  406. cell.delegate = self
  407. cell.fileObjectId = metadata.ocId
  408. cell.fileUser = metadata.ownerId
  409. cell.labelTitle.text = metadata.fileNameView
  410. cell.labelTitle.textColor = NCBrandColor.shared.label
  411. cell.imageSelect.image = nil
  412. cell.imageStatus.image = nil
  413. cell.imageLocal.image = nil
  414. cell.imageFavorite.image = nil
  415. cell.imageItem.image = nil
  416. cell.imageItem.backgroundColor = nil
  417. cell.progressView.progress = 0.0
  418. if metadata.directory {
  419. if metadata.e2eEncrypted {
  420. cell.imageItem.image = NCBrandColor.cacheImages.folderEncrypted
  421. } else if isShare {
  422. cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
  423. } else if tableShare != nil && tableShare!.shareType != 3 {
  424. cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
  425. } else if tableShare != nil && tableShare!.shareType == 3 {
  426. cell.imageItem.image = NCBrandColor.cacheImages.folderPublic
  427. } else if metadata.mountType == "group" {
  428. cell.imageItem.image = NCBrandColor.cacheImages.folderGroup
  429. } else if isMounted {
  430. cell.imageItem.image = NCBrandColor.cacheImages.folderExternal
  431. } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
  432. cell.imageItem.image = NCBrandColor.cacheImages.folderAutomaticUpload
  433. } else {
  434. cell.imageItem.image = NCBrandColor.cacheImages.folder
  435. }
  436. let lockServerUrl = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!
  437. let tableDirectory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", activeAccount.account, lockServerUrl))
  438. // Local image: offline
  439. if tableDirectory != nil && tableDirectory!.offline {
  440. cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
  441. }
  442. } else {
  443. // image Local
  444. if dataSource.metadatasForSection[indexPath.section].metadataOffLine.contains(metadata.ocId) {
  445. cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
  446. } else if CCUtility.fileProviderStorageExists(metadata) {
  447. cell.imageLocal.image = NCBrandColor.cacheImages.local
  448. }
  449. }
  450. // image Favorite
  451. if metadata.favorite {
  452. cell.imageFavorite.image = NCBrandColor.cacheImages.favorite
  453. }
  454. cell.imageSelect.isHidden = true
  455. cell.backgroundView = nil
  456. cell.hideButtonMore(true)
  457. // Live Photo
  458. if metadata.livePhoto {
  459. cell.imageStatus.image = NCBrandColor.cacheImages.livePhoto
  460. }
  461. return cell
  462. }
  463. return collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  464. }
  465. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  466. if kind == UICollectionView.elementKindSectionHeader {
  467. if indexPath.section == 0 {
  468. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  469. let (_, heightHeaderRichWorkspace, heightHeaderSection) = getHeaderHeight(section: indexPath.section)
  470. self.headerMenu = header
  471. if collectionView.collectionViewLayout == gridLayout {
  472. header.setImageSwitchList()
  473. header.buttonSwitch.accessibilityLabel = NSLocalizedString("_list_view_", comment: "")
  474. } else {
  475. header.setImageSwitchGrid()
  476. header.buttonSwitch.accessibilityLabel = NSLocalizedString("_grid_view_", comment: "")
  477. }
  478. header.delegate = self
  479. header.setButtonsCommand(heigt: 0)
  480. header.setButtonsView(heigt: NCGlobal.shared.heightButtonsView)
  481. header.setStatusButtonsView(enable: !dataSource.metadatasSource.isEmpty)
  482. header.setSortedTitle(layoutForView?.titleButtonHeader ?? "")
  483. header.setRichWorkspaceHeight(heightHeaderRichWorkspace)
  484. header.setRichWorkspaceText(richWorkspaceText)
  485. header.setSectionHeight(heightHeaderSection)
  486. header.labelSection.text = self.dataSource.getSectionValue(indexPath: indexPath)
  487. header.labelSection.textColor = NCBrandColor.shared.label
  488. return header
  489. } else {
  490. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCSectionHeader
  491. header.labelSection.text = self.dataSource.getSectionValue(indexPath: indexPath)
  492. header.labelSection.textColor = NCBrandColor.shared.brandElement
  493. return header
  494. }
  495. } else {
  496. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  497. let sections = dataSource.numberOfSections()
  498. let section = indexPath.section
  499. footer.setTitleLabel("")
  500. footer.separatorIsHidden(true)
  501. if sections == 1 || section == sections - 1 {
  502. let info = dataSource.getFooterInformation()
  503. footer.setTitleLabel(directories: info.directories, files: info.files, size: info.size)
  504. } else {
  505. footer.separatorIsHidden(false)
  506. }
  507. return footer
  508. }
  509. }
  510. }
  511. extension NCSelect: UICollectionViewDelegateFlowLayout {
  512. func getHeaderHeight(section:Int) -> (heightHeaderCommands: CGFloat, heightHeaderRichWorkspace: CGFloat, heightHeaderSection: CGFloat) {
  513. var headerRichWorkspace: CGFloat = 0
  514. if let richWorkspaceText = richWorkspaceText {
  515. let trimmed = richWorkspaceText.trimmingCharacters(in: .whitespaces)
  516. if trimmed.count > 0 && !isSearching {
  517. headerRichWorkspace = UIScreen.main.bounds.size.height / 6
  518. }
  519. }
  520. if section == 0 && dataSource.numberOfSections() > 1 {
  521. return (NCGlobal.shared.heightButtonsView, headerRichWorkspace, NCGlobal.shared.heightSection)
  522. } else if section == 0 && dataSource.numberOfSections() == 1 {
  523. if collectionView.collectionViewLayout == gridLayout {
  524. return (NCGlobal.shared.heightButtonsView, headerRichWorkspace, NCGlobal.shared.heightSection)
  525. } else {
  526. return (NCGlobal.shared.heightButtonsView, headerRichWorkspace, 0)
  527. }
  528. } else if section > 0 && dataSource.numberOfSections() > 1 {
  529. return (0, 0, NCGlobal.shared.heightSection)
  530. } else {
  531. return (0, 0, 0)
  532. }
  533. }
  534. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  535. let (heightHeaderCommands, heightHeaderRichWorkspace, heightHeaderSection) = getHeaderHeight(section: section)
  536. let heightHeader = heightHeaderCommands + heightHeaderRichWorkspace + heightHeaderSection
  537. return CGSize(width: collectionView.frame.width, height: heightHeader)
  538. }
  539. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  540. let sections = dataSource.numberOfSections()
  541. if section == sections - 1 {
  542. return CGSize(width: collectionView.frame.width, height: NCGlobal.shared.endHeightFooter)
  543. } else {
  544. return CGSize(width: collectionView.frame.width, height: NCGlobal.shared.heightFooter)
  545. }
  546. }
  547. }
  548. // MARK: -
  549. extension NCSelect {
  550. @objc func reloadDataSource() {
  551. loadDatasource(withLoadFolder: false)
  552. }
  553. @objc func loadDatasource(withLoadFolder: Bool) {
  554. var predicate: NSPredicate?
  555. var groupByField = "name"
  556. layoutForView = NCUtility.shared.getLayoutForView(key: layoutKey, serverUrl: serverUrl)
  557. // set GroupField for Grid
  558. if layoutForView?.layout == NCGlobal.shared.layoutGrid {
  559. groupByField = "classFile"
  560. }
  561. if includeDirectoryE2EEncryption {
  562. if includeImages {
  563. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND (directory == true OR classFile == 'image')", activeAccount.account, serverUrl)
  564. } else {
  565. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND directory == true", activeAccount.account, serverUrl)
  566. }
  567. } else {
  568. if includeImages {
  569. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND (directory == true OR classFile == 'image')", activeAccount.account, serverUrl)
  570. } else {
  571. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND directory == true", activeAccount.account, serverUrl)
  572. }
  573. }
  574. let metadatasSource = NCManageDatabase.shared.getMetadatas(predicate: predicate!)
  575. self.dataSource = NCDataSource(metadatasSource: metadatasSource,
  576. account: activeAccount.account,
  577. sort: layoutForView?.sort,
  578. ascending: layoutForView?.ascending,
  579. directoryOnTop: layoutForView?.directoryOnTop,
  580. favoriteOnTop: true,
  581. filterLivePhoto: true,
  582. groupByField: groupByField)
  583. if withLoadFolder {
  584. loadFolder()
  585. }
  586. let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", activeAccount.account, serverUrl))
  587. richWorkspaceText = directory?.richWorkspace
  588. DispatchQueue.main.async {
  589. self.collectionView.reloadData()
  590. }
  591. }
  592. func loadFolder() {
  593. networkInProgress = true
  594. collectionView.reloadData()
  595. NCNetworking.shared.readFolder(serverUrl: serverUrl, account: activeAccount.account) { _, _, _, _, _, _, errorCode, errorDescription in
  596. if errorCode != 0 {
  597. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  598. }
  599. self.networkInProgress = false
  600. self.loadDatasource(withLoadFolder: false)
  601. }
  602. }
  603. }
  604. // MARK: -
  605. class NCSelectCommandView: UIView {
  606. @IBOutlet weak var separatorView: UIView!
  607. @IBOutlet weak var createFolderButton: UIButton?
  608. @IBOutlet weak var selectButton: UIButton?
  609. @IBOutlet weak var copyButton: UIButton?
  610. @IBOutlet weak var moveButton: UIButton?
  611. @IBOutlet weak var overwriteSwitch: UISwitch?
  612. @IBOutlet weak var overwriteLabel: UILabel?
  613. @IBOutlet weak var separatorHeightConstraint: NSLayoutConstraint!
  614. var selectView: NCSelect?
  615. private let gradient: CAGradientLayer = CAGradientLayer()
  616. override func awakeFromNib() {
  617. separatorHeightConstraint.constant = 0.5
  618. separatorView.backgroundColor = NCBrandColor.shared.separator
  619. overwriteLabel?.text = NSLocalizedString("_overwrite_", comment: "")
  620. selectButton?.layer.cornerRadius = 15
  621. selectButton?.layer.masksToBounds = true
  622. selectButton?.setTitle(NSLocalizedString("_select_", comment: ""), for: .normal)
  623. createFolderButton?.layer.cornerRadius = 15
  624. createFolderButton?.layer.masksToBounds = true
  625. createFolderButton?.setTitle(NSLocalizedString("_create_folder_", comment: ""), for: .normal)
  626. copyButton?.layer.cornerRadius = 15
  627. copyButton?.layer.masksToBounds = true
  628. copyButton?.setTitle(NSLocalizedString("_copy_", comment: ""), for: .normal)
  629. moveButton?.layer.cornerRadius = 15
  630. moveButton?.layer.masksToBounds = true
  631. moveButton?.setTitle(NSLocalizedString("_move_", comment: ""), for: .normal)
  632. }
  633. @IBAction func createFolderButtonPressed(_ sender: UIButton) {
  634. selectView?.createFolderButtonPressed(sender)
  635. }
  636. @IBAction func selectButtonPressed(_ sender: UIButton) {
  637. selectView?.selectButtonPressed(sender)
  638. }
  639. @IBAction func copyButtonPressed(_ sender: UIButton) {
  640. selectView?.copyButtonPressed(sender)
  641. }
  642. @IBAction func moveButtonPressed(_ sender: UIButton) {
  643. selectView?.moveButtonPressed(sender)
  644. }
  645. @IBAction func valueChangedSwitchOverwrite(_ sender: UISwitch) {
  646. selectView?.valueChangedSwitchOverwrite(sender)
  647. }
  648. }