NCDataSource.swift 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  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 NCCommunication
  25. class NCDataSource: NSObject {
  26. public var metadatasSource: [tableMetadata] = []
  27. public var metadatasForSection: [NCMetadataForSection] = []
  28. private var sectionsValue: [String] = []
  29. private var providers: [NCCSearchProvider]?
  30. private var searchResults: [NCCSearchResult]?
  31. private var shares: [tableShare] = []
  32. private var localFiles: [tableLocalFile] = []
  33. private var ascending: Bool = true
  34. private var sort: String = ""
  35. private var directoryOnTop: Bool = true
  36. private var favoriteOnTop: Bool = true
  37. private var filterLivePhoto: Bool = true
  38. private var groupByField: String = ""
  39. override init() {
  40. super.init()
  41. }
  42. init(metadatasSource: [tableMetadata], account: String, sort: String? = "none", ascending: Bool? = false, directoryOnTop: Bool? = true, favoriteOnTop: Bool? = true, filterLivePhoto: Bool? = true, groupByField: String = "name", providers: [NCCSearchProvider]? = nil, searchResults: [NCCSearchResult]? = nil) {
  43. super.init()
  44. self.metadatasSource = metadatasSource
  45. self.shares = NCManageDatabase.shared.getTableShares(account: account)
  46. self.localFiles = NCManageDatabase.shared.getTableLocalFile(account: account)
  47. self.sort = sort ?? "none"
  48. self.ascending = ascending ?? false
  49. self.directoryOnTop = directoryOnTop ?? true
  50. self.favoriteOnTop = favoriteOnTop ?? true
  51. self.filterLivePhoto = filterLivePhoto ?? true
  52. self.groupByField = groupByField
  53. // unified search
  54. self.providers = providers
  55. self.searchResults = searchResults
  56. createSections()
  57. }
  58. // MARK: -
  59. func clearDataSource() {
  60. self.metadatasSource.removeAll()
  61. self.metadatasForSection.removeAll()
  62. self.sectionsValue.removeAll()
  63. self.providers = nil
  64. self.searchResults = nil
  65. self.shares.removeAll()
  66. self.localFiles.removeAll()
  67. }
  68. func addSection(metadatas: [tableMetadata], searchResult: NCCSearchResult?) {
  69. for metadata in metadatas {
  70. self.metadatasSource.append(metadata)
  71. }
  72. if let searchResult = searchResult {
  73. self.searchResults?.append(searchResult)
  74. }
  75. createSections()
  76. }
  77. internal func createSections() {
  78. for metadata in metadatasSource {
  79. // skipped livePhoto
  80. if filterLivePhoto && metadata.livePhoto && metadata.ext == "mov" {
  81. continue
  82. }
  83. let section = NSLocalizedString(self.getSectionValue(metadata: metadata), comment: "").lowercased().firstUppercased
  84. if !self.sectionsValue.contains(section) {
  85. self.sectionsValue.append(section)
  86. }
  87. }
  88. if let providers = self.providers, !providers.isEmpty {
  89. var sectionsDictionary: [String:Int] = [:]
  90. for section in self.sectionsValue {
  91. if let provider = providers.filter({ $0.name.lowercased() == section.lowercased()}).first {
  92. sectionsDictionary[section] = provider.order
  93. }
  94. }
  95. self.sectionsValue.removeAll()
  96. let sectionsDictionarySorted = sectionsDictionary.sorted(by: { $0.value < $1.value } )
  97. let appName = NSLocalizedString(NCGlobal.shared.appName, comment: "").lowercased().firstUppercased
  98. for section in sectionsDictionarySorted {
  99. if section.key == appName {
  100. self.sectionsValue.insert(section.key, at: 0)
  101. } else {
  102. self.sectionsValue.append(section.key)
  103. }
  104. }
  105. } else {
  106. let directory = NSLocalizedString("directory", comment: "").lowercased().firstUppercased
  107. self.sectionsValue = self.sectionsValue.sorted {
  108. if directoryOnTop && $0 == directory {
  109. return true
  110. } else if directoryOnTop && $1 == directory {
  111. return false
  112. }
  113. if self.ascending {
  114. return $0 < $1
  115. } else {
  116. return $0 > $1
  117. }
  118. }
  119. }
  120. for sectionValue in self.sectionsValue {
  121. if !existsMetadataForSection(sectionValue: sectionValue) {
  122. print("DATASOURCE: create metadata for section: " + sectionValue)
  123. createMetadataForSection(sectionValue: sectionValue)
  124. }
  125. }
  126. }
  127. internal func createMetadataForSection(sectionValue: String) {
  128. var searchResult: NCCSearchResult?
  129. if let providers = self.providers, !providers.isEmpty, let searchResults = self.searchResults {
  130. searchResult = searchResults.filter({ $0.name == sectionValue}).first
  131. }
  132. let metadatas = metadatasSource.filter({ getSectionValue(metadata: $0) == sectionValue})
  133. let metadataForSection = NCMetadataForSection.init(sectionValue: sectionValue,
  134. metadatas: metadatas,
  135. shares: self.shares,
  136. localFiles: self.localFiles,
  137. searchResult: searchResult,
  138. sort: self.sort,
  139. ascending: self.ascending,
  140. directoryOnTop: self.directoryOnTop,
  141. favoriteOnTop: self.favoriteOnTop,
  142. filterLivePhoto: self.filterLivePhoto)
  143. metadatasForSection.append(metadataForSection)
  144. }
  145. // MARK: -
  146. @discardableResult
  147. func addMetadata(_ metadata: tableMetadata) -> (indexPath: IndexPath?, sameSections: Bool) {
  148. let numberOfSections = self.numberOfSections()
  149. // ADD metadatasSource
  150. if let rowIndex = self.metadatasSource.firstIndex(where: {$0.fileNameView == metadata.fileNameView || $0.ocId == metadata.ocId}) {
  151. self.metadatasSource[rowIndex] = metadata
  152. } else {
  153. self.metadatasSource.append(metadata)
  154. }
  155. // ADD metadataForSection
  156. if let sectionIndex = self.sectionsValue.firstIndex(where: {$0 == self.getSectionValue(metadata: metadata) }) {
  157. let metadataForSection = metadatasForSection[sectionIndex]
  158. if let rowIndex = metadataForSection.metadatas.firstIndex(where: {$0.fileNameView == metadata.fileNameView || $0.ocId == metadata.ocId}) {
  159. metadataForSection.metadatas[rowIndex] = metadata
  160. return (IndexPath(row: rowIndex, section: sectionIndex), self.isSameNumbersOfSections(numberOfSections: numberOfSections))
  161. } else {
  162. metadataForSection.metadatas.append(metadata)
  163. metadataForSection.createMetadatasForSection()
  164. if let rowIndex = metadataForSection.metadatas.firstIndex(where: {$0.ocId == metadata.ocId}) {
  165. return (IndexPath(row: rowIndex, section: sectionIndex), self.isSameNumbersOfSections(numberOfSections: numberOfSections))
  166. }
  167. return (nil, self.isSameNumbersOfSections(numberOfSections: numberOfSections))
  168. }
  169. } else {
  170. // NEW section
  171. createSections()
  172. let sectionValue = getSectionValue(metadata: metadata)
  173. createMetadataForSection(sectionValue: sectionValue)
  174. // get IndexPath of new section
  175. if let sectionIndex = self.sectionsValue.firstIndex(where: {$0 == sectionValue }) {
  176. let metadataForSection = metadatasForSection[sectionIndex]
  177. if let rowIndex = metadataForSection.metadatas.firstIndex(where: {$0.fileNameView == metadata.fileNameView || $0.ocId == metadata.ocId}) {
  178. return (IndexPath(row: rowIndex, section: sectionIndex), self.isSameNumbersOfSections(numberOfSections: numberOfSections))
  179. }
  180. }
  181. }
  182. return (nil, self.isSameNumbersOfSections(numberOfSections: numberOfSections))
  183. }
  184. func deleteMetadata(ocId: String) -> (indexPath: IndexPath?, sameSections: Bool) {
  185. let numberOfSections = self.numberOfSections()
  186. var indexPathReturn: IndexPath?
  187. var removeMetadataForSection = false
  188. var sectionValue = ""
  189. // DELETE metadataForSection (IMPORTANT FIRST)
  190. let (indexPath, metadataForSection) = self.getIndexPathMetadata(ocId: ocId)
  191. if let indexPath = indexPath, let metadataForSection = metadataForSection {
  192. metadataForSection.metadatas.remove(at: indexPath.row)
  193. if metadataForSection.metadatas.count == 0 {
  194. sectionValue = metadataForSection.sectionValue
  195. removeMetadataForSection = true
  196. } else {
  197. metadataForSection.createMetadatasForSection()
  198. }
  199. indexPathReturn = indexPath
  200. }
  201. // DELETE metadatasSource (IMPORTANT LAST)
  202. if let rowIndex = self.metadatasSource.firstIndex(where: {$0.ocId == ocId}) {
  203. self.metadatasSource.remove(at: rowIndex)
  204. }
  205. // REMOVE sectionsValue / metadatasForSection
  206. if removeMetadataForSection {
  207. if let index = self.sectionsValue.firstIndex(where: {$0 == sectionValue }) {
  208. self.sectionsValue.remove(at: index)
  209. }
  210. if let index = self.metadatasForSection.firstIndex(where: {$0.sectionValue == sectionValue }) {
  211. self.metadatasForSection.remove(at: index)
  212. }
  213. }
  214. return (indexPathReturn, self.isSameNumbersOfSections(numberOfSections: numberOfSections))
  215. }
  216. @discardableResult
  217. func reloadMetadata(ocId: String, ocIdTemp: String? = nil) -> (indexPath: IndexPath?, sameSections: Bool) {
  218. let numberOfSections = self.numberOfSections()
  219. var ocIdSearch = ocId
  220. var indexPath: IndexPath?
  221. var metadataForSection: NCMetadataForSection?
  222. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) else { return (nil, self.isSameNumbersOfSections(numberOfSections: numberOfSections)) }
  223. if let ocIdTemp = ocIdTemp {
  224. ocIdSearch = ocIdTemp
  225. }
  226. // UPDATE metadataForSection (IMPORTANT FIRST)
  227. (indexPath, metadataForSection) = self.getIndexPathMetadata(ocId: ocIdSearch)
  228. if let indexPath = indexPath, let metadataForSection = metadataForSection {
  229. metadataForSection.metadatas[indexPath.row] = metadata
  230. metadataForSection.createMetadatasForSection()
  231. }
  232. // UPDATE metadatasSource (IMPORTANT LAST)
  233. if let rowIndex = self.metadatasSource.firstIndex(where: {$0.ocId == ocIdSearch}) {
  234. self.metadatasSource[rowIndex] = metadata
  235. }
  236. return (indexPath, self.isSameNumbersOfSections(numberOfSections: numberOfSections))
  237. }
  238. // MARK: -
  239. func getIndexPathMetadata(ocId: String) -> (indexPath: IndexPath?, metadataForSection: NCMetadataForSection?) {
  240. if let metadata = metadatasSource.filter({ $0.ocId == ocId}).first {
  241. let sectionValue = getSectionValue(metadata: metadata)
  242. if let sectionIndex = self.sectionsValue.firstIndex(where: {$0 == sectionValue}) {
  243. for metadataForSection in self.metadatasForSection {
  244. if metadataForSection.sectionValue == sectionValue {
  245. if let rowIndex = metadataForSection.metadatas.firstIndex(where: {$0.ocId == ocId}) {
  246. return (IndexPath(row: rowIndex, section: sectionIndex), metadataForSection)
  247. }
  248. }
  249. }
  250. }
  251. }
  252. return (nil, nil)
  253. }
  254. func isSameNumbersOfSections(numberOfSections: Int) -> Bool {
  255. if self.metadatasForSection.count == 0 { return false }
  256. return numberOfSections == self.numberOfSections()
  257. }
  258. func numberOfSections() -> Int {
  259. if self.metadatasForSection.count == 0 {
  260. return 1
  261. } else {
  262. return self.metadatasForSection.count
  263. }
  264. }
  265. func numberOfItemsInSection(_ section: Int) -> Int {
  266. if self.metadatasForSection.count == 0 || self.metadatasSource.count == 0 { return 0 }
  267. return self.metadatasForSection[section].metadatas.count
  268. }
  269. func cellForItemAt(indexPath: IndexPath) -> tableMetadata? {
  270. if metadatasForSection.count == 0 || indexPath.section >= metadatasForSection.count {
  271. return nil
  272. }
  273. let metadatasForSection = self.metadatasForSection[indexPath.section]
  274. if indexPath.row >= metadatasForSection.metadatas.count {
  275. return nil
  276. }
  277. return metadatasForSection.metadatas[indexPath.row]
  278. }
  279. func getMetadataForSection(_ section: Int) -> NCMetadataForSection? {
  280. if metadatasForSection.count == 0 { return nil }
  281. return self.metadatasForSection[section]
  282. }
  283. func getSectionValue(indexPath: IndexPath) -> String {
  284. if metadatasForSection.count == 0 { return "" }
  285. let metadataForSection = self.metadatasForSection[indexPath.section]
  286. return metadataForSection.sectionValue
  287. }
  288. func getFooterInformation() -> (directories: Int, files: Int, size: Int64) {
  289. var directories: Int = 0
  290. var files: Int = 0
  291. var size: Int64 = 0
  292. for metadataForSection in metadatasForSection {
  293. directories += metadataForSection.numDirectory
  294. files += metadataForSection.numFile
  295. size += metadataForSection.totalSize
  296. }
  297. return (directories, files, size)
  298. }
  299. func existsMetadataForSection(sectionValue: String) -> Bool {
  300. for metadataForSection in self.metadatasForSection {
  301. if metadataForSection.sectionValue == sectionValue {
  302. return true
  303. }
  304. }
  305. return false
  306. }
  307. internal func getSectionValue(metadata: tableMetadata) -> String {
  308. switch self.groupByField {
  309. case "name":
  310. return NSLocalizedString(metadata.name, comment: "").lowercased().firstUppercased
  311. case "classFile":
  312. return NSLocalizedString(metadata.classFile, comment: "").lowercased().firstUppercased
  313. default:
  314. return NSLocalizedString(metadata.name, comment: "").lowercased().firstUppercased
  315. }
  316. }
  317. }
  318. class NCMetadataForSection: NSObject {
  319. var sectionValue: String
  320. var metadatas: [tableMetadata]
  321. var shares: [tableShare]
  322. var localFiles: [tableLocalFile]
  323. var searchResult: NCCSearchResult?
  324. var unifiedSearchInProgress: Bool = false
  325. private var sort : String
  326. private var ascending: Bool
  327. private var directoryOnTop: Bool
  328. private var favoriteOnTop: Bool
  329. private var filterLivePhoto: Bool
  330. private var metadatasSourceSorted: [tableMetadata] = []
  331. private var metadatasFavoriteDirectory: [tableMetadata] = []
  332. private var metadatasFavoriteFile: [tableMetadata] = []
  333. private var metadatasDirectory: [tableMetadata] = []
  334. private var metadatasFile: [tableMetadata] = []
  335. public var numDirectory: Int = 0
  336. public var numFile: Int = 0
  337. public var totalSize: Int64 = 0
  338. public var metadataShare: [String: tableShare] = [:]
  339. public var metadataOffLine: [String] = []
  340. init(sectionValue: String, metadatas: [tableMetadata], shares: [tableShare], localFiles: [tableLocalFile], searchResult: NCCSearchResult?, sort: String, ascending: Bool, directoryOnTop: Bool, favoriteOnTop: Bool, filterLivePhoto: Bool) {
  341. self.sectionValue = sectionValue
  342. self.metadatas = metadatas
  343. self.shares = shares
  344. self.localFiles = localFiles
  345. self.searchResult = searchResult
  346. self.sort = sort
  347. self.ascending = ascending
  348. self.directoryOnTop = directoryOnTop
  349. self.favoriteOnTop = favoriteOnTop
  350. self.filterLivePhoto = filterLivePhoto
  351. super.init()
  352. createMetadatasForSection()
  353. }
  354. func createMetadatasForSection() {
  355. // Clear
  356. //
  357. metadatasSourceSorted.removeAll()
  358. metadatasFavoriteDirectory.removeAll()
  359. metadatasFavoriteFile.removeAll()
  360. metadatasDirectory.removeAll()
  361. metadatasFile.removeAll()
  362. metadataShare.removeAll()
  363. metadataOffLine.removeAll()
  364. numDirectory = 0
  365. numFile = 0
  366. totalSize = 0
  367. // Metadata order
  368. //
  369. if sort != "none" && sort != "" {
  370. metadatasSourceSorted = metadatas.sorted {
  371. switch sort {
  372. case "date":
  373. if ascending {
  374. return ($0.date as Date) < ($1.date as Date)
  375. } else {
  376. return ($0.date as Date) > ($1.date as Date)
  377. }
  378. case "size":
  379. if ascending {
  380. return $0.size < $1.size
  381. } else {
  382. return $0.size > $1.size
  383. }
  384. default:
  385. if ascending {
  386. return $0.fileNameView.lowercased() < $1.fileNameView.lowercased()
  387. } else {
  388. return $0.fileNameView.lowercased() > $1.fileNameView.lowercased()
  389. }
  390. }
  391. }
  392. } else {
  393. metadatasSourceSorted = metadatas
  394. }
  395. // Initialize datasource
  396. //
  397. for metadata in metadatasSourceSorted {
  398. // skipped the root file
  399. if metadata.fileName == "." || metadata.serverUrl == ".." {
  400. continue
  401. }
  402. // skipped livePhoto
  403. if filterLivePhoto && metadata.livePhoto && metadata.ext == "mov" {
  404. continue
  405. }
  406. // share
  407. if let share = self.shares.filter({ $0.serverUrl == metadata.serverUrl && $0.fileName == metadata.fileName }).first {
  408. metadataShare[metadata.ocId] = share
  409. }
  410. // is Local / offline
  411. if !metadata.directory, CCUtility.fileProviderStorageExists(metadata) {
  412. let localFile = self.localFiles.filter({ $0.ocId == metadata.ocId }).first
  413. if localFile == nil {
  414. NCManageDatabase.shared.addLocalFile(metadata: metadata)
  415. }
  416. if localFile?.offline ?? false {
  417. metadataOffLine.append(metadata.ocId)
  418. }
  419. }
  420. // Organized the metadata
  421. if metadata.favorite && favoriteOnTop {
  422. if metadata.directory {
  423. metadatasFavoriteDirectory.append(metadata)
  424. } else {
  425. metadatasFavoriteFile.append(metadata)
  426. }
  427. } else if metadata.directory && directoryOnTop {
  428. metadatasDirectory.append(metadata)
  429. } else {
  430. metadatasFile.append(metadata)
  431. }
  432. //Info
  433. if metadata.directory {
  434. numDirectory += 1
  435. } else {
  436. numFile += 1
  437. totalSize += metadata.size
  438. }
  439. }
  440. metadatas.removeAll()
  441. // Struct view : favorite dir -> favorite file -> directory -> files
  442. metadatas += metadatasFavoriteDirectory
  443. metadatas += metadatasFavoriteFile
  444. metadatas += metadatasDirectory
  445. metadatas += metadatasFile
  446. }
  447. }