NCOffline.swift 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. //
  2. // NCOffline.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/10/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. class NCOffline: UIViewController, UIGestureRecognizerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  25. @IBOutlet weak var collectionView: UICollectionView!
  26. var titleCurrentFolder = NSLocalizedString("_manage_file_offline_", comment: "")
  27. var serverUrl = ""
  28. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  29. private var metadataPush: tableMetadata?
  30. private var isEditMode = false
  31. private var selectocId: [String] = []
  32. private var dataSource: NCDataSource?
  33. private var layout = ""
  34. private var groupBy = ""
  35. private var titleButton = ""
  36. private var itemForLine = 0
  37. private var autoUploadFileName = ""
  38. private var autoUploadDirectory = ""
  39. private var listLayout: NCListLayout!
  40. private var gridLayout: NCGridLayout!
  41. private let headerMenuHeight: CGFloat = 50
  42. private let sectionHeaderHeight: CGFloat = 20
  43. private let footerHeight: CGFloat = 50
  44. private let refreshControl = UIRefreshControl()
  45. required init?(coder aDecoder: NSCoder) {
  46. super.init(coder: aDecoder)
  47. appDelegate.activeOffline = self
  48. }
  49. override func viewDidLoad() {
  50. super.viewDidLoad()
  51. // Cell
  52. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  53. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  54. // Header
  55. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  56. collectionView.register(UINib.init(nibName: "NCSectionHeader", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeader")
  57. // Footer
  58. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  59. collectionView.alwaysBounceVertical = true
  60. listLayout = NCListLayout()
  61. gridLayout = NCGridLayout()
  62. // Refresh Control
  63. collectionView.addSubview(refreshControl)
  64. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  65. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  66. refreshControl.addTarget(self, action: #selector(reloadDataSourceNetwork), for: .valueChanged)
  67. // empty Data Source
  68. self.collectionView.emptyDataSetDelegate = self
  69. self.collectionView.emptyDataSetSource = self
  70. // 3D Touch peek and pop
  71. if traitCollection.forceTouchCapability == .available {
  72. registerForPreviewing(with: self, sourceView: view)
  73. }
  74. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  75. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_deleteFile), object: nil)
  76. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  77. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
  78. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
  79. NotificationCenter.default.addObserver(self, selector: #selector(uploadFileStart(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadFileStart), object: nil)
  80. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_progressTask), object:nil)
  81. changeTheming()
  82. }
  83. override func viewWillAppear(_ animated: Bool) {
  84. super.viewWillAppear(animated)
  85. self.navigationItem.title = titleCurrentFolder
  86. // get auto upload folder
  87. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  88. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  89. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: k_layout_view_offline)
  90. gridLayout.itemForLine = CGFloat(itemForLine)
  91. if layout == k_layout_list {
  92. collectionView.collectionViewLayout = listLayout
  93. } else {
  94. collectionView.collectionViewLayout = gridLayout
  95. }
  96. reloadDataSource()
  97. }
  98. override func viewDidAppear(_ animated: Bool) {
  99. super.viewDidAppear(animated)
  100. reloadDataSourceNetwork()
  101. }
  102. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  103. super.viewWillTransition(to: size, with: coordinator)
  104. coordinator.animate(alongsideTransition: nil) { _ in
  105. self.collectionView?.collectionViewLayout.invalidateLayout()
  106. }
  107. }
  108. //MARK: - NotificationCenter
  109. @objc func deleteFile(_ notification: NSNotification) {
  110. if self.view?.window == nil { return }
  111. if let userInfo = notification.userInfo as NSDictionary? {
  112. if let metadata = userInfo["metadata"] as? tableMetadata, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
  113. NCCollectionCommon.shared.notificationDeleteFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, errorCode: errorCode, errorDescription: errorDescription, onlyLocal: false)
  114. }
  115. }
  116. }
  117. @objc func downloadedFile(_ notification: NSNotification) {
  118. if self.view?.window == nil { return }
  119. if let userInfo = notification.userInfo as NSDictionary? {
  120. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  121. NCCollectionCommon.shared.notificationDownloadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata)
  122. }
  123. }
  124. }
  125. @objc func uploadedFile(_ notification: NSNotification) {
  126. if self.view?.window == nil { return }
  127. if let userInfo = notification.userInfo as NSDictionary? {
  128. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  129. NCCollectionCommon.shared.notificationUploadedFile(collectionView: collectionView, dataSource: dataSource, metadata: metadata, serverUrl: serverUrl, account: appDelegate.account)
  130. }
  131. }
  132. }
  133. @objc func uploadFileStart(_ notification: NSNotification) {
  134. if self.view?.window == nil { return }
  135. if let userInfo = notification.userInfo as NSDictionary? {
  136. if let metadata = userInfo["metadata"] as? tableMetadata {
  137. NCCollectionCommon.shared.notificationUploadFileStart(collectionView: collectionView, dataSource: dataSource, metadata: metadata, serverUrl: serverUrl, account: appDelegate.account)
  138. }
  139. }
  140. }
  141. @objc func triggerProgressTask(_ notification: NSNotification) {
  142. if self.view?.window == nil { return }
  143. if let userInfo = notification.userInfo as NSDictionary? {
  144. if let ocId = userInfo["ocId"] as? String {
  145. let progressNumber = userInfo["progress"] as? NSNumber ?? 0
  146. let progress = progressNumber.floatValue
  147. NCCollectionCommon.shared.notificationTriggerProgressTask(collectionView: collectionView, dataSource: dataSource, ocId: ocId, progress: progress)
  148. }
  149. }
  150. }
  151. @objc func changeTheming() {
  152. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  153. }
  154. // MARK: DZNEmpty
  155. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  156. return NCBrandColor.sharedInstance.backgroundView
  157. }
  158. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  159. return CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), width: 300, height: 300, color: NCBrandColor.sharedInstance.brandElement)
  160. }
  161. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  162. let text = "\n"+NSLocalizedString("_files_no_files_", comment: "")
  163. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  164. return NSAttributedString.init(string: text, attributes: attributes)
  165. }
  166. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  167. return true
  168. }
  169. // MARK: TAP EVENT
  170. func tapSwitchHeader(sender: Any) {
  171. if collectionView.collectionViewLayout == gridLayout {
  172. // list layout
  173. UIView.animate(withDuration: 0.0, animations: {
  174. self.collectionView.collectionViewLayout.invalidateLayout()
  175. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  176. self.collectionView.reloadData()
  177. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  178. })
  179. })
  180. layout = k_layout_list
  181. NCUtility.shared.setLayoutForView(key: k_layout_view_offline, layout: layout)
  182. } else {
  183. // grid layout
  184. UIView.animate(withDuration: 0.0, animations: {
  185. self.collectionView.collectionViewLayout.invalidateLayout()
  186. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  187. self.collectionView.reloadData()
  188. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  189. })
  190. })
  191. layout = k_layout_grid
  192. NCUtility.shared.setLayoutForView(key: k_layout_view_offline, layout: layout)
  193. }
  194. }
  195. func tapOrderHeader(sender: Any) {
  196. let sortMenu = NCSortMenu()
  197. sortMenu.toggleMenu(viewController: self, key: k_layout_view_offline, sortButton: sender as? UIButton, serverUrl: serverUrl)
  198. }
  199. func tapMoreHeader(sender: Any) {
  200. }
  201. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  202. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender)
  203. }
  204. func tapShareListItem(with objectId: String, sender: Any) {
  205. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "ocId == %@", objectId)) else {
  206. return
  207. }
  208. NCMainCommon.shared.openShare(ViewController: self, metadata: metadata, indexPage: 2)
  209. }
  210. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  211. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "ocId == %@", objectId)) else {
  212. return
  213. }
  214. if !isEditMode {
  215. let mainMenuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateViewController(withIdentifier: "NCMainMenuTableViewController") as! NCMainMenuTableViewController
  216. var actions: [NCMenuAction] = []
  217. var iconHeader: UIImage!
  218. if let icon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  219. iconHeader = icon
  220. } else {
  221. iconHeader = UIImage(named: metadata.iconName)
  222. }
  223. actions.append(
  224. NCMenuAction(
  225. title: metadata.fileNameView,
  226. icon: iconHeader,
  227. action: nil
  228. )
  229. )
  230. if self.serverUrl == "" {
  231. actions.append(
  232. NCMenuAction(
  233. title: NSLocalizedString("_remove_available_offline_", comment: ""),
  234. icon: CCGraphics.changeThemingColorImage(UIImage(named: "offline"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  235. action: { menuAction in
  236. if metadata.directory {
  237. NCManageDatabase.sharedInstance.setDirectory(serverUrl: CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!, offline: false, account: self.appDelegate.account)
  238. } else {
  239. NCManageDatabase.sharedInstance.setLocalFile(ocId: metadata.ocId, offline: false)
  240. }
  241. self.reloadDataSource()
  242. }
  243. )
  244. )
  245. }
  246. actions.append(
  247. NCMenuAction(
  248. title: NSLocalizedString("_details_", comment: ""),
  249. icon: CCGraphics.changeThemingColorImage(UIImage(named: "details"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  250. action: { menuAction in
  251. NCMainCommon.shared.openShare(ViewController: self, metadata: metadata, indexPage: 0)
  252. }
  253. )
  254. )
  255. actions.append(
  256. NCMenuAction(
  257. title: NSLocalizedString("_delete_", comment: ""),
  258. icon: CCGraphics.changeThemingColorImage(UIImage(named: "trash"), width: 50, height: 50, color: .red),
  259. action: { menuAction in
  260. NCNetworking.shared.deleteMetadata(metadata, account: self.appDelegate.account, urlBase: self.appDelegate.urlBase,onlyLocal: true) { (errorCode, errorDescription) in }
  261. }
  262. )
  263. )
  264. mainMenuViewController.actions = actions
  265. let menuPanelController = NCMenuPanelController()
  266. menuPanelController.parentPresenter = self
  267. menuPanelController.delegate = mainMenuViewController
  268. menuPanelController.set(contentViewController: mainMenuViewController)
  269. menuPanelController.track(scrollView: mainMenuViewController.tableView)
  270. self.present(menuPanelController, animated: true, completion: nil)
  271. } else {
  272. let buttonPosition:CGPoint = (sender as! UIButton).convert(CGPoint.zero, to:collectionView)
  273. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  274. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  275. }
  276. }
  277. // MARK: SEGUE
  278. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  279. let photoDataSource: NSMutableArray = []
  280. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  281. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  282. photoDataSource.add(metadata)
  283. }
  284. }
  285. if let segueNavigationController = segue.destination as? UINavigationController {
  286. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  287. segueViewController.metadata = metadataPush
  288. }
  289. }
  290. }
  291. }
  292. // MARK: - 3D Touch peek and pop
  293. extension NCOffline: UIViewControllerPreviewingDelegate {
  294. func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
  295. guard let point = collectionView?.convert(location, from: collectionView?.superview) else { return nil }
  296. guard let indexPath = collectionView?.indexPathForItem(at: point) else { return nil }
  297. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return nil }
  298. guard let viewController = UIStoryboard(name: "CCPeekPop", bundle: nil).instantiateViewController(withIdentifier: "PeekPopImagePreview") as? CCPeekPop else { return nil }
  299. viewController.metadata = metadata
  300. if layout == k_layout_grid {
  301. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCGridCell else { return nil }
  302. previewingContext.sourceRect = cell.frame
  303. viewController.imageFile = cell.imageItem.image
  304. } else {
  305. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCListCell else { return nil }
  306. previewingContext.sourceRect = cell.frame
  307. viewController.imageFile = cell.imageItem.image
  308. }
  309. viewController.showOpenIn = true
  310. viewController.showOpenQuickLook = NCUtility.shared.isQuickLookDisplayable(metadata: metadata)
  311. viewController.showShare = false
  312. return viewController
  313. }
  314. func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) {
  315. guard let indexPath = collectionView?.indexPathForItem(at: previewingContext.sourceRect.origin) else { return }
  316. collectionView(collectionView, didSelectItemAt: indexPath)
  317. }
  318. }
  319. // MARK: - Collection View
  320. extension NCOffline: UICollectionViewDelegate {
  321. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  322. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return }
  323. metadataPush = metadata
  324. if isEditMode {
  325. if let index = selectocId.firstIndex(of: metadata.ocId) {
  326. selectocId.remove(at: index)
  327. } else {
  328. selectocId.append(metadata.ocId)
  329. }
  330. collectionView.reloadItems(at: [indexPath])
  331. return
  332. }
  333. if metadata.directory {
  334. guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadataPush!.serverUrl, addFileName: metadataPush!.fileName) else { return }
  335. let ncOffline:NCOffline = UIStoryboard(name: "NCOffline", bundle: nil).instantiateInitialViewController() as! NCOffline
  336. ncOffline.serverUrl = serverUrlPush
  337. ncOffline.titleCurrentFolder = metadataPush!.fileNameView
  338. self.navigationController?.pushViewController(ncOffline, animated: true)
  339. } else {
  340. if CCUtility.fileProviderStorageExists(metadataPush?.ocId, fileNameView: metadataPush?.fileNameView) {
  341. performSegue(withIdentifier: "segueDetail", sender: self)
  342. } else {
  343. NCNetworking.shared.download(metadata: metadataPush!, selector: "") { (errorCode) in
  344. if errorCode == 0 {
  345. self.performSegue(withIdentifier: "segueDetail", sender: self)
  346. }
  347. }
  348. }
  349. }
  350. }
  351. }
  352. extension NCOffline: UICollectionViewDataSource {
  353. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  354. if (indexPath.section == 0) {
  355. if kind == UICollectionView.elementKindSectionHeader {
  356. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  357. if collectionView.collectionViewLayout == gridLayout {
  358. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  359. } else {
  360. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  361. }
  362. header.delegate = self
  363. header.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  364. header.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  365. header.setStatusButton(count: dataSource?.metadatas.count ?? 0)
  366. header.setTitleSorted(datasourceTitleButton: titleButton)
  367. if groupBy == "none" {
  368. header.labelSection.isHidden = true
  369. header.labelSectionHeightConstraint.constant = 0
  370. } else {
  371. header.labelSection.isHidden = false
  372. header.setTitleLabel(title: "")
  373. header.labelSectionHeightConstraint.constant = sectionHeaderHeight
  374. }
  375. return header
  376. } else {
  377. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  378. let info = dataSource?.getFilesInformation()
  379. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  380. return footer
  381. }
  382. } else {
  383. if kind == UICollectionView.elementKindSectionHeader {
  384. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCSectionHeader
  385. header.setTitleLabel(title: "")
  386. return header
  387. } else {
  388. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  389. let info = dataSource?.getFilesInformation()
  390. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  391. return footer
  392. }
  393. }
  394. }
  395. func numberOfSections(in collectionView: UICollectionView) -> Int {
  396. return dataSource?.sections ?? 1
  397. }
  398. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  399. return dataSource?.numberOfItemsInSection(section: section) ?? 1
  400. }
  401. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  402. let cell: UICollectionViewCell
  403. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else {
  404. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  405. }
  406. if layout == k_layout_grid {
  407. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  408. } else {
  409. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  410. (cell as! NCListCell).separator.backgroundColor = NCBrandColor.sharedInstance.separator
  411. }
  412. let shares = NCManageDatabase.sharedInstance.getTableShares(account: metadata.account, serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  413. NCCollectionCommon.shared.cellForItemAt(indexPath: indexPath, collectionView: collectionView, cell: cell, metadata: metadata, metadataFolder: nil, serverUrl: metadata.serverUrl, isEditMode: isEditMode, selectocId: selectocId, autoUploadFileName: autoUploadFileName, autoUploadDirectory: autoUploadDirectory, hideButtonMore: false, downloadThumbnail: true, shares: shares, source: self)
  414. return cell
  415. }
  416. }
  417. extension NCOffline: UICollectionViewDelegateFlowLayout {
  418. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  419. if section == 0 {
  420. if groupBy == "none" {
  421. return CGSize(width: collectionView.frame.width, height: headerMenuHeight)
  422. } else {
  423. return CGSize(width: collectionView.frame.width, height: headerMenuHeight + sectionHeaderHeight)
  424. }
  425. } else {
  426. return CGSize(width: collectionView.frame.width, height: sectionHeaderHeight)
  427. }
  428. }
  429. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  430. let sections = dataSource?.sections ?? 1
  431. if (section == sections - 1) {
  432. return CGSize(width: collectionView.frame.width, height: footerHeight)
  433. } else {
  434. return CGSize(width: collectionView.frame.width, height: 0)
  435. }
  436. }
  437. }
  438. // MARK: - NC API & Algorithm
  439. extension NCOffline {
  440. @objc func reloadDataSource() {
  441. var ocIds: [String] = []
  442. var sort: String
  443. var ascending: Bool
  444. var directoryOnTop: Bool
  445. (layout, sort, ascending, groupBy, directoryOnTop, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: k_layout_view_offline)
  446. if serverUrl == "" {
  447. if let directories = NCManageDatabase.sharedInstance.getTablesDirectory(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.account), sorted: "serverUrl", ascending: true) {
  448. for directory: tableDirectory in directories {
  449. ocIds.append(directory.ocId)
  450. }
  451. }
  452. let files = NCManageDatabase.sharedInstance.getTableLocalFiles(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.account), sorted: "fileName", ascending: true)
  453. for file: tableLocalFile in files {
  454. ocIds.append(file.ocId)
  455. }
  456. let metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND ocId IN %@", appDelegate.account, ocIds))
  457. self.dataSource = NCDataSource.init(metadatasSource: metadatasSource, sort: sort, ascending: ascending, directoryOnTop: directoryOnTop, filterLivePhoto: true)
  458. } else {
  459. let metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl))
  460. self.dataSource = NCDataSource.init(metadatasSource: metadatasSource, sort: sort, ascending: ascending, directoryOnTop: directoryOnTop, filterLivePhoto: true)
  461. }
  462. refreshControl.endRefreshing()
  463. collectionView.reloadData()
  464. }
  465. @objc func reloadDataSourceNetwork() {
  466. if serverUrl != "" {
  467. NCNetworking.shared.readFolder(serverUrl: serverUrl, account: appDelegate.account) { (account, metadataFolder, metadatas, metadatasUpdate, metadatasLocalUpdate, errorCode, errorDescription) in
  468. if errorCode == 0 {
  469. for metadata in metadatas ?? [] {
  470. if !metadata.directory {
  471. let localFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  472. if localFile == nil || localFile?.etag != metadata.etag {
  473. NCOperationQueue.shared.download(metadata: metadata, selector: selectorDownloadFile, setFavorite: false)
  474. }
  475. }
  476. }
  477. }
  478. self.reloadDataSource()
  479. }
  480. }
  481. }
  482. }