NCMediaDataSource.swift 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. //
  2. // NCMediaDataSource.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 25/01/24.
  6. // Copyright © 2024 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. extension NCMedia {
  26. func getPredicate(showAll: Bool = false) -> NSPredicate {
  27. let startServerUrl = NCUtilityFileSystem().getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId) + mediaPath
  28. if showAll {
  29. return NSPredicate(format: NCImageCache.shared.showAllPredicateMediaString, appDelegate.account, startServerUrl)
  30. } else if showOnlyImages {
  31. return NSPredicate(format: NCImageCache.shared.showOnlyPredicateMediaString, appDelegate.account, startServerUrl, NKCommon.TypeClassFile.image.rawValue)
  32. } else if showOnlyVideos {
  33. return NSPredicate(format: NCImageCache.shared.showOnlyPredicateMediaString, appDelegate.account, startServerUrl, NKCommon.TypeClassFile.video.rawValue)
  34. } else {
  35. return NSPredicate(format: NCImageCache.shared.showBothPredicateMediaString, appDelegate.account, startServerUrl)
  36. }
  37. }
  38. @objc func reloadDataSource() {
  39. guard !appDelegate.account.isEmpty else { return }
  40. self.metadatas = NCImageCache.shared.getMediaMetadatas(account: self.appDelegate.account, predicate: self.getPredicate())
  41. DispatchQueue.main.async {
  42. self.collectionView?.reloadData()
  43. self.mediaCommandView?.setTitleDate()
  44. }
  45. }
  46. // MARK: - Search media
  47. @objc func searchMediaUI() {
  48. var lessDate: Date?
  49. var greaterDate: Date?
  50. let firstMetadataDate = metadatas?.first?.date as? Date
  51. let lastMetadataDate = metadatas?.last?.date as? Date
  52. guard loadingTask == nil, !isEditMode else {
  53. return
  54. }
  55. if let visibleCells = self.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.collectionView?.cellForItem(at: $0) }) {
  56. // first date
  57. let firstCellDate = (visibleCells.first as? NCGridMediaCell)?.date
  58. if firstCellDate == firstMetadataDate {
  59. lessDate = Date.distantFuture
  60. } else {
  61. if let date = firstCellDate {
  62. lessDate = Calendar.current.date(byAdding: .second, value: 1, to: date)!
  63. } else {
  64. lessDate = Date.distantFuture
  65. }
  66. }
  67. // last date
  68. let lastCellDate = (visibleCells.last as? NCGridMediaCell)?.date
  69. if lastCellDate == lastMetadataDate {
  70. greaterDate = Date.distantPast
  71. } else {
  72. if let date = lastCellDate {
  73. greaterDate = Calendar.current.date(byAdding: .second, value: -1, to: date)!
  74. } else {
  75. greaterDate = Date.distantPast
  76. }
  77. }
  78. if let lessDate, let greaterDate {
  79. mediaCommandView?.activityIndicator.startAnimating()
  80. loadingTask = Task.detached {
  81. await self.collectionView.reloadData()
  82. let results = await self.searchMedia(account: self.appDelegate.account, lessDate: lessDate, greaterDate: greaterDate)
  83. print("Media results changed items: \(results.isChanged)")
  84. await self.mediaCommandView?.activityIndicator.stopAnimating()
  85. Task { @MainActor in
  86. self.loadingTask = nil
  87. }
  88. if results.error != .success {
  89. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Media search new media error code \(results.error.errorCode) " + results.error.errorDescription)
  90. } else if results.error == .success, results.lessDate == Date.distantFuture, results.greaterDate == Date.distantPast, !results.isChanged, results.metadatasCount == 0 {
  91. Task { @MainActor in
  92. self.metadatas = nil
  93. }
  94. }
  95. if results.isChanged {
  96. await self.reloadDataSource()
  97. } else {
  98. await self.collectionView.reloadData()
  99. }
  100. }
  101. }
  102. }
  103. }
  104. func searchMedia(account: String, lessDate: Date, greaterDate: Date, limit: Int = 120, timeout: TimeInterval = 60) async -> (account: String, lessDate: Date?, greaterDate: Date?, metadatasCount: Int, isChanged: Bool, error: NKError) {
  105. guard let mediaPath = NCManageDatabase.shared.getActiveAccount()?.mediaPath else {
  106. return(account, lessDate, greaterDate, 0, false, NKError())
  107. }
  108. let options = NKRequestOptions(timeout: timeout, queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)
  109. let results = await NextcloudKit.shared.searchMedia(path: mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: NCKeychain().showHiddenFiles, includeHiddenFiles: [], options: options)
  110. if results.account == account, results.error == .success {
  111. let metadatas = await NCManageDatabase.shared.convertFilesToMetadatas(results.files, useMetadataFolder: false).metadatas
  112. var predicate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
  113. predicate = NSCompoundPredicate(andPredicateWithSubpredicates: [predicate, self.getPredicate(showAll: true)])
  114. let resultsUpdate = NCManageDatabase.shared.updateMetadatas(metadatas, predicate: predicate)
  115. let isChaged: Bool = resultsUpdate.metadatasChanged || resultsUpdate.metadatasChangedCount != 0
  116. return(account, lessDate, greaterDate, metadatas.count, isChaged, results.error)
  117. } else {
  118. return(account, lessDate, greaterDate, 0, false, results.error)
  119. }
  120. }
  121. }