NCDataSource.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. //
  2. // NCDataSource.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 06/09/2020.
  6. // Copyright © 2020 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 NextcloudKit
  25. class NCDataSource: NSObject {
  26. var metadatas: [tableMetadata] = []
  27. var metadatasForSection: [NCMetadataForSection] = []
  28. var directory: tableDirectory?
  29. var groupByField: String = ""
  30. private var sectionsValue: [String] = []
  31. private var providers: [NKSearchProvider]?
  32. private var searchResults: [NKSearchResult]?
  33. private var ascending: Bool = true
  34. private var sort: String = ""
  35. private var directoryOnTop: Bool = true
  36. private var favoriteOnTop: Bool = true
  37. override init() {
  38. super.init()
  39. }
  40. init(metadatas: [tableMetadata], account: String, directory: tableDirectory? = nil, sort: String? = "none", ascending: Bool? = false, directoryOnTop: Bool? = true, favoriteOnTop: Bool? = true, groupByField: String = "name", providers: [NKSearchProvider]? = nil, searchResults: [NKSearchResult]? = nil) {
  41. super.init()
  42. self.metadatas = metadatas.filter({
  43. !(NCGlobal.shared.includeHiddenFiles.contains($0.fileNameView) || $0.isTransferInForeground)
  44. })
  45. self.directory = directory
  46. self.sort = sort ?? "none"
  47. self.ascending = ascending ?? false
  48. self.directoryOnTop = directoryOnTop ?? true
  49. self.favoriteOnTop = favoriteOnTop ?? true
  50. self.groupByField = groupByField
  51. // unified search
  52. self.providers = providers
  53. self.searchResults = searchResults
  54. createSections()
  55. }
  56. // MARK: -
  57. func clearDataSource() {
  58. self.metadatas.removeAll()
  59. self.metadatasForSection.removeAll()
  60. self.directory = nil
  61. self.sectionsValue.removeAll()
  62. self.providers = nil
  63. self.searchResults = nil
  64. }
  65. func clearDirectory() {
  66. self.directory = nil
  67. }
  68. func changeGroupByField(_ groupByField: String) {
  69. self.groupByField = groupByField
  70. print("DATASOURCE: set group by filed " + groupByField)
  71. self.metadatasForSection.removeAll()
  72. self.sectionsValue.removeAll()
  73. print("DATASOURCE: remove all sections")
  74. createSections()
  75. }
  76. func addSection(metadatas: [tableMetadata], searchResult: NKSearchResult?) {
  77. self.metadatas.append(contentsOf: metadatas)
  78. if let searchResult = searchResult {
  79. self.searchResults?.append(searchResult)
  80. }
  81. createSections()
  82. }
  83. internal func createSections() {
  84. // get all Section
  85. for metadata in self.metadatas {
  86. // skipped livePhoto VIDEO part
  87. if metadata.isLivePhoto && metadata.classFile == NKCommon.TypeClassFile.video.rawValue && metadata.status <= NCGlobal.shared.metadataStatusNormal {
  88. continue
  89. }
  90. let section = NSLocalizedString(self.getSectionValue(metadata: metadata), comment: "")
  91. if !self.sectionsValue.contains(section) {
  92. self.sectionsValue.append(section)
  93. }
  94. }
  95. // Unified search
  96. if let providers = self.providers, !providers.isEmpty {
  97. let sectionsDictionary = ThreadSafeDictionary<String, Int>()
  98. for section in self.sectionsValue {
  99. if let provider = providers.filter({ $0.id == section}).first {
  100. sectionsDictionary[section] = provider.order
  101. }
  102. }
  103. self.sectionsValue.removeAll()
  104. let sectionsDictionarySorted = sectionsDictionary.sorted(by: {$0.value < $1.value })
  105. for section in sectionsDictionarySorted {
  106. if section.key == NCGlobal.shared.appName {
  107. self.sectionsValue.insert(section.key, at: 0)
  108. } else {
  109. self.sectionsValue.append(section.key)
  110. }
  111. }
  112. } else {
  113. // normal
  114. let directory = NSLocalizedString("directory", comment: "").lowercased().firstUppercased
  115. self.sectionsValue = self.sectionsValue.sorted {
  116. if directoryOnTop && $0 == directory {
  117. return true
  118. } else if directoryOnTop && $1 == directory {
  119. return false
  120. }
  121. if self.ascending {
  122. return $0 < $1
  123. } else {
  124. return $0 > $1
  125. }
  126. }
  127. }
  128. for sectionValue in self.sectionsValue {
  129. if !existsMetadataForSection(sectionValue: sectionValue) {
  130. print("DATASOURCE: create metadata for section: " + sectionValue)
  131. createMetadataForSection(sectionValue: sectionValue)
  132. }
  133. }
  134. }
  135. internal func createMetadataForSection(sectionValue: String) {
  136. var searchResult: NKSearchResult?
  137. if let providers = self.providers, !providers.isEmpty, let searchResults = self.searchResults {
  138. searchResult = searchResults.filter({ $0.id == sectionValue}).first
  139. }
  140. let metadatas = self.metadatas.filter({ getSectionValue(metadata: $0) == sectionValue})
  141. let metadataForSection = NCMetadataForSection(sectionValue: sectionValue,
  142. metadatas: metadatas,
  143. lastSearchResult: searchResult,
  144. sort: self.sort,
  145. ascending: self.ascending,
  146. directoryOnTop: self.directoryOnTop,
  147. favoriteOnTop: self.favoriteOnTop)
  148. metadatasForSection.append(metadataForSection)
  149. }
  150. func getMetadataSourceForAllSections() -> [tableMetadata] {
  151. var metadatas: [tableMetadata] = []
  152. for section in metadatasForSection {
  153. metadatas.append(contentsOf: section.metadatas)
  154. }
  155. return metadatas
  156. }
  157. // MARK: -
  158. func appendMetadatasToSection(_ metadatas: [tableMetadata], metadataForSection: NCMetadataForSection, lastSearchResult: NKSearchResult) {
  159. guard let sectionIndex = getSectionIndex(metadataForSection.sectionValue) else { return }
  160. var indexPaths: [IndexPath] = []
  161. self.metadatas.append(contentsOf: metadatas)
  162. metadataForSection.metadatas.append(contentsOf: metadatas)
  163. metadataForSection.lastSearchResult = lastSearchResult
  164. metadataForSection.createMetadatas()
  165. for metadata in metadatas {
  166. if let rowIndex = metadataForSection.metadatas.firstIndex(where: {$0.ocId == metadata.ocId}) {
  167. indexPaths.append(IndexPath(row: rowIndex, section: sectionIndex))
  168. }
  169. }
  170. }
  171. // MARK: -
  172. func getIndexPathMetadata(ocId: String) -> (indexPath: IndexPath?, metadataForSection: NCMetadataForSection?) {
  173. guard let metadata = self.metadatas.filter({ $0.ocId == ocId}).first else { return (nil, nil) }
  174. let sectionValue = getSectionValue(metadata: metadata)
  175. guard let sectionIndex = getSectionIndex(sectionValue), let metadataForSection = getMetadataForSection(sectionValue), let rowIndex = metadataForSection.metadatas.firstIndex(where: {$0.ocId == ocId}) else { return (nil, nil) }
  176. return (IndexPath(row: rowIndex, section: sectionIndex), metadataForSection)
  177. }
  178. func numberOfSections() -> Int {
  179. guard !self.sectionsValue.isEmpty else { return 1 }
  180. return self.sectionsValue.count
  181. }
  182. func numberOfItemsInSection(_ section: Int) -> Int {
  183. guard !self.sectionsValue.isEmpty && !self.metadatas.isEmpty, let metadataForSection = getMetadataForSection(section) else { return 0}
  184. return metadataForSection.metadatas.count
  185. }
  186. func cellForItemAt(indexPath: IndexPath) -> tableMetadata? {
  187. guard !metadatasForSection.isEmpty && indexPath.section < metadatasForSection.count, let metadataForSection = getMetadataForSection(indexPath.section), indexPath.row < metadataForSection.metadatas.count else { return nil }
  188. return metadataForSection.metadatas[indexPath.row]
  189. }
  190. func getSectionValueLocalization(indexPath: IndexPath) -> String {
  191. guard !metadatasForSection.isEmpty, let metadataForSection = self.getMetadataForSection(indexPath.section) else { return ""}
  192. if let searchResults = self.searchResults, let searchResult = searchResults.filter({ $0.id == metadataForSection.sectionValue}).first {
  193. return searchResult.name
  194. }
  195. return metadataForSection.sectionValue
  196. }
  197. func getFooterInformationAllMetadatas() -> (directories: Int, files: Int, size: Int64) {
  198. var directories: Int = 0
  199. var files: Int = 0
  200. var size: Int64 = 0
  201. for metadataForSection in metadatasForSection {
  202. directories += metadataForSection.numDirectory
  203. files += metadataForSection.numFile
  204. size += metadataForSection.totalSize
  205. }
  206. return (directories, files, size)
  207. }
  208. // MARK: -
  209. internal func isSameNumbersOfSections(numberOfSections: Int) -> Bool {
  210. guard !self.metadatasForSection.isEmpty else { return false }
  211. return numberOfSections == self.numberOfSections()
  212. }
  213. internal func getSectionValue(metadata: tableMetadata) -> String {
  214. switch self.groupByField {
  215. case "name":
  216. return NSLocalizedString(metadata.name, comment: "")
  217. case "classFile":
  218. return NSLocalizedString(metadata.classFile, comment: "").lowercased().firstUppercased
  219. default:
  220. return NSLocalizedString(metadata.classFile, comment: "")
  221. }
  222. }
  223. internal func getIndexMetadatasForSection(_ sectionValue: String) -> Int? {
  224. return self.metadatasForSection.firstIndex(where: {$0.sectionValue == sectionValue })
  225. }
  226. internal func getSectionIndex(_ sectionValue: String) -> Int? {
  227. return self.sectionsValue.firstIndex(where: {$0 == sectionValue })
  228. }
  229. internal func existsMetadataForSection(sectionValue: String) -> Bool {
  230. return !self.metadatasForSection.filter({ $0.sectionValue == sectionValue }).isEmpty
  231. }
  232. internal func getMetadataForSection(_ section: Int) -> NCMetadataForSection? {
  233. guard section < sectionsValue.count, let metadataForSection = self.metadatasForSection.filter({ $0.sectionValue == sectionsValue[section]}).first else { return nil }
  234. return metadataForSection
  235. }
  236. internal func getMetadataForSection(_ sectionValue: String) -> NCMetadataForSection? {
  237. guard let metadataForSection = self.metadatasForSection.filter({ $0.sectionValue == sectionValue }).first else { return nil }
  238. return metadataForSection
  239. }
  240. }
  241. // MARK: -
  242. class NCMetadataForSection: NSObject {
  243. var sectionValue: String
  244. var metadatas: [tableMetadata]
  245. var lastSearchResult: NKSearchResult?
  246. var unifiedSearchInProgress: Bool = false
  247. private var sort: String
  248. private var ascending: Bool
  249. private var directoryOnTop: Bool
  250. private var favoriteOnTop: Bool
  251. private var metadatasSorted: [tableMetadata] = []
  252. private var metadatasFavoriteDirectory: [tableMetadata] = []
  253. private var metadatasFavoriteFile: [tableMetadata] = []
  254. private var metadatasDirectory: [tableMetadata] = []
  255. private var metadatasFile: [tableMetadata] = []
  256. public var numDirectory: Int = 0
  257. public var numFile: Int = 0
  258. public var totalSize: Int64 = 0
  259. init(sectionValue: String, metadatas: [tableMetadata], lastSearchResult: NKSearchResult?, sort: String, ascending: Bool, directoryOnTop: Bool, favoriteOnTop: Bool) {
  260. self.sectionValue = sectionValue
  261. self.metadatas = metadatas
  262. self.lastSearchResult = lastSearchResult
  263. self.sort = sort
  264. self.ascending = ascending
  265. self.directoryOnTop = directoryOnTop
  266. self.favoriteOnTop = favoriteOnTop
  267. super.init()
  268. createMetadatas()
  269. }
  270. func createMetadatas() {
  271. // Clear
  272. //
  273. metadatasSorted.removeAll()
  274. metadatasFavoriteDirectory.removeAll()
  275. metadatasFavoriteFile.removeAll()
  276. metadatasDirectory.removeAll()
  277. metadatasFile.removeAll()
  278. numDirectory = 0
  279. numFile = 0
  280. totalSize = 0
  281. var ocIds: [String] = []
  282. let metadataInSession = metadatas.filter({ !$0.session.isEmpty })
  283. // Metadata order
  284. //
  285. if sort != "none" && !sort.isEmpty {
  286. metadatasSorted = metadatas.sorted {
  287. switch sort {
  288. case "date":
  289. if ascending {
  290. return ($0.date as Date) < ($1.date as Date)
  291. } else {
  292. return ($0.date as Date) > ($1.date as Date)
  293. }
  294. case "size":
  295. if ascending {
  296. return $0.size < $1.size
  297. } else {
  298. return $0.size > $1.size
  299. }
  300. default:
  301. if ascending {
  302. return $0.fileNameView.lowercased() < $1.fileNameView.lowercased()
  303. } else {
  304. return $0.fileNameView.lowercased() > $1.fileNameView.lowercased()
  305. }
  306. }
  307. }
  308. } else {
  309. metadatasSorted = metadatas
  310. }
  311. // Initialize datasource
  312. //
  313. for metadata in metadatasSorted {
  314. // skipped the root file
  315. if metadata.fileName == "." || metadata.serverUrl == ".." {
  316. continue
  317. }
  318. // skipped livePhoto
  319. if metadata.isLivePhoto && metadata.classFile == NKCommon.TypeClassFile.video.rawValue && metadata.status <= NCGlobal.shared.metadataStatusNormal {
  320. continue
  321. }
  322. // Upload [REPLACE] skip
  323. if metadata.session.isEmpty && !metadataInSession.filter({ $0.fileNameView == metadata.fileNameView }).isEmpty {
  324. continue
  325. }
  326. // Upload [REPLACE] skip
  327. if metadata.session.isEmpty && !metadataInSession.filter({ $0.fileNameView == metadata.fileNameView }).isEmpty {
  328. continue
  329. }
  330. // Organized the metadata
  331. if metadata.favorite && favoriteOnTop {
  332. if metadata.directory {
  333. metadatasFavoriteDirectory.append(metadata)
  334. } else {
  335. metadatasFavoriteFile.append(metadata)
  336. }
  337. } else if metadata.directory && directoryOnTop {
  338. metadatasDirectory.append(metadata)
  339. } else {
  340. metadatasFile.append(metadata)
  341. }
  342. if metadata.directory {
  343. ocIds.append(metadata.ocId)
  344. numDirectory += 1
  345. } else {
  346. numFile += 1
  347. totalSize += metadata.size
  348. }
  349. }
  350. metadatas.removeAll()
  351. // Struct view : favorite dir -> favorite file -> directory -> files
  352. metadatas += metadatasFavoriteDirectory
  353. metadatas += metadatasFavoriteFile
  354. metadatas += metadatasDirectory
  355. metadatas += metadatasFile
  356. }
  357. }