NCSelect.swift 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  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 Foundation
  24. import NCCommunication
  25. @objc protocol NCSelectDelegate {
  26. @objc func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], buttonType: String, overwrite: Bool)
  27. }
  28. class NCSelect: UIViewController, UIGestureRecognizerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, NCEmptyDataSetDelegate {
  29. @IBOutlet fileprivate weak var collectionView: UICollectionView!
  30. @IBOutlet fileprivate weak var toolbar: UIView!
  31. @IBOutlet fileprivate weak var overwriteView: UIView!
  32. @IBOutlet fileprivate weak var buttonCancel: UIBarButtonItem!
  33. @IBOutlet fileprivate weak var buttonCreateFolder: UIButton!
  34. @IBOutlet fileprivate weak var buttonDone: UIButton!
  35. @IBOutlet fileprivate weak var buttonDone1: UIButton!
  36. @IBOutlet fileprivate weak var overwriteSwitch: UISwitch!
  37. @IBOutlet fileprivate weak var overwriteLabel: UILabel!
  38. @IBOutlet fileprivate weak var toolBarTop: NSLayoutConstraint!
  39. // ------ external settings ------------------------------------
  40. @objc var delegate: NCSelectDelegate?
  41. @objc var hideButtonCreateFolder = false
  42. @objc var selectFile = false
  43. @objc var includeDirectoryE2EEncryption = false
  44. @objc var includeImages = false
  45. @objc var type = ""
  46. @objc var titleButtonDone = NSLocalizedString("_move_", comment: "")
  47. @objc var titleButtonDone1 = NSLocalizedString("_copy_", comment: "")
  48. @objc var isButtonDone1Hide = true
  49. @objc var isOverwriteHide = true
  50. @objc var items: [Any] = []
  51. var titleCurrentFolder = NCBrandOptions.sharedInstance.brand
  52. var serverUrl = ""
  53. // -------------------------------------------------------------
  54. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  55. private var emptyDataSet: NCEmptyDataSet?
  56. private let keyLayout = k_layout_view_move
  57. private var serverUrlPush = ""
  58. private var metadataTouch: tableMetadata?
  59. private var metadataFolder = tableMetadata()
  60. private var isEditMode = false
  61. private var networkInProgress = false
  62. private var selectOcId: [String] = []
  63. private var overwrite = false
  64. private var dataSource = NCDataSource()
  65. internal var richWorkspaceText: String?
  66. private var sort: String = ""
  67. private var ascending: Bool = true
  68. private var directoryOnTop: Bool = true
  69. private var layout = ""
  70. private var groupBy = ""
  71. private var titleButton = ""
  72. private var itemForLine = 0
  73. private var autoUploadFileName = ""
  74. private var autoUploadDirectory = ""
  75. private var listLayout: NCListLayout!
  76. private var gridLayout: NCGridLayout!
  77. private let headerHeight: CGFloat = 50
  78. private var headerRichWorkspaceHeight: CGFloat = 0
  79. private let footerHeight: CGFloat = 100
  80. private var shares: [tableShare]?
  81. private let refreshControl = UIRefreshControl()
  82. override func viewDidLoad() {
  83. super.viewDidLoad()
  84. self.navigationController?.navigationBar.prefersLargeTitles = true
  85. // Cell
  86. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  87. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  88. // Header
  89. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  90. // Footer
  91. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  92. collectionView.alwaysBounceVertical = true
  93. listLayout = NCListLayout()
  94. gridLayout = NCGridLayout()
  95. // Add Refresh Control
  96. collectionView.addSubview(refreshControl)
  97. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  98. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  99. refreshControl.addTarget(self, action: #selector(loadDatasource), for: .valueChanged)
  100. // Empty
  101. emptyDataSet = NCEmptyDataSet.init(view: collectionView, offset: -200, delegate: self)
  102. // title button
  103. buttonCancel.title = NSLocalizedString("_cancel_", comment: "")
  104. buttonCreateFolder.setTitle(NSLocalizedString("_create_folder_", comment: ""), for: .normal)
  105. overwriteLabel.text = NSLocalizedString("_overwrite_", comment: "")
  106. // button
  107. buttonCreateFolder.layer.cornerRadius = 15
  108. buttonCreateFolder.layer.masksToBounds = true
  109. buttonCreateFolder.layer.backgroundColor = NCBrandColor.sharedInstance.graySoft.withAlphaComponent(0.5).cgColor
  110. buttonCreateFolder.setTitleColor(.black, for: .normal)
  111. buttonDone.layer.cornerRadius = 15
  112. buttonDone.layer.masksToBounds = true
  113. buttonDone.layer.backgroundColor = NCBrandColor.sharedInstance.graySoft.withAlphaComponent(0.5).cgColor
  114. buttonDone.setTitleColor(.black, for: .normal)
  115. buttonDone1.layer.cornerRadius = 15
  116. buttonDone1.layer.masksToBounds = true
  117. buttonDone1.layer.backgroundColor = NCBrandColor.sharedInstance.graySoft.withAlphaComponent(0.5).cgColor
  118. buttonDone1.setTitleColor(.black, for: .normal)
  119. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  120. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  121. changeTheming()
  122. }
  123. override func viewWillAppear(_ animated: Bool) {
  124. super.viewWillAppear(animated)
  125. self.navigationItem.title = titleCurrentFolder
  126. toolBarTop.constant = -100
  127. buttonDone.setTitle(titleButtonDone, for: .normal)
  128. buttonDone1.setTitle(titleButtonDone1, for: .normal)
  129. buttonDone1.isHidden = isButtonDone1Hide
  130. overwriteSwitch.isOn = overwrite
  131. overwriteView.isHidden = isOverwriteHide
  132. if selectFile {
  133. buttonDone.isHidden = true
  134. }
  135. if hideButtonCreateFolder {
  136. buttonCreateFolder.isHidden = true
  137. }
  138. // set the serverUrl
  139. if serverUrl == "" {
  140. serverUrl = NCUtility.shared.getHomeServer(urlBase: appDelegate.urlBase, account: appDelegate.account)
  141. }
  142. // get auto upload folder
  143. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  144. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  145. (layout, sort, ascending, groupBy, directoryOnTop, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: keyLayout,serverUrl: serverUrl)
  146. gridLayout.itemForLine = CGFloat(itemForLine)
  147. if layout == k_layout_list {
  148. collectionView.collectionViewLayout = listLayout
  149. } else {
  150. collectionView.collectionViewLayout = gridLayout
  151. }
  152. loadDatasource(withLoadFolder: true)
  153. shares = NCManageDatabase.sharedInstance.getTableShares(account: appDelegate.account, serverUrl: serverUrl)
  154. }
  155. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  156. super.viewWillTransition(to: size, with: coordinator)
  157. coordinator.animate(alongsideTransition: nil) { _ in
  158. self.collectionView?.collectionViewLayout.invalidateLayout()
  159. }
  160. }
  161. @objc func changeTheming() {
  162. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  163. refreshControl.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  164. toolbar.backgroundColor = NCBrandColor.sharedInstance.tabBar
  165. //toolbar.tintColor = .gray
  166. }
  167. // MARK: - Empty
  168. func emptyDataSetView(_ view: NCEmptyView) {
  169. if networkInProgress {
  170. view.emptyImage.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "networkInProgress"), width: 300, height: 300, color: .gray)
  171. view.emptyTitle.text = NSLocalizedString("_request_in_progress_", comment: "")
  172. view.emptyDescription.text = ""
  173. } else {
  174. view.emptyImage.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), width: 300, height: 300, color: NCBrandColor.sharedInstance.brandElement)
  175. if includeImages {
  176. view.emptyTitle.text = NSLocalizedString("_files_no_files_", comment: "")
  177. } else {
  178. view.emptyTitle.text = NSLocalizedString("_files_no_folders_", comment: "")
  179. }
  180. view.emptyDescription.text = ""
  181. }
  182. }
  183. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  184. return true
  185. }
  186. // MARK: ACTION
  187. @IBAction func actionCancel(_ sender: Any) {
  188. delegate?.dismissSelect(serverUrl: nil, metadata: nil, type: type, items: items, buttonType: "cancel", overwrite: overwrite)
  189. self.dismiss(animated: true, completion: nil)
  190. }
  191. @IBAction func actionDone(_ sender: Any) {
  192. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, buttonType: "done", overwrite: overwrite)
  193. self.dismiss(animated: true, completion: nil)
  194. }
  195. @IBAction func actionDone1(_ sender: Any) {
  196. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, buttonType: "done1", overwrite: overwrite)
  197. self.dismiss(animated: true, completion: nil)
  198. }
  199. @IBAction func actionCreateFolder(_ sender: Any) {
  200. let alertController = UIAlertController(title: NSLocalizedString("_create_folder_", comment: ""), message:"", preferredStyle: .alert)
  201. alertController.addTextField { (textField) in
  202. textField.autocapitalizationType = UITextAutocapitalizationType.words
  203. }
  204. let actionSave = UIAlertAction(title: NSLocalizedString("_save_", comment: ""), style: .default) { (action:UIAlertAction) in
  205. if let fileName = alertController.textFields?.first?.text {
  206. self.createFolder(with: fileName)
  207. }
  208. }
  209. let actionCancel = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel) { (action:UIAlertAction) in
  210. print("You've pressed cancel button")
  211. }
  212. alertController.addAction(actionSave)
  213. alertController.addAction(actionCancel)
  214. self.present(alertController, animated: true, completion:nil)
  215. }
  216. @IBAction func valueChangedSwitchOverwrite(_ sender: Any) {
  217. if let viewControllers = self.navigationController?.viewControllers {
  218. for viewController in viewControllers {
  219. if viewController is NCSelect {
  220. (viewController as! NCSelect).overwrite = overwriteSwitch.isOn
  221. }
  222. }
  223. }
  224. }
  225. // MARK: TAP EVENT
  226. func tapSwitchHeader(sender: Any) {
  227. if collectionView.collectionViewLayout == gridLayout {
  228. // list layout
  229. UIView.animate(withDuration: 0.0, animations: {
  230. self.collectionView.collectionViewLayout.invalidateLayout()
  231. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  232. self.collectionView.reloadData()
  233. })
  234. })
  235. layout = k_layout_list
  236. } else {
  237. // grid layout
  238. UIView.animate(withDuration: 0.0, animations: {
  239. self.collectionView.collectionViewLayout.invalidateLayout()
  240. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  241. self.collectionView.reloadData()
  242. })
  243. })
  244. layout = k_layout_grid
  245. }
  246. }
  247. func tapOrderHeader(sender: Any) {
  248. let sortMenu = NCSortMenu()
  249. sortMenu.toggleMenu(viewController: self, key: keyLayout, sortButton: sender as? UIButton, serverUrl: serverUrl)
  250. }
  251. func tapMoreHeader(sender: Any) {
  252. }
  253. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  254. }
  255. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  256. }
  257. func tapShareListItem(with objectId: String, sender: Any) {
  258. }
  259. func tapRichWorkspace(sender: Any) {
  260. }
  261. func longPressListItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  262. }
  263. func longPressGridItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  264. }
  265. func longPressMoreListItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  266. }
  267. func longPressMoreGridItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  268. }
  269. }
  270. // MARK: - Collection View
  271. extension NCSelect: UICollectionViewDelegate {
  272. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  273. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
  274. if isEditMode {
  275. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  276. selectOcId.remove(at: index)
  277. } else {
  278. selectOcId.append(metadata.ocId)
  279. }
  280. collectionView.reloadItems(at: [indexPath])
  281. return
  282. }
  283. if metadata.directory {
  284. guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName) else { return }
  285. guard let visualController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateViewController(withIdentifier: "NCSelect.storyboard") as? NCSelect else { return }
  286. self.serverUrlPush = serverUrlPush
  287. self.metadataTouch = metadata
  288. visualController.delegate = delegate
  289. visualController.hideButtonCreateFolder = hideButtonCreateFolder
  290. visualController.selectFile = selectFile
  291. visualController.includeDirectoryE2EEncryption = includeDirectoryE2EEncryption
  292. visualController.includeImages = includeImages
  293. visualController.type = type
  294. visualController.titleButtonDone = titleButtonDone
  295. visualController.titleButtonDone1 = titleButtonDone1
  296. visualController.isButtonDone1Hide = isButtonDone1Hide
  297. visualController.isOverwriteHide = isOverwriteHide
  298. visualController.overwrite = overwrite
  299. visualController.items = items
  300. visualController.titleCurrentFolder = metadataTouch!.fileNameView
  301. visualController.serverUrl = serverUrlPush
  302. self.navigationController?.pushViewController(visualController, animated: true)
  303. } else {
  304. delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadata, type: type, items: items, buttonType: "select", overwrite: overwrite)
  305. self.dismiss(animated: true, completion: nil)
  306. }
  307. }
  308. }
  309. extension NCSelect: UICollectionViewDataSource {
  310. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  311. if kind == UICollectionView.elementKindSectionHeader {
  312. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  313. if collectionView.collectionViewLayout == gridLayout {
  314. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  315. } else {
  316. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  317. }
  318. header.delegate = self
  319. header.setStatusButton(count: dataSource.metadatas.count)
  320. header.setTitleSorted(datasourceTitleButton: titleButton)
  321. header.viewRichWorkspaceHeightConstraint.constant = headerRichWorkspaceHeight
  322. header.setRichWorkspaceText(richWorkspaceText: richWorkspaceText)
  323. return header
  324. } else {
  325. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  326. let info = dataSource.getFilesInformation()
  327. footer.setTitleLabel(directories: info.directories, files: info.files, size: info.size)
  328. return footer
  329. }
  330. }
  331. func numberOfSections(in collectionView: UICollectionView) -> Int {
  332. return 1
  333. }
  334. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  335. let numberOfItems = dataSource.numberOfItems()
  336. emptyDataSet?.numberOfItemsInSection(numberOfItems, section:section)
  337. return numberOfItems
  338. }
  339. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  340. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else {
  341. return UICollectionViewCell()
  342. }
  343. var tableShare: tableShare?
  344. var isShare = false
  345. var isMounted = false
  346. // Download preview
  347. NCOperationQueue.shared.downloadThumbnail(metadata: metadata, urlBase: appDelegate.urlBase, view: collectionView, indexPath: indexPath)
  348. isShare = metadata.permissions.contains(k_permission_shared) && !metadataFolder.permissions.contains(k_permission_shared)
  349. isMounted = metadata.permissions.contains(k_permission_mounted) && !metadataFolder.permissions.contains(k_permission_mounted)
  350. if dataSource.metadataShare[metadata.ocId] != nil {
  351. tableShare = dataSource.metadataShare[metadata.ocId]
  352. }
  353. // LAYOUT LIST
  354. if layout == k_layout_list {
  355. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  356. cell.delegate = self
  357. cell.objectId = metadata.ocId
  358. cell.indexPath = indexPath
  359. cell.labelTitle.text = metadata.fileNameView
  360. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  361. cell.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  362. cell.imageSelect.image = nil
  363. cell.imageStatus.image = nil
  364. cell.imageLocal.image = nil
  365. cell.imageFavorite.image = nil
  366. cell.imageShared.image = nil
  367. cell.imageMore.image = nil
  368. cell.imageItem.image = nil
  369. cell.imageItem.backgroundColor = nil
  370. cell.progressView.progress = 0.0
  371. if metadata.directory {
  372. if metadata.e2eEncrypted {
  373. cell.imageItem.image = NCCollectionCommon.images.cellFolderEncryptedImage
  374. } else if isShare {
  375. cell.imageItem.image = NCCollectionCommon.images.cellFolderSharedWithMeImage
  376. } else if (tableShare != nil && tableShare?.shareType != 3) {
  377. cell.imageItem.image = NCCollectionCommon.images.cellFolderSharedWithMeImage
  378. } else if (tableShare != nil && tableShare?.shareType == 3) {
  379. cell.imageItem.image = NCCollectionCommon.images.cellFolderPublicImage
  380. } else if metadata.mountType == "group" {
  381. cell.imageItem.image = NCCollectionCommon.images.cellFolderGroupImage
  382. } else if isMounted {
  383. cell.imageItem.image = NCCollectionCommon.images.cellFolderExternalImage
  384. } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
  385. cell.imageItem.image = NCCollectionCommon.images.cellFolderAutomaticUploadImage
  386. } else {
  387. cell.imageItem.image = NCCollectionCommon.images.cellFolderImage
  388. }
  389. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
  390. let lockServerUrl = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!
  391. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
  392. // Local image: offline
  393. if tableDirectory != nil && tableDirectory!.offline {
  394. cell.imageLocal.image = NCCollectionCommon.images.cellOfflineFlag
  395. }
  396. } else {
  397. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  398. cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  399. } else {
  400. if metadata.hasPreview {
  401. cell.imageItem.backgroundColor = .lightGray
  402. } else {
  403. if metadata.iconName.count > 0 {
  404. cell.imageItem.image = UIImage.init(named: metadata.iconName)
  405. } else {
  406. cell.imageItem.image = NCCollectionCommon.images.cellFileImage
  407. }
  408. }
  409. }
  410. cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + " · " + CCUtility.transformedSize(metadata.size)
  411. // image local
  412. if dataSource.metadataOffLine.contains(metadata.ocId) {
  413. cell.imageLocal.image = NCCollectionCommon.images.cellOfflineFlag
  414. } else if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  415. cell.imageLocal.image = NCCollectionCommon.images.cellLocal
  416. }
  417. }
  418. // image Favorite
  419. if metadata.favorite {
  420. cell.imageFavorite.image = NCCollectionCommon.images.cellFavouriteImage
  421. }
  422. // Share image
  423. if (isShare) {
  424. cell.imageShared.image = NCCollectionCommon.images.cellSharedImage
  425. } else if (tableShare != nil && tableShare?.shareType == 3) {
  426. cell.imageShared.image = NCCollectionCommon.images.cellShareByLinkImage
  427. } else if (tableShare != nil && tableShare?.shareType != 3) {
  428. cell.imageShared.image = NCCollectionCommon.images.cellSharedImage
  429. } else {
  430. cell.imageShared.image = NCCollectionCommon.images.cellCanShareImage
  431. }
  432. if metadata.ownerId.count > 0 && metadata.ownerId != appDelegate.userID {
  433. // Load avatar
  434. let fileNameSource = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-" + metadata.ownerId + ".png"
  435. let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.user, urlBase: appDelegate.urlBase) + "-avatar-" + metadata.ownerId + ".png"
  436. if FileManager.default.fileExists(atPath: fileNameSourceAvatar) {
  437. cell.imageShared.image = UIImage(contentsOfFile: fileNameSourceAvatar)
  438. } else if FileManager.default.fileExists(atPath: fileNameSource) {
  439. cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
  440. } else {
  441. NCCommunication.shared.downloadAvatar(userID: metadata.ownerId, fileNameLocalPath: fileNameSource, size: Int(k_avatar_size)) { (account, data, errorCode, errorMessage) in
  442. if errorCode == 0 && account == self.appDelegate.account {
  443. cell.imageShared.image = NCUtility.shared.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar)
  444. }
  445. }
  446. }
  447. }
  448. cell.imageSelect.isHidden = true
  449. cell.backgroundView = nil
  450. cell.hideButtonMore(true)
  451. cell.hideButtonShare(true)
  452. cell.selectMode(false)
  453. // Live Photo
  454. if metadata.livePhoto {
  455. cell.imageStatus.image = NCCollectionCommon.images.cellLivePhotoImage
  456. }
  457. // Remove last separator
  458. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
  459. cell.separator.isHidden = true
  460. } else {
  461. cell.separator.isHidden = false
  462. }
  463. return cell
  464. }
  465. // LAYOUT GRID
  466. if layout == k_layout_grid {
  467. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  468. cell.delegate = self
  469. cell.objectId = metadata.ocId
  470. cell.indexPath = indexPath
  471. cell.labelTitle.text = metadata.fileNameView
  472. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  473. cell.imageSelect.image = nil
  474. cell.imageStatus.image = nil
  475. cell.imageLocal.image = nil
  476. cell.imageFavorite.image = nil
  477. cell.imageItem.image = nil
  478. cell.imageItem.backgroundColor = nil
  479. cell.progressView.progress = 0.0
  480. if metadata.directory {
  481. if metadata.e2eEncrypted {
  482. cell.imageItem.image = NCCollectionCommon.images.cellFolderEncryptedImage
  483. } else if isShare {
  484. cell.imageItem.image = NCCollectionCommon.images.cellFolderSharedWithMeImage
  485. } else if (tableShare != nil && tableShare!.shareType != 3) {
  486. cell.imageItem.image = NCCollectionCommon.images.cellFolderSharedWithMeImage
  487. } else if (tableShare != nil && tableShare!.shareType == 3) {
  488. cell.imageItem.image = NCCollectionCommon.images.cellFolderPublicImage
  489. } else if metadata.mountType == "group" {
  490. cell.imageItem.image = NCCollectionCommon.images.cellFolderGroupImage
  491. } else if isMounted {
  492. cell.imageItem.image = NCCollectionCommon.images.cellFolderExternalImage
  493. } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
  494. cell.imageItem.image = NCCollectionCommon.images.cellFolderAutomaticUploadImage
  495. } else {
  496. cell.imageItem.image = NCCollectionCommon.images.cellFolderImage
  497. }
  498. let lockServerUrl = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!
  499. let tableDirectory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
  500. // Local image: offline
  501. if tableDirectory != nil && tableDirectory!.offline {
  502. cell.imageLocal.image = NCCollectionCommon.images.cellOfflineFlag
  503. }
  504. } else {
  505. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  506. cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  507. } else {
  508. if metadata.hasPreview {
  509. cell.imageItem.backgroundColor = .lightGray
  510. } else {
  511. if metadata.iconName.count > 0 {
  512. cell.imageItem.image = UIImage.init(named: metadata.iconName)
  513. } else {
  514. cell.imageItem.image = NCCollectionCommon.images.cellFileImage
  515. }
  516. }
  517. }
  518. // image Local
  519. if dataSource.metadataOffLine.contains(metadata.ocId) {
  520. cell.imageLocal.image = NCCollectionCommon.images.cellOfflineFlag
  521. } else if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  522. cell.imageLocal.image = NCCollectionCommon.images.cellLocal
  523. }
  524. }
  525. // image Favorite
  526. if metadata.favorite {
  527. cell.imageFavorite.image = NCCollectionCommon.images.cellFavouriteImage
  528. }
  529. cell.imageSelect.isHidden = true
  530. cell.backgroundView = nil
  531. cell.hideButtonMore(true)
  532. // Live Photo
  533. if metadata.livePhoto {
  534. cell.imageStatus.image = NCCollectionCommon.images.cellLivePhotoImage
  535. }
  536. return cell
  537. }
  538. return UICollectionViewCell()
  539. }
  540. }
  541. extension NCSelect: UICollectionViewDelegateFlowLayout {
  542. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  543. if richWorkspaceText?.count ?? 0 == 0 {
  544. headerRichWorkspaceHeight = 0
  545. } else {
  546. headerRichWorkspaceHeight = UIScreen.main.bounds.size.height / 4
  547. }
  548. return CGSize(width: collectionView.frame.width, height: headerHeight + headerRichWorkspaceHeight)
  549. }
  550. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  551. return CGSize(width: collectionView.frame.width, height: footerHeight)
  552. }
  553. }
  554. // MARK: - NC API & Algorithm
  555. extension NCSelect {
  556. @objc func reloadDataSource() {
  557. loadDatasource(withLoadFolder: false)
  558. }
  559. @objc func loadDatasource(withLoadFolder: Bool) {
  560. var predicate: NSPredicate?
  561. (layout, sort, ascending, groupBy, directoryOnTop, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: keyLayout, serverUrl: serverUrl)
  562. if includeDirectoryE2EEncryption {
  563. if includeImages {
  564. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND (directory == true OR typeFile == 'image')", appDelegate.account, serverUrl)
  565. } else {
  566. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND directory == true", appDelegate.account, serverUrl)
  567. }
  568. } else {
  569. if includeImages {
  570. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND (directory == true OR typeFile == 'image')", appDelegate.account, serverUrl)
  571. } else {
  572. predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND directory == true", appDelegate.account, serverUrl)
  573. }
  574. }
  575. let metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: predicate!)
  576. self.dataSource = NCDataSource.init(metadatasSource: metadatasSource, sort: sort, ascending: ascending, directoryOnTop: directoryOnTop, favoriteOnTop: true, filterLivePhoto: true)
  577. if withLoadFolder {
  578. loadFolder()
  579. } else {
  580. self.refreshControl.endRefreshing()
  581. }
  582. let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account,serverUrl))
  583. richWorkspaceText = directory?.richWorkspace
  584. collectionView.reloadData()
  585. }
  586. func createFolder(with fileName: String) {
  587. NCNetworking.shared.createFolder(fileName: fileName, serverUrl: serverUrl, account: appDelegate.account, urlBase: appDelegate.urlBase) { (errorCode, errorDescription) in
  588. if errorCode == 0 {
  589. self.loadDatasource(withLoadFolder: true)
  590. } else {
  591. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  592. }
  593. }
  594. }
  595. func loadFolder() {
  596. networkInProgress = true
  597. collectionView.reloadData()
  598. NCNetworking.shared.readFolder(serverUrl: serverUrl, account: appDelegate.account) { (_, _, _, _, _, errorCode, errorDescription) in
  599. if errorCode != 0 {
  600. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  601. }
  602. self.networkInProgress = false
  603. self.loadDatasource(withLoadFolder: false)
  604. }
  605. }
  606. }