|
@@ -25,6 +25,7 @@ import UIKit
|
|
|
import NextcloudKit
|
|
|
import JGProgressHUD
|
|
|
import Queuer
|
|
|
+import RealmSwift
|
|
|
|
|
|
class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
|
|
@@ -39,7 +40,7 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
internal let utilityFileSystem = NCUtilityFileSystem()
|
|
|
internal let utility = NCUtility()
|
|
|
|
|
|
- internal var metadatas: [tableMetadata] = []
|
|
|
+ @ThreadSafe internal var metadatas: Results<tableMetadata>?
|
|
|
internal var isEditMode = false
|
|
|
internal var selectOcId: [String] = []
|
|
|
internal var selectIndexPath: [IndexPath] = []
|
|
@@ -118,9 +119,6 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
navigationController?.setMediaAppreance()
|
|
|
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
|
|
|
- NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
|
|
|
- NotificationCenter.default.addObserver(self, selector: #selector(copyFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCopyFile), object: nil)
|
|
|
- NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
|
|
|
NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
|
|
|
|
|
|
if let metadatas = NCImageCache.shared.initialMetadatas() {
|
|
@@ -142,9 +140,6 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
super.viewWillDisappear(animated)
|
|
|
|
|
|
NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
|
|
|
- NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
|
|
|
- NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCopyFile), object: nil)
|
|
|
- NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
|
|
|
NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
|
|
|
}
|
|
|
|
|
@@ -165,42 +160,16 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
guard let userInfo = notification.userInfo as NSDictionary?,
|
|
|
let error = userInfo["error"] as? NKError else { return }
|
|
|
|
|
|
- self.metadatas = NCImageCache.shared.getMediaMetadatas(account: appDelegate.account, predicate: getPredicate())
|
|
|
-
|
|
|
if error != .success {
|
|
|
NCContentPresenter().showError(error: error)
|
|
|
}
|
|
|
- self.collectionView?.reloadData()
|
|
|
-
|
|
|
- if let hud = userInfo["hud"] as? JGProgressHUD {
|
|
|
- hud.dismiss()
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @objc func moveFile(_ notification: NSNotification) {
|
|
|
-
|
|
|
- guard let userInfo = notification.userInfo as NSDictionary? else { return }
|
|
|
+ self.reloadDataSource()
|
|
|
|
|
|
if let hud = userInfo["hud"] as? JGProgressHUD {
|
|
|
hud.dismiss()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @objc func copyFile(_ notification: NSNotification) {
|
|
|
-
|
|
|
- moveFile(notification)
|
|
|
- }
|
|
|
-
|
|
|
- @objc func renameFile(_ notification: NSNotification) {
|
|
|
-
|
|
|
- guard let userInfo = notification.userInfo as NSDictionary?,
|
|
|
- let account = userInfo["account"] as? String,
|
|
|
- account == appDelegate.account
|
|
|
- else { return }
|
|
|
-
|
|
|
- self.reloadDataSource { }
|
|
|
- }
|
|
|
-
|
|
|
@objc func uploadedFile(_ notification: NSNotification) {
|
|
|
|
|
|
guard let userInfo = notification.userInfo as NSDictionary?,
|
|
@@ -210,7 +179,7 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
account == appDelegate.account
|
|
|
else { return }
|
|
|
|
|
|
- self.reloadDataSource { }
|
|
|
+ self.reloadDataSource()
|
|
|
}
|
|
|
|
|
|
// MARK: - Command
|
|
@@ -273,9 +242,8 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
let home = utilityFileSystem.getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId)
|
|
|
mediaPath = serverUrl.replacingOccurrences(of: home, with: "")
|
|
|
NCManageDatabase.shared.setAccountMediaPath(mediaPath, account: appDelegate.account)
|
|
|
- reloadDataSource {
|
|
|
- self.searchNewMedia()
|
|
|
- }
|
|
|
+ reloadDataSource()
|
|
|
+ searchNewMedia()
|
|
|
}
|
|
|
|
|
|
// MARK: - Empty
|
|
@@ -298,30 +266,32 @@ extension NCMedia: UICollectionViewDelegate {
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
|
|
|
|
|
|
- let metadata = self.metadatas[indexPath.row]
|
|
|
- if isEditMode {
|
|
|
- if let index = selectOcId.firstIndex(of: metadata.ocId) {
|
|
|
- selectOcId.remove(at: index)
|
|
|
- selectIndexPath.removeAll(where: { $0 == indexPath })
|
|
|
- } else {
|
|
|
- selectOcId.append(metadata.ocId)
|
|
|
- selectIndexPath.append(indexPath)
|
|
|
- }
|
|
|
- if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) {
|
|
|
- collectionView.reloadItems(at: [indexPath])
|
|
|
+ if let metadata = self.metadatas?[indexPath.row] {
|
|
|
+ if isEditMode {
|
|
|
+ if let index = selectOcId.firstIndex(of: metadata.ocId) {
|
|
|
+ selectOcId.remove(at: index)
|
|
|
+ selectIndexPath.removeAll(where: { $0 == indexPath })
|
|
|
+ } else {
|
|
|
+ selectOcId.append(metadata.ocId)
|
|
|
+ selectIndexPath.append(indexPath)
|
|
|
+ }
|
|
|
+ if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) {
|
|
|
+ collectionView.reloadItems(at: [indexPath])
|
|
|
+ }
|
|
|
+ } else if let metadatas = self.metadatas {
|
|
|
+ // ACTIVE SERVERURL
|
|
|
+ appDelegate.activeServerUrl = metadata.serverUrl
|
|
|
+ let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridMediaCell
|
|
|
+ let arrayMetadatas = Array(metadatas.map { tableMetadata.init(value: $0) })
|
|
|
+ NCViewer().view(viewController: self, metadata: metadata, metadatas: arrayMetadatas, imageIcon: cell?.imageItem.image)
|
|
|
}
|
|
|
- } else {
|
|
|
- // ACTIVE SERVERURL
|
|
|
- appDelegate.activeServerUrl = metadata.serverUrl
|
|
|
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridMediaCell
|
|
|
- NCViewer().view(viewController: self, metadata: metadata, metadatas: self.metadatas, imageIcon: cell?.imageItem.image)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, contextMenuConfigurationForItemAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
|
|
|
|
|
|
- guard let cell = collectionView.cellForItem(at: indexPath) as? NCGridMediaCell else { return nil }
|
|
|
- let metadata = self.metadatas[indexPath.row]
|
|
|
+ guard let cell = collectionView.cellForItem(at: indexPath) as? NCGridMediaCell,
|
|
|
+ let metadata = self.metadatas?[indexPath.row] else { return nil }
|
|
|
let identifier = indexPath as NSCopying
|
|
|
let image = cell.imageItem.image
|
|
|
|
|
@@ -349,22 +319,20 @@ extension NCMedia: UICollectionViewDataSourcePrefetching {
|
|
|
|
|
|
extension NCMedia: UICollectionViewDataSource {
|
|
|
|
|
|
- func reloadDataThenPerform(_ closure: @escaping (() -> Void)) {
|
|
|
- CATransaction.begin()
|
|
|
- CATransaction.setCompletionBlock(closure)
|
|
|
- collectionView?.reloadData()
|
|
|
- CATransaction.commit()
|
|
|
- }
|
|
|
-
|
|
|
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
|
|
|
- emptyDataSet?.numberOfItemsInSection(self.metadatas.count, section: section)
|
|
|
- return self.metadatas.count
|
|
|
+ guard let metadatas = self.metadatas else { return 0 }
|
|
|
+ emptyDataSet?.numberOfItemsInSection(metadatas.count, section: section)
|
|
|
+ return metadatas.count
|
|
|
}
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
|
|
|
- if !collectionView.indexPathsForVisibleItems.contains(indexPath) && indexPath.row < self.metadatas.count {
|
|
|
- let metadata = self.metadatas[indexPath.row]
|
|
|
- for case let operation as NCMediaDownloadThumbnaill in appDelegate.downloadThumbnailQueue.operations where operation.metadata.ocId == metadata.ocId {
|
|
|
+ guard let metadatas = self.metadatas else { return }
|
|
|
+ if !collectionView.indexPathsForVisibleItems.contains(indexPath) && indexPath.row < metadatas.count {
|
|
|
+ let metadata = metadatas[indexPath.row]
|
|
|
+ for case let operation as NCMediaDownloadThumbnaill in NCNetworking.shared.downloadThumbnailQueue.operations where operation.metadata.ocId == metadata.ocId {
|
|
|
+ operation.cancel()
|
|
|
+ }
|
|
|
+ for case let operation as NCOperationConvertLivePhoto in NCNetworking.shared.convertLivePhotoQueue.operations where operation.ocId == metadata.ocId {
|
|
|
operation.cancel()
|
|
|
}
|
|
|
}
|
|
@@ -372,11 +340,12 @@ extension NCMedia: UICollectionViewDataSource {
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
|
|
|
|
|
|
- guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridMediaCell else { return UICollectionViewCell() }
|
|
|
+ guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridMediaCell,
|
|
|
+ let metadatas = self.metadatas else { return UICollectionViewCell() }
|
|
|
|
|
|
- if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) && indexPath.row < self.metadatas.count {
|
|
|
+ if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) && indexPath.row < metadatas.count {
|
|
|
|
|
|
- let metadata = self.metadatas[indexPath.row]
|
|
|
+ let metadata = metadatas[indexPath.row]
|
|
|
|
|
|
self.cellHeigth = cell.frame.size.height
|
|
|
|
|
@@ -385,24 +354,29 @@ extension NCMedia: UICollectionViewDataSource {
|
|
|
cell.indexPath = indexPath
|
|
|
cell.fileUser = metadata.ownerId
|
|
|
|
|
|
- if let cachedImage = NCImageCache.shared.getMediaImage(ocId: metadata.ocId), case let .actual(image) = cachedImage {
|
|
|
+ if let cachedImage = NCImageCache.shared.getMediaImage(ocId: metadata.ocId, etag: metadata.etag), case let .actual(image) = cachedImage {
|
|
|
cell.imageItem.backgroundColor = nil
|
|
|
cell.imageItem.image = image
|
|
|
} else if FileManager().fileExists(atPath: utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
|
|
|
if let image = UIImage(contentsOfFile: utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
|
|
|
cell.imageItem.backgroundColor = nil
|
|
|
cell.imageItem.image = image
|
|
|
- NCImageCache.shared.setMediaImage(ocId: metadata.ocId, image: .actual(image))
|
|
|
+ NCImageCache.shared.setMediaImage(ocId: metadata.ocId, etag: metadata.etag, image: .actual(image))
|
|
|
}
|
|
|
} else {
|
|
|
if metadata.hasPreview && metadata.status == NCGlobal.shared.metadataStatusNormal && (!utilityFileSystem.fileProviderStoragePreviewIconExists(metadata.ocId, etag: metadata.etag)) {
|
|
|
- if appDelegate.downloadThumbnailQueue.operations.filter({ ($0 as? NCMediaDownloadThumbnaill)?.metadata.ocId == metadata.ocId }).isEmpty {
|
|
|
- appDelegate.downloadThumbnailQueue.addOperation(NCMediaDownloadThumbnaill(metadata: metadata, cell: cell, collectionView: collectionView))
|
|
|
+ if NCNetworking.shared.downloadThumbnailQueue.operations.filter({ ($0 as? NCMediaDownloadThumbnaill)?.metadata.ocId == metadata.ocId }).isEmpty {
|
|
|
+ NCNetworking.shared.downloadThumbnailQueue.addOperation(NCMediaDownloadThumbnaill(metadata: metadata, cell: cell, collectionView: collectionView))
|
|
|
}
|
|
|
}
|
|
|
cell.imageStatus.image = nil
|
|
|
}
|
|
|
|
|
|
+ // Convert OLD Live Photo
|
|
|
+ if NCGlobal.shared.isLivePhotoServerAvailable, metadata.isLivePhoto, metadata.isNotFlaggedAsLivePhotoByServer {
|
|
|
+ NCNetworking.shared.convertLivePhoto(metadata: metadata)
|
|
|
+ }
|
|
|
+
|
|
|
if metadata.isAudioOrVideo {
|
|
|
cell.imageStatus.image = cacheImages.cellPlayImage
|
|
|
} else if metadata.isLivePhoto {
|
|
@@ -444,39 +418,35 @@ extension NCMedia: UICollectionViewDelegateFlowLayout {
|
|
|
|
|
|
extension NCMedia {
|
|
|
|
|
|
- func getPredicate(_ predicateShowBoth: Bool = false) -> NSPredicate {
|
|
|
+ func getPredicate(showAll: Bool = false) -> NSPredicate {
|
|
|
|
|
|
let startServerUrl = NCUtilityFileSystem().getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId) + mediaPath
|
|
|
- let showBoth = NSPredicate(format: NCImageCache.shared.showBothPredicateMediaString, appDelegate.account, startServerUrl, NKCommon.TypeClassFile.image.rawValue, NKCommon.TypeClassFile.video.rawValue, NKCommon.TypeClassFile.video.rawValue)
|
|
|
|
|
|
- if predicateShowBoth { return showBoth }
|
|
|
- if showOnlyImages {
|
|
|
- return NSPredicate(format: NCImageCache.shared.showOnlyPredicateMediaString, appDelegate.account, startServerUrl, NKCommon.TypeClassFile.image.rawValue, NKCommon.TypeClassFile.video.rawValue)
|
|
|
+ if showAll {
|
|
|
+ return NSPredicate(format: NCImageCache.shared.showAllPredicateMediaString, appDelegate.account, startServerUrl)
|
|
|
+ } else if showOnlyImages {
|
|
|
+ return NSPredicate(format: NCImageCache.shared.showOnlyPredicateMediaString, appDelegate.account, startServerUrl, NKCommon.TypeClassFile.image.rawValue)
|
|
|
} else if showOnlyVideos {
|
|
|
- return NSPredicate(format: NCImageCache.shared.showOnlyPredicateMediaString, appDelegate.account, startServerUrl, NKCommon.TypeClassFile.video.rawValue, NKCommon.TypeClassFile.video.rawValue)
|
|
|
+ return NSPredicate(format: NCImageCache.shared.showOnlyPredicateMediaString, appDelegate.account, startServerUrl, NKCommon.TypeClassFile.video.rawValue)
|
|
|
} else {
|
|
|
- return showBoth
|
|
|
+ return NSPredicate(format: NCImageCache.shared.showBothPredicateMediaString, appDelegate.account, startServerUrl)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @objc func reloadDataSource(completion: @escaping () -> Void) {
|
|
|
+ @objc func reloadDataSource() {
|
|
|
guard !appDelegate.account.isEmpty else { return }
|
|
|
|
|
|
- DispatchQueue.global().async {
|
|
|
- self.metadatas = NCImageCache.shared.getMediaMetadatas(account: self.appDelegate.account, predicate: self.getPredicate())
|
|
|
- DispatchQueue.main.sync {
|
|
|
- self.reloadDataThenPerform {
|
|
|
- self.updateMediaControlVisibility()
|
|
|
- self.mediaCommandTitle()
|
|
|
- completion()
|
|
|
- }
|
|
|
- }
|
|
|
+ metadatas = NCImageCache.shared.getMediaMetadatas(account: self.appDelegate.account, predicate: self.getPredicate())
|
|
|
+ DispatchQueue.main.async {
|
|
|
+ self.collectionView?.reloadData()
|
|
|
+ self.updateMediaControlVisibility()
|
|
|
+ self.mediaCommandTitle()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
func updateMediaControlVisibility() {
|
|
|
|
|
|
- if self.metadatas.isEmpty {
|
|
|
+ if let metadatas = self.metadatas, metadatas.isEmpty {
|
|
|
if !self.showOnlyImages && !self.showOnlyVideos {
|
|
|
self.mediaCommandView?.toggleEmptyView(isEmpty: true)
|
|
|
self.mediaCommandView?.isHidden = false
|
|
@@ -530,14 +500,13 @@ extension NCMedia {
|
|
|
if error == .success && account == self.appDelegate.account {
|
|
|
if !files.isEmpty {
|
|
|
NCManageDatabase.shared.convertFilesToMetadatas(files, useMetadataFolder: false) { _, _, metadatas in
|
|
|
- let predicateDate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
|
|
|
- let predicateResult = NSCompoundPredicate(andPredicateWithSubpredicates: [predicateDate, self.getPredicate(true)])
|
|
|
- let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
|
|
|
- let metadatasChanged = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult)
|
|
|
- if metadatasChanged.metadatasUpdate.isEmpty {
|
|
|
+ var predicate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
|
|
|
+ predicate = NSCompoundPredicate(andPredicateWithSubpredicates: [predicate, self.getPredicate(showAll: true)])
|
|
|
+ let results = NCManageDatabase.shared.updateMetadatas(metadatas, predicate: predicate)
|
|
|
+ if results.metadatasChangedCount == 0 {
|
|
|
self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: true)
|
|
|
- } else {
|
|
|
- self.reloadDataSource { }
|
|
|
+ } else if results.metadatasChanged {
|
|
|
+ self.reloadDataSource()
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
@@ -561,7 +530,7 @@ extension NCMedia {
|
|
|
searchOldMedia(value: -999, limit: 0)
|
|
|
} else {
|
|
|
if withElseReloadDataSource {
|
|
|
- self.reloadDataSource { }
|
|
|
+ self.reloadDataSource()
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -585,7 +554,7 @@ extension NCMedia {
|
|
|
if let visibleCells = self.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.collectionView?.cellForItem(at: $0) }) {
|
|
|
if let cell = visibleCells.first as? NCGridMediaCell {
|
|
|
if cell.date != nil {
|
|
|
- if cell.date != self.metadatas.first?.date as Date? {
|
|
|
+ if cell.date != self.metadatas?.first?.date as Date? {
|
|
|
lessDate = Calendar.current.date(byAdding: .second, value: 1, to: cell.date!)!
|
|
|
limit = 0
|
|
|
}
|
|
@@ -598,32 +567,32 @@ extension NCMedia {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- reloadDataThenPerform {
|
|
|
+ collectionView?.reloadData()
|
|
|
|
|
|
- let options = NKRequestOptions(timeout: 300, queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)
|
|
|
+ let options = NKRequestOptions(timeout: 300, queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)
|
|
|
|
|
|
- NextcloudKit.shared.searchMedia(path: self.mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: NCKeychain().showHiddenFiles, options: options) { account, files, _, error in
|
|
|
+ NextcloudKit.shared.searchMedia(path: self.mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: NCKeychain().showHiddenFiles, options: options) { account, files, _, error in
|
|
|
|
|
|
- self.newInProgress = false
|
|
|
- DispatchQueue.main.async {
|
|
|
- self.mediaCommandView?.activityIndicator.stopAnimating()
|
|
|
- }
|
|
|
+ self.newInProgress = false
|
|
|
+ DispatchQueue.main.async {
|
|
|
+ self.mediaCommandView?.activityIndicator.stopAnimating()
|
|
|
+ }
|
|
|
|
|
|
- if error == .success, account == self.appDelegate.account, !files.isEmpty {
|
|
|
+ if error == .success, account == self.appDelegate.account {
|
|
|
+ if !files.isEmpty {
|
|
|
NCManageDatabase.shared.convertFilesToMetadatas(files, useMetadataFolder: false) { _, _, metadatas in
|
|
|
- let predicate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
|
|
|
- let predicateResult = NSCompoundPredicate(andPredicateWithSubpredicates: [predicate, self.getPredicate(true)])
|
|
|
- let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
|
|
|
- let updateMetadatas = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult)
|
|
|
- if !updateMetadatas.metadatasUpdate.isEmpty || !updateMetadatas.metadatasDelete.isEmpty {
|
|
|
- self.reloadDataSource { }
|
|
|
+ var predicate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
|
|
|
+ predicate = NSCompoundPredicate(andPredicateWithSubpredicates: [predicate, self.getPredicate(showAll: true)])
|
|
|
+ let results = NCManageDatabase.shared.updateMetadatas(metadatas, predicate: predicate)
|
|
|
+ if results.metadatasChangedCount != 0 || results.metadatasChanged {
|
|
|
+ self.reloadDataSource()
|
|
|
}
|
|
|
}
|
|
|
- } else if error == .success, files.isEmpty, self.metadatas.isEmpty {
|
|
|
+ } else {
|
|
|
self.searchOldMedia()
|
|
|
- } else if error != .success {
|
|
|
- NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Media search new media error code \(error.errorCode) " + error.errorDescription)
|
|
|
}
|
|
|
+ } else if error != .success {
|
|
|
+ NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Media search new media error code \(error.errorCode) " + error.errorDescription)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -871,7 +840,7 @@ class NCMediaDownloadThumbnaill: ConcurrentOperation {
|
|
|
self.collectionView?.reloadData()
|
|
|
}
|
|
|
}
|
|
|
- NCImageCache.shared.setMediaImage(ocId: self.metadata.ocId, image: .actual(image))
|
|
|
+ NCImageCache.shared.setMediaImage(ocId: self.metadata.ocId, etag: self.metadata.etag, image: .actual(image))
|
|
|
}
|
|
|
self.finish()
|
|
|
}
|