NCOffline.swift 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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: NCCollectionViewCommon {
  25. required init?(coder aDecoder: NSCoder) {
  26. super.init(coder: aDecoder)
  27. appDelegate.activeOffline = self
  28. titleCurrentFolder = NSLocalizedString("_manage_file_offline_", comment: "")
  29. layoutKey = k_layout_view_offline
  30. }
  31. // MARK: DZNEmpty
  32. override func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  33. return CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), width: 300, height: 300, color: NCBrandColor.sharedInstance.brandElement)
  34. }
  35. override func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  36. let text = "\n"+NSLocalizedString("_files_no_files_", comment: "")
  37. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  38. return NSAttributedString.init(string: text, attributes: attributes)
  39. }
  40. // MARK: SEGUE
  41. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  42. let photoDataSource: NSMutableArray = []
  43. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  44. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  45. photoDataSource.add(metadata)
  46. }
  47. }
  48. if let segueNavigationController = segue.destination as? UINavigationController {
  49. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  50. segueViewController.metadata = metadataPush
  51. }
  52. }
  53. }
  54. // MARK: - Collection View
  55. override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  56. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return }
  57. metadataPush = metadata
  58. if isEditMode {
  59. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  60. selectOcId.remove(at: index)
  61. } else {
  62. selectOcId.append(metadata.ocId)
  63. }
  64. collectionView.reloadItems(at: [indexPath])
  65. return
  66. }
  67. if metadata.directory {
  68. guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadataPush!.serverUrl, addFileName: metadataPush!.fileName) else { return }
  69. let ncOffline:NCOffline = UIStoryboard(name: "NCOffline", bundle: nil).instantiateInitialViewController() as! NCOffline
  70. ncOffline.serverUrl = serverUrlPush
  71. ncOffline.titleCurrentFolder = metadataPush!.fileNameView
  72. self.navigationController?.pushViewController(ncOffline, animated: true)
  73. } else {
  74. if CCUtility.fileProviderStorageExists(metadataPush?.ocId, fileNameView: metadataPush?.fileNameView) {
  75. performSegue(withIdentifier: "segueDetail", sender: self)
  76. } else {
  77. NCNetworking.shared.download(metadata: metadataPush!, selector: "") { (errorCode) in
  78. if errorCode == 0 {
  79. self.performSegue(withIdentifier: "segueDetail", sender: self)
  80. }
  81. }
  82. }
  83. }
  84. }
  85. // MARK: - NC API & Algorithm
  86. override func reloadDataSource() {
  87. var ocIds: [String] = []
  88. var sort: String
  89. var ascending: Bool
  90. var directoryOnTop: Bool
  91. (layout, sort, ascending, groupBy, directoryOnTop, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: k_layout_view_offline)
  92. if serverUrl == "" {
  93. if let directories = NCManageDatabase.sharedInstance.getTablesDirectory(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.account), sorted: "serverUrl", ascending: true) {
  94. for directory: tableDirectory in directories {
  95. ocIds.append(directory.ocId)
  96. }
  97. }
  98. let files = NCManageDatabase.sharedInstance.getTableLocalFiles(predicate: NSPredicate(format: "account == %@ AND offline == true", appDelegate.account), sorted: "fileName", ascending: true)
  99. for file: tableLocalFile in files {
  100. ocIds.append(file.ocId)
  101. }
  102. let metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND ocId IN %@", appDelegate.account, ocIds))
  103. self.dataSource = NCDataSource.init(metadatasSource: metadatasSource, sort: sort, ascending: ascending, directoryOnTop: directoryOnTop, filterLivePhoto: true)
  104. } else {
  105. let metadatasSource = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl))
  106. self.dataSource = NCDataSource.init(metadatasSource: metadatasSource, sort: sort, ascending: ascending, directoryOnTop: directoryOnTop, filterLivePhoto: true)
  107. }
  108. refreshControl.endRefreshing()
  109. collectionView.reloadData()
  110. }
  111. override func reloadDataSourceNetwork() {
  112. if serverUrl != "" {
  113. NCNetworking.shared.readFolder(serverUrl: serverUrl, account: appDelegate.account) { (account, metadataFolder, metadatas, metadatasUpdate, metadatasLocalUpdate, errorCode, errorDescription) in
  114. if errorCode == 0 {
  115. for metadata in metadatas ?? [] {
  116. if !metadata.directory {
  117. let localFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
  118. if localFile == nil || localFile?.etag != metadata.etag {
  119. NCOperationQueue.shared.download(metadata: metadata, selector: selectorDownloadFile, setFavorite: false)
  120. }
  121. }
  122. }
  123. }
  124. self.reloadDataSource()
  125. }
  126. }
  127. }
  128. }