NCSectionDataSourceMetadata.swift 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. //
  2. // NCSectionDataSourceMetadata.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 Foundation
  24. class NCSectionDataSourceMetadata: NSObject {
  25. override init() {
  26. super.init()
  27. }
  28. @objc func creataDataSourseSectionMetadata(metadatasSource: [tableMetadata], sort: String, ascending: Bool, groupBy: String? = nil, directoryOnTop: Bool, filterLivePhoto: Bool) -> [tableMetadata] {
  29. var metadatas: [tableMetadata] = []
  30. var metadatasFavorite: [tableMetadata] = []
  31. var numDirectory: Int = 0
  32. var numDirectoryFavorite:Int = 0
  33. /*
  34. Metadata order
  35. */
  36. let metadatasSourceSorted = metadatasSource.sorted { (obj1:tableMetadata, obj2:tableMetadata) -> Bool in
  37. if sort == "date" {
  38. if ascending {
  39. return obj1.date.compare(obj2.date as Date) == ComparisonResult.orderedAscending
  40. } else {
  41. return obj1.date.compare(obj2.date as Date) == ComparisonResult.orderedDescending
  42. }
  43. } else if sort == "sessionTaskIdentifier" {
  44. if ascending {
  45. return obj1.sessionTaskIdentifier < obj2.sessionTaskIdentifier
  46. } else {
  47. return obj1.sessionTaskIdentifier > obj2.sessionTaskIdentifier
  48. }
  49. } else if sort == "size" {
  50. if ascending {
  51. return obj1.size < obj2.size
  52. } else {
  53. return obj1.size > obj2.size
  54. }
  55. } else {
  56. let range = Range(NSMakeRange(0, obj1.fileNameView.count), in: obj1.fileNameView)
  57. if ascending {
  58. return obj1.fileNameView.compare(obj1.fileNameView, options: .caseInsensitive, range: range, locale: .current) == ComparisonResult.orderedAscending
  59. } else {
  60. return obj1.fileNameView.compare(obj1.fileNameView, options: .caseInsensitive, range: range, locale: .current) == ComparisonResult.orderedDescending
  61. }
  62. }
  63. }
  64. /*
  65. Initialize datasource
  66. */
  67. for metadata in metadatasSourceSorted {
  68. // skipped livePhoto
  69. if metadata.ext == "mov" && metadata.livePhoto {
  70. continue
  71. }
  72. if metadata.directory && directoryOnTop {
  73. if metadata.favorite {
  74. numDirectoryFavorite += 1
  75. numDirectory += 1
  76. metadatas.insert(metadata, at: numDirectoryFavorite)
  77. } else {
  78. numDirectory += 1
  79. metadatas.insert(metadata, at: numDirectory)
  80. }
  81. } else {
  82. if metadata.favorite && directoryOnTop {
  83. metadatasFavorite.append(metadata)
  84. } else {
  85. metadatas.append(metadata)
  86. }
  87. }
  88. }
  89. if directoryOnTop && metadatasFavorite.count > 0 {
  90. metadatas.insert(contentsOf: metadatasFavorite, at: numDirectory)
  91. }
  92. /*
  93. if (directoryOnTop && metadataFilesFavorite.count > 0) {
  94. [sectionDataSource.metadatas insertObjects:metadataFilesFavorite atIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(numDirectoryFavorite, metadataFilesFavorite.count)]]; // Add Favorite files at end of favorite folders
  95. }
  96. */
  97. return metadatas
  98. }
  99. }