|
@@ -23,44 +23,40 @@
|
|
|
|
|
|
import UIKit
|
|
|
import NextcloudKit
|
|
|
-import JGProgressHUD
|
|
|
-import Queuer
|
|
|
import RealmSwift
|
|
|
|
|
|
-class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
+class NCMedia: UIViewController, NCEmptyDataSetDelegate {
|
|
|
|
|
|
@IBOutlet weak var collectionView: UICollectionView!
|
|
|
|
|
|
- private var emptyDataSet: NCEmptyDataSet?
|
|
|
- private var mediaCommandView: NCMediaCommandView?
|
|
|
- private var gridLayout: NCGridMediaLayout!
|
|
|
- internal var documentPickerViewController: NCDocumentPickerViewController?
|
|
|
+ var emptyDataSet: NCEmptyDataSet?
|
|
|
+ var mediaCommandView: NCMediaCommandView?
|
|
|
+ var layout: NCMediaGridLayout!
|
|
|
+ var documentPickerViewController: NCDocumentPickerViewController?
|
|
|
|
|
|
- internal let appDelegate = (UIApplication.shared.delegate as? AppDelegate)!
|
|
|
- internal let utilityFileSystem = NCUtilityFileSystem()
|
|
|
- internal let utility = NCUtility()
|
|
|
+ let appDelegate = (UIApplication.shared.delegate as? AppDelegate)!
|
|
|
+ let utilityFileSystem = NCUtilityFileSystem()
|
|
|
+ let utility = NCUtility()
|
|
|
|
|
|
- @ThreadSafe internal var metadatas: Results<tableMetadata>?
|
|
|
- internal var isEditMode = false
|
|
|
- internal var selectOcId: [String] = []
|
|
|
- internal var selectIndexPath: [IndexPath] = []
|
|
|
+ var metadatas: ThreadSafeArray<tableMetadata>?
|
|
|
+ var isEditMode = false
|
|
|
+ var selectOcId: [String] = []
|
|
|
|
|
|
- internal var showOnlyImages = false
|
|
|
- internal var showOnlyVideos = false
|
|
|
+ var showOnlyImages = false
|
|
|
+ var showOnlyVideos = false
|
|
|
|
|
|
- private let maxImageGrid: CGFloat = 7
|
|
|
- private var cellHeigth: CGFloat = 0
|
|
|
+ let maxImageGrid: CGFloat = 7
|
|
|
+ var cellHeigth: CGFloat = 0
|
|
|
|
|
|
- private var oldInProgress = false
|
|
|
- private var newInProgress = false
|
|
|
+ var loadingTask: Task<Void, any Error>?
|
|
|
|
|
|
- private var lastContentOffsetY: CGFloat = 0
|
|
|
- private var mediaPath = ""
|
|
|
+ var lastContentOffsetY: CGFloat = 0
|
|
|
+ var mediaPath = ""
|
|
|
|
|
|
- private var timeIntervalSearchNewMedia: TimeInterval = 3.0
|
|
|
- private var timerSearchNewMedia: Timer?
|
|
|
+ var timeIntervalSearchNewMedia: TimeInterval = 3.0
|
|
|
+ var timerSearchNewMedia: Timer?
|
|
|
|
|
|
- private let insetsTop: CGFloat = 75
|
|
|
+ let insetsTop: CGFloat = 75
|
|
|
|
|
|
struct cacheImages {
|
|
|
static var cellLivePhotoImage = UIImage()
|
|
@@ -75,35 +71,27 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
|
|
|
view.backgroundColor = .systemBackground
|
|
|
|
|
|
- collectionView.register(UINib(nibName: "NCGridMediaCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
|
|
|
+ layout = NCMediaGridLayout()
|
|
|
+ layout.itemForLine = CGFloat(NCKeychain().mediaItemForLine)
|
|
|
+ layout.sectionHeadersPinToVisibleBounds = true
|
|
|
|
|
|
+ collectionView.register(UINib(nibName: "NCGridMediaCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
|
|
|
collectionView.alwaysBounceVertical = true
|
|
|
collectionView.contentInset = UIEdgeInsets(top: insetsTop, left: 0, bottom: 50, right: 0)
|
|
|
collectionView.backgroundColor = .systemBackground
|
|
|
+ collectionView.prefetchDataSource = self
|
|
|
+ collectionView.collectionViewLayout = layout
|
|
|
|
|
|
- gridLayout = NCGridMediaLayout()
|
|
|
- gridLayout.itemForLine = CGFloat(min(NCKeychain().mediaWidthImage, 5))
|
|
|
- gridLayout.sectionHeadersPinToVisibleBounds = true
|
|
|
-
|
|
|
- collectionView.collectionViewLayout = gridLayout
|
|
|
-
|
|
|
- // Empty
|
|
|
emptyDataSet = NCEmptyDataSet(view: collectionView, offset: 0, delegate: self)
|
|
|
|
|
|
mediaCommandView = Bundle.main.loadNibNamed("NCMediaCommandView", owner: self, options: nil)?.first as? NCMediaCommandView
|
|
|
self.view.addSubview(mediaCommandView!)
|
|
|
mediaCommandView?.mediaView = self
|
|
|
- mediaCommandView?.zoomInButton.isEnabled = !(gridLayout.itemForLine == 1)
|
|
|
- mediaCommandView?.zoomOutButton.isEnabled = !(gridLayout.itemForLine == maxImageGrid - 1)
|
|
|
- mediaCommandView?.collapseControlButtonView(true)
|
|
|
mediaCommandView?.translatesAutoresizingMaskIntoConstraints = false
|
|
|
mediaCommandView?.topAnchor.constraint(equalTo: view.topAnchor, constant: 0).isActive = true
|
|
|
mediaCommandView?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
|
|
|
mediaCommandView?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
|
|
|
mediaCommandView?.heightAnchor.constraint(equalToConstant: 150).isActive = true
|
|
|
- self.updateMediaControlVisibility()
|
|
|
-
|
|
|
- collectionView.prefetchDataSource = self
|
|
|
|
|
|
cacheImages.cellLivePhotoImage = utility.loadImage(named: "livephoto", color: .white)
|
|
|
cacheImages.cellPlayImage = utility.loadImage(named: "play.fill", color: .white)
|
|
@@ -119,34 +107,35 @@ 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(uploadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
|
|
|
+
|
|
|
+ timerSearchNewMedia?.invalidate()
|
|
|
+ timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchMediaUI), userInfo: nil, repeats: false)
|
|
|
|
|
|
if let metadatas = NCImageCache.shared.initialMetadatas() {
|
|
|
self.metadatas = metadatas
|
|
|
+ self.mediaCommandView?.setMoreButton()
|
|
|
}
|
|
|
- timerSearchNewMedia?.invalidate()
|
|
|
- timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
|
|
|
-
|
|
|
collectionView.reloadData()
|
|
|
}
|
|
|
|
|
|
override func viewDidAppear(_ animated: Bool) {
|
|
|
super.viewDidAppear(animated)
|
|
|
|
|
|
- mediaCommandTitle()
|
|
|
+ mediaCommandView?.setMediaCommand()
|
|
|
+ mediaCommandView?.createMenu()
|
|
|
}
|
|
|
|
|
|
override func viewWillDisappear(_ animated: Bool) {
|
|
|
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.notificationCenterUploadedFile), object: nil)
|
|
|
}
|
|
|
|
|
|
override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
|
|
|
super.viewWillTransition(to: size, with: coordinator)
|
|
|
|
|
|
- self.collectionView?.collectionViewLayout.invalidateLayout()
|
|
|
+ collectionView?.collectionViewLayout.invalidateLayout()
|
|
|
+ mediaCommandView?.setMediaCommand()
|
|
|
}
|
|
|
|
|
|
override var preferredStatusBarStyle: UIStatusBarStyle {
|
|
@@ -158,89 +147,29 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
@objc func deleteFile(_ notification: NSNotification) {
|
|
|
|
|
|
guard let userInfo = notification.userInfo as NSDictionary?,
|
|
|
+ let ocIds = userInfo["ocId"] as? [String],
|
|
|
let error = userInfo["error"] as? NKError else { return }
|
|
|
|
|
|
- self.reloadDataSource()
|
|
|
-
|
|
|
- if error != .success {
|
|
|
- NCContentPresenter().showError(error: error)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @objc func uploadedFile(_ notification: NSNotification) {
|
|
|
-
|
|
|
- guard let userInfo = notification.userInfo as NSDictionary?,
|
|
|
- let error = userInfo["error"] as? NKError,
|
|
|
- error == .success,
|
|
|
- let account = userInfo["account"] as? String,
|
|
|
- account == appDelegate.account
|
|
|
- else { return }
|
|
|
-
|
|
|
- self.reloadDataSource()
|
|
|
- }
|
|
|
-
|
|
|
- // MARK: - Command
|
|
|
-
|
|
|
- func mediaCommandTitle() {
|
|
|
-
|
|
|
- mediaCommandView?.title.text = ""
|
|
|
- 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 {
|
|
|
- mediaCommandView?.title.text = ""
|
|
|
- if let date = cell.date {
|
|
|
- mediaCommandView?.title.text = utility.getTitleFromDate(date)
|
|
|
+ if !ocIds.isEmpty {
|
|
|
+ var items: [IndexPath] = []
|
|
|
+ self.metadatas = self.metadatas?.filter({ !ocIds.contains($0.ocId )})
|
|
|
+ if let visibleCells = self.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.collectionView?.cellForItem(at: $0) }) {
|
|
|
+ for case let cell as NCGridMediaCell in visibleCells {
|
|
|
+ if let ocId = cell.fileObjectId, ocIds.contains(ocId) {
|
|
|
+ items.append(cell.indexPath)
|
|
|
+ }
|
|
|
}
|
|
|
+ collectionView?.performBatchUpdates({
|
|
|
+ collectionView?.deleteItems(at: items)
|
|
|
+ }, completion: { _ in
|
|
|
+ self.collectionView?.reloadData()
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- @objc func zoomOutGrid() {
|
|
|
-
|
|
|
- UIView.animate(withDuration: 0.0, animations: {
|
|
|
- if self.gridLayout.itemForLine + 1 < self.maxImageGrid {
|
|
|
- self.gridLayout.itemForLine += 1
|
|
|
- self.mediaCommandView?.zoomInButton.isEnabled = true
|
|
|
- }
|
|
|
- if self.gridLayout.itemForLine == self.maxImageGrid - 1 {
|
|
|
- self.mediaCommandView?.zoomOutButton.isEnabled = false
|
|
|
- }
|
|
|
-
|
|
|
- self.collectionView.collectionViewLayout.invalidateLayout()
|
|
|
- NCKeychain().mediaWidthImage = Int(self.gridLayout.itemForLine)
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- @objc func zoomInGrid() {
|
|
|
-
|
|
|
- UIView.animate(withDuration: 0.0, animations: {
|
|
|
- if self.gridLayout.itemForLine - 1 > 0 {
|
|
|
- self.gridLayout.itemForLine -= 1
|
|
|
- self.mediaCommandView?.zoomOutButton.isEnabled = true
|
|
|
- }
|
|
|
- if self.gridLayout.itemForLine == 1 {
|
|
|
- self.mediaCommandView?.zoomInButton.isEnabled = false
|
|
|
- }
|
|
|
-
|
|
|
- self.collectionView.collectionViewLayout.invalidateLayout()
|
|
|
- NCKeychain().mediaWidthImage = Int(self.gridLayout.itemForLine)
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- @objc func openMenuButtonMore(_ sender: Any) {
|
|
|
-
|
|
|
- toggleMenu()
|
|
|
- }
|
|
|
|
|
|
- // MARK: Select Path
|
|
|
-
|
|
|
- func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], indexPath: [IndexPath], overwrite: Bool, copy: Bool, move: Bool) {
|
|
|
-
|
|
|
- guard let serverUrl = serverUrl else { return }
|
|
|
- let home = utilityFileSystem.getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId)
|
|
|
- mediaPath = serverUrl.replacingOccurrences(of: home, with: "")
|
|
|
- NCManageDatabase.shared.setAccountMediaPath(mediaPath, account: appDelegate.account)
|
|
|
- reloadDataSource()
|
|
|
- searchNewMedia()
|
|
|
+ if error != .success {
|
|
|
+ NCContentPresenter().showError(error: error)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// MARK: - Empty
|
|
@@ -248,13 +177,34 @@ class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
|
|
|
func emptyDataSetView(_ view: NCEmptyView) {
|
|
|
|
|
|
view.emptyImage.image = UIImage(named: "media")?.image(color: .gray, size: UIScreen.main.bounds.width)
|
|
|
- if oldInProgress || newInProgress {
|
|
|
+ if loadingTask != nil {
|
|
|
view.emptyTitle.text = NSLocalizedString("_search_in_progress_", comment: "")
|
|
|
} else {
|
|
|
view.emptyTitle.text = NSLocalizedString("_tutorial_photo_view_", comment: "")
|
|
|
}
|
|
|
view.emptyDescription.text = ""
|
|
|
}
|
|
|
+
|
|
|
+ // MARK: - Image
|
|
|
+
|
|
|
+ func getImage(metadata: tableMetadata) -> UIImage? {
|
|
|
+
|
|
|
+ if let cachedImage = NCImageCache.shared.getMediaImage(ocId: metadata.ocId, etag: metadata.etag), case let .actual(image) = cachedImage {
|
|
|
+ return 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)) {
|
|
|
+ NCImageCache.shared.setMediaImage(ocId: metadata.ocId, etag: metadata.etag, image: .actual(image))
|
|
|
+ return image
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ if metadata.hasPreview && metadata.status == NCGlobal.shared.metadataStatusNormal && (!utilityFileSystem.fileProviderStoragePreviewIconExists(metadata.ocId, etag: metadata.etag)) {
|
|
|
+ if NCNetworking.shared.downloadThumbnailQueue.operations.filter({ ($0 as? NCMediaDownloadThumbnaill)?.metadata.ocId == metadata.ocId }).isEmpty {
|
|
|
+ NCNetworking.shared.downloadThumbnailQueue.addOperation(NCMediaDownloadThumbnaill(metadata: metadata, collectionView: collectionView))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// MARK: - Collection View
|
|
@@ -267,20 +217,18 @@ extension NCMedia: UICollectionViewDelegate {
|
|
|
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 {
|
|
|
+ } else {
|
|
|
// 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)
|
|
|
+ if let metadatas = self.metadatas?.getArray() {
|
|
|
+ NCViewer().view(viewController: self, metadata: metadata, metadatas: metadatas, imageIcon: getImage(metadata: metadata))
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -317,15 +265,18 @@ extension NCMedia: UICollectionViewDataSourcePrefetching {
|
|
|
extension NCMedia: UICollectionViewDataSource {
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
|
|
|
- guard let metadatas = self.metadatas else { return 0 }
|
|
|
- emptyDataSet?.numberOfItemsInSection(metadatas.count, section: section)
|
|
|
- return metadatas.count
|
|
|
+ var numberOfItemsInSection = 0
|
|
|
+ if let metadatas {
|
|
|
+ numberOfItemsInSection = metadatas.count
|
|
|
+ }
|
|
|
+ emptyDataSet?.numberOfItemsInSection(numberOfItemsInSection, section: section)
|
|
|
+ return numberOfItemsInSection
|
|
|
}
|
|
|
|
|
|
func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
|
|
|
- guard let metadatas = self.metadatas else { return }
|
|
|
+ guard let metadatas else { return }
|
|
|
if !collectionView.indexPathsForVisibleItems.contains(indexPath) && indexPath.row < metadatas.count {
|
|
|
- let metadata = metadatas[indexPath.row]
|
|
|
+ guard let metadata = metadatas[indexPath.row] else { return }
|
|
|
for case let operation as NCMediaDownloadThumbnaill in NCNetworking.shared.downloadThumbnailQueue.operations where operation.metadata.ocId == metadata.ocId {
|
|
|
operation.cancel()
|
|
|
}
|
|
@@ -338,260 +289,47 @@ extension NCMedia: UICollectionViewDataSource {
|
|
|
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> 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 < metadatas.count {
|
|
|
-
|
|
|
- let metadata = metadatas[indexPath.row]
|
|
|
-
|
|
|
- self.cellHeigth = cell.frame.size.height
|
|
|
-
|
|
|
- cell.date = metadata.date as Date
|
|
|
- cell.fileObjectId = metadata.ocId
|
|
|
- cell.indexPath = indexPath
|
|
|
- cell.fileUser = metadata.ownerId
|
|
|
-
|
|
|
- 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, etag: metadata.etag, image: .actual(image))
|
|
|
- }
|
|
|
- } else {
|
|
|
- if metadata.hasPreview && metadata.status == NCGlobal.shared.metadataStatusNormal && (!utilityFileSystem.fileProviderStoragePreviewIconExists(metadata.ocId, etag: metadata.etag)) {
|
|
|
- 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 {
|
|
|
- cell.imageStatus.image = cacheImages.cellLivePhotoImage
|
|
|
- } else {
|
|
|
- cell.imageStatus.image = nil
|
|
|
- }
|
|
|
-
|
|
|
- if isEditMode {
|
|
|
- cell.selectMode(true)
|
|
|
- if selectOcId.contains(metadata.ocId) {
|
|
|
- cell.selected(true)
|
|
|
- } else {
|
|
|
- cell.selected(false)
|
|
|
- }
|
|
|
- } else {
|
|
|
- cell.selectMode(false)
|
|
|
- }
|
|
|
-
|
|
|
- return cell
|
|
|
-
|
|
|
- } else {
|
|
|
-
|
|
|
- return cell
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-extension NCMedia: UICollectionViewDelegateFlowLayout {
|
|
|
-
|
|
|
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
|
|
|
- return CGSize(width: collectionView.frame.width, height: 0)
|
|
|
- }
|
|
|
-
|
|
|
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
|
|
|
- return CGSize(width: collectionView.frame.width, height: 0)
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-extension NCMedia {
|
|
|
-
|
|
|
- func getPredicate(showAll: Bool = false) -> NSPredicate {
|
|
|
-
|
|
|
- let startServerUrl = NCUtilityFileSystem().getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId) + mediaPath
|
|
|
-
|
|
|
- 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)
|
|
|
- } else {
|
|
|
- return NSPredicate(format: NCImageCache.shared.showBothPredicateMediaString, appDelegate.account, startServerUrl)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @objc func reloadDataSource() {
|
|
|
- guard !appDelegate.account.isEmpty else { return }
|
|
|
-
|
|
|
- metadatas = NCImageCache.shared.getMediaMetadatas(account: self.appDelegate.account, predicate: self.getPredicate())
|
|
|
- DispatchQueue.main.async {
|
|
|
- self.collectionView?.reloadData()
|
|
|
- self.updateMediaControlVisibility()
|
|
|
- self.mediaCommandTitle()
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- func updateMediaControlVisibility() {
|
|
|
-
|
|
|
- if let metadatas = self.metadatas, metadatas.isEmpty {
|
|
|
- if !self.showOnlyImages && !self.showOnlyVideos {
|
|
|
- self.mediaCommandView?.toggleEmptyView(isEmpty: true)
|
|
|
- self.mediaCommandView?.isHidden = false
|
|
|
- } else {
|
|
|
- self.mediaCommandView?.toggleEmptyView(isEmpty: true)
|
|
|
- self.mediaCommandView?.isHidden = false
|
|
|
- }
|
|
|
- } else {
|
|
|
- self.mediaCommandView?.toggleEmptyView(isEmpty: false)
|
|
|
- self.mediaCommandView?.isHidden = false
|
|
|
- }
|
|
|
- }
|
|
|
+ let metadatas = self.metadatas,
|
|
|
+ let metadata = metadatas[indexPath.row] else { return UICollectionViewCell() }
|
|
|
|
|
|
- // MARK: - Search media
|
|
|
+ self.cellHeigth = cell.frame.size.height
|
|
|
|
|
|
- private func searchOldMedia(value: Int = -30, limit: Int = 300) {
|
|
|
+ cell.date = metadata.date as Date
|
|
|
+ cell.fileObjectId = metadata.ocId
|
|
|
+ cell.indexPath = indexPath
|
|
|
+ cell.fileUser = metadata.ownerId
|
|
|
+ cell.imageStatus.image = nil
|
|
|
|
|
|
- if oldInProgress { return } else { oldInProgress = true }
|
|
|
- DispatchQueue.main.async {
|
|
|
- self.collectionView.reloadData()
|
|
|
- var bottom: CGFloat = 0
|
|
|
- if let mainTabBar = self.tabBarController?.tabBar as? NCMainTabBar {
|
|
|
- bottom = -mainTabBar.getHeight()
|
|
|
- }
|
|
|
- NCActivityIndicator.shared.start(backgroundView: self.view, bottom: bottom - 5, style: .medium)
|
|
|
+ if let image = getImage(metadata: metadata) {
|
|
|
+ cell.imageItem.backgroundColor = nil
|
|
|
+ cell.imageItem.image = image
|
|
|
}
|
|
|
|
|
|
- var lessDate = Date()
|
|
|
- let predicate = getPredicate()
|
|
|
- if let metadata = NCManageDatabase.shared.getMetadata(predicate: predicate, sorted: "date", ascending: true) {
|
|
|
- lessDate = metadata.date as Date
|
|
|
+ // Convert OLD Live Photo
|
|
|
+ if NCGlobal.shared.isLivePhotoServerAvailable, metadata.isLivePhoto, metadata.isNotFlaggedAsLivePhotoByServer {
|
|
|
+ NCNetworking.shared.convertLivePhoto(metadata: metadata)
|
|
|
}
|
|
|
|
|
|
- var greaterDate: Date
|
|
|
- if value == -999 {
|
|
|
- greaterDate = Date.distantPast
|
|
|
+ if metadata.isAudioOrVideo {
|
|
|
+ cell.imageStatus.image = cacheImages.cellPlayImage
|
|
|
+ } else if metadata.isLivePhoto {
|
|
|
+ cell.imageStatus.image = cacheImages.cellLivePhotoImage
|
|
|
} else {
|
|
|
- greaterDate = Calendar.current.date(byAdding: .day, value: value, to: lessDate)!
|
|
|
+ cell.imageStatus.image = nil
|
|
|
}
|
|
|
|
|
|
- let options = NKRequestOptions(timeout: 300, queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)
|
|
|
-
|
|
|
- NextcloudKit.shared.searchMedia(path: mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: NCKeychain().showHiddenFiles, options: options) { account, files, _, error in
|
|
|
-
|
|
|
- self.oldInProgress = false
|
|
|
- DispatchQueue.main.async {
|
|
|
- NCActivityIndicator.shared.stop()
|
|
|
- self.collectionView.reloadData()
|
|
|
- }
|
|
|
-
|
|
|
- if error == .success && account == self.appDelegate.account {
|
|
|
- if !files.isEmpty {
|
|
|
- NCManageDatabase.shared.convertFilesToMetadatas(files, useMetadataFolder: false) { _, _, metadatas in
|
|
|
- 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 if results.metadatasChanged {
|
|
|
- self.reloadDataSource()
|
|
|
- }
|
|
|
- }
|
|
|
- } else {
|
|
|
- self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: false)
|
|
|
- }
|
|
|
- } else if error != .success {
|
|
|
- NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Media search old media error code \(error.errorCode) " + error.errorDescription)
|
|
|
+ if isEditMode {
|
|
|
+ cell.selectMode(true)
|
|
|
+ if selectOcId.contains(metadata.ocId) {
|
|
|
+ cell.selected(true)
|
|
|
+ } else {
|
|
|
+ cell.selected(false)
|
|
|
}
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- private func researchOldMedia(value: Int, limit: Int, withElseReloadDataSource: Bool) {
|
|
|
-
|
|
|
- if value == -30 {
|
|
|
- searchOldMedia(value: -90)
|
|
|
- } else if value == -90 {
|
|
|
- searchOldMedia(value: -180)
|
|
|
- } else if value == -180 {
|
|
|
- searchOldMedia(value: -999)
|
|
|
- } else if value == -999 && limit > 0 {
|
|
|
- searchOldMedia(value: -999, limit: 0)
|
|
|
} else {
|
|
|
- if withElseReloadDataSource {
|
|
|
- self.reloadDataSource()
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @objc func searchNewMediaTimer() {
|
|
|
-
|
|
|
- self.searchNewMedia()
|
|
|
- }
|
|
|
-
|
|
|
- @objc func searchNewMedia() {
|
|
|
-
|
|
|
- if newInProgress { return } else {
|
|
|
- newInProgress = true
|
|
|
- mediaCommandView?.activityIndicator.startAnimating()
|
|
|
- }
|
|
|
-
|
|
|
- var limit: Int = 1000
|
|
|
- guard var lessDate = Calendar.current.date(byAdding: .second, value: 1, to: Date()) else { return }
|
|
|
- guard var greaterDate = Calendar.current.date(byAdding: .day, value: -30, to: Date()) else { return }
|
|
|
-
|
|
|
- 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? {
|
|
|
- lessDate = Calendar.current.date(byAdding: .second, value: 1, to: cell.date!)!
|
|
|
- limit = 0
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if let cell = visibleCells.last as? NCGridMediaCell {
|
|
|
- if cell.date != nil {
|
|
|
- greaterDate = Calendar.current.date(byAdding: .second, value: -1, to: cell.date!)!
|
|
|
- }
|
|
|
- }
|
|
|
+ cell.selectMode(false)
|
|
|
}
|
|
|
|
|
|
- collectionView?.reloadData()
|
|
|
-
|
|
|
- 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
|
|
|
-
|
|
|
- self.newInProgress = false
|
|
|
- DispatchQueue.main.async {
|
|
|
- self.mediaCommandView?.activityIndicator.stopAnimating()
|
|
|
- }
|
|
|
-
|
|
|
- if error == .success, account == self.appDelegate.account {
|
|
|
- if !files.isEmpty {
|
|
|
- NCManageDatabase.shared.convertFilesToMetadatas(files, useMetadataFolder: false) { _, _, metadatas in
|
|
|
- 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 {
|
|
|
- self.searchOldMedia()
|
|
|
- }
|
|
|
- } else if error != .success {
|
|
|
- NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Media search new media error code \(error.errorCode) " + error.errorDescription)
|
|
|
- }
|
|
|
- }
|
|
|
+ return cell
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -600,246 +338,48 @@ extension NCMedia {
|
|
|
extension NCMedia: UIScrollViewDelegate {
|
|
|
|
|
|
func scrollViewDidScroll(_ scrollView: UIScrollView) {
|
|
|
-
|
|
|
if lastContentOffsetY == 0 || lastContentOffsetY + cellHeigth / 2 <= scrollView.contentOffset.y || lastContentOffsetY - cellHeigth / 2 >= scrollView.contentOffset.y {
|
|
|
-
|
|
|
- mediaCommandTitle()
|
|
|
+ mediaCommandView?.setMediaCommand()
|
|
|
lastContentOffsetY = scrollView.contentOffset.y
|
|
|
}
|
|
|
}
|
|
|
|
|
|
func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
|
|
|
|
|
|
- mediaCommandView?.collapseControlButtonView(true)
|
|
|
}
|
|
|
|
|
|
func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
|
|
|
-
|
|
|
if !decelerate {
|
|
|
- timerSearchNewMedia?.invalidate()
|
|
|
- timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
|
|
|
-
|
|
|
- if scrollView.contentOffset.y >= (scrollView.contentSize.height - scrollView.frame.size.height) {
|
|
|
- searchOldMedia()
|
|
|
+ if !decelerate {
|
|
|
+ timerSearchNewMedia?.invalidate()
|
|
|
+ timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchMediaUI), userInfo: nil, repeats: false)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
|
|
|
-
|
|
|
timerSearchNewMedia?.invalidate()
|
|
|
- timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
|
|
|
-
|
|
|
- if scrollView.contentOffset.y >= (scrollView.contentSize.height - scrollView.frame.size.height) {
|
|
|
- searchOldMedia()
|
|
|
- }
|
|
|
+ timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchMediaUI), userInfo: nil, repeats: false)
|
|
|
}
|
|
|
|
|
|
func scrollViewDidScrollToTop(_ scrollView: UIScrollView) {
|
|
|
-
|
|
|
let y = view.safeAreaInsets.top
|
|
|
scrollView.contentOffset.y = -(insetsTop + y)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-// MARK: - Media Command View
|
|
|
-
|
|
|
-class NCMediaCommandView: UIView {
|
|
|
-
|
|
|
- @IBOutlet weak var moreView: UIVisualEffectView!
|
|
|
- @IBOutlet weak var gridSwitchButton: UIButton!
|
|
|
- @IBOutlet weak var separatorView: UIView!
|
|
|
- @IBOutlet weak var buttonControlWidthConstraint: NSLayoutConstraint!
|
|
|
- @IBOutlet weak var zoomInButton: UIButton!
|
|
|
- @IBOutlet weak var zoomOutButton: UIButton!
|
|
|
- @IBOutlet weak var moreButton: UIButton!
|
|
|
- @IBOutlet weak var controlButtonView: UIVisualEffectView!
|
|
|
- @IBOutlet weak var title: UILabel!
|
|
|
- @IBOutlet weak var activityIndicator: UIActivityIndicatorView!
|
|
|
-
|
|
|
- var mediaView: NCMedia?
|
|
|
- private let gradient: CAGradientLayer = CAGradientLayer()
|
|
|
-
|
|
|
- override func awakeFromNib() {
|
|
|
- moreView.layer.cornerRadius = 20
|
|
|
- moreView.layer.masksToBounds = true
|
|
|
- controlButtonView.layer.cornerRadius = 20
|
|
|
- controlButtonView.layer.masksToBounds = true
|
|
|
- controlButtonView.effect = UIBlurEffect(style: .dark)
|
|
|
- gradient.frame = bounds
|
|
|
- gradient.startPoint = CGPoint(x: 0, y: 0.5)
|
|
|
- gradient.endPoint = CGPoint(x: 0, y: 1)
|
|
|
- gradient.colors = [UIColor.black.withAlphaComponent(UIAccessibility.isReduceTransparencyEnabled ? 0.8 : 0.4).cgColor, UIColor.clear.cgColor]
|
|
|
- layer.insertSublayer(gradient, at: 0)
|
|
|
- moreButton.setImage(UIImage(named: "more")!.image(color: .white, size: 25), for: .normal)
|
|
|
- title.text = ""
|
|
|
- }
|
|
|
-
|
|
|
- func toggleEmptyView(isEmpty: Bool) {
|
|
|
- if isEmpty {
|
|
|
- UIView.animate(withDuration: 0.3) {
|
|
|
- self.moreView.effect = UIBlurEffect(style: .dark)
|
|
|
- self.gradient.isHidden = true
|
|
|
- self.controlButtonView.isHidden = true
|
|
|
- }
|
|
|
- } else {
|
|
|
- UIView.animate(withDuration: 0.3) {
|
|
|
- self.moreView.effect = UIBlurEffect(style: .dark)
|
|
|
- self.gradient.isHidden = false
|
|
|
- self.controlButtonView.isHidden = false
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @IBAction func moreButtonPressed(_ sender: UIButton) {
|
|
|
- mediaView?.openMenuButtonMore(sender)
|
|
|
- }
|
|
|
-
|
|
|
- @IBAction func zoomInPressed(_ sender: UIButton) {
|
|
|
- mediaView?.zoomInGrid()
|
|
|
- }
|
|
|
-
|
|
|
- @IBAction func zoomOutPressed(_ sender: UIButton) {
|
|
|
- mediaView?.zoomOutGrid()
|
|
|
- }
|
|
|
-
|
|
|
- @IBAction func gridSwitchButtonPressed(_ sender: Any) {
|
|
|
- self.collapseControlButtonView(false)
|
|
|
- }
|
|
|
-
|
|
|
- func collapseControlButtonView(_ collapse: Bool) {
|
|
|
- if collapse {
|
|
|
- self.buttonControlWidthConstraint.constant = 40
|
|
|
- UIView.animate(withDuration: 0.25) {
|
|
|
- self.zoomOutButton.isHidden = true
|
|
|
- self.zoomInButton.isHidden = true
|
|
|
- self.separatorView.isHidden = true
|
|
|
- self.gridSwitchButton.isHidden = false
|
|
|
- self.layoutIfNeeded()
|
|
|
- }
|
|
|
- } else {
|
|
|
- self.buttonControlWidthConstraint.constant = 80
|
|
|
- UIView.animate(withDuration: 0.25) {
|
|
|
- self.zoomOutButton.isHidden = false
|
|
|
- self.zoomInButton.isHidden = false
|
|
|
- self.separatorView.isHidden = false
|
|
|
- self.gridSwitchButton.isHidden = true
|
|
|
- self.layoutIfNeeded()
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
|
|
|
- return moreView.frame.contains(point) || controlButtonView.frame.contains(point)
|
|
|
- }
|
|
|
-
|
|
|
- override func layoutSublayers(of layer: CALayer) {
|
|
|
- super.layoutSublayers(of: layer)
|
|
|
- gradient.frame = bounds
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-// MARK: - Media Grid Layout
|
|
|
-
|
|
|
-class NCGridMediaLayout: UICollectionViewFlowLayout {
|
|
|
-
|
|
|
- var marginLeftRight: CGFloat = 2
|
|
|
- var itemForLine: CGFloat = 3
|
|
|
-
|
|
|
- override init() {
|
|
|
- super.init()
|
|
|
-
|
|
|
- sectionHeadersPinToVisibleBounds = false
|
|
|
-
|
|
|
- minimumInteritemSpacing = 0
|
|
|
- minimumLineSpacing = marginLeftRight
|
|
|
-
|
|
|
- self.scrollDirection = .vertical
|
|
|
- self.sectionInset = UIEdgeInsets(top: 0, left: marginLeftRight, bottom: 0, right: marginLeftRight)
|
|
|
- }
|
|
|
-
|
|
|
- required init?(coder aDecoder: NSCoder) {
|
|
|
- fatalError("init(coder:) has not been implemented")
|
|
|
- }
|
|
|
-
|
|
|
- override var itemSize: CGSize {
|
|
|
- get {
|
|
|
- if let collectionView = collectionView {
|
|
|
-
|
|
|
- let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
|
|
|
- let itemHeight: CGFloat = itemWidth
|
|
|
-
|
|
|
- return CGSize(width: itemWidth, height: itemHeight)
|
|
|
- }
|
|
|
-
|
|
|
- // Default fallback
|
|
|
- return CGSize(width: 100, height: 100)
|
|
|
- }
|
|
|
- set {
|
|
|
- super.itemSize = newValue
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
|
|
|
- return proposedContentOffset
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-// MARK: -
|
|
|
-
|
|
|
-class NCMediaDownloadThumbnaill: ConcurrentOperation {
|
|
|
+// MARK: - NCSelect Delegate
|
|
|
|
|
|
- var metadata: tableMetadata
|
|
|
- var cell: NCCellProtocol?
|
|
|
- var collectionView: UICollectionView?
|
|
|
- var fileNamePath: String
|
|
|
- var fileNamePreviewLocalPath: String
|
|
|
- var fileNameIconLocalPath: String
|
|
|
- let utilityFileSystem = NCUtilityFileSystem()
|
|
|
-
|
|
|
- init(metadata: tableMetadata, cell: NCCellProtocol?, collectionView: UICollectionView?) {
|
|
|
- self.metadata = tableMetadata.init(value: metadata)
|
|
|
- self.cell = cell
|
|
|
- self.collectionView = collectionView
|
|
|
- self.fileNamePath = utilityFileSystem.getFileNamePath(metadata.fileName, serverUrl: metadata.serverUrl, urlBase: metadata.urlBase, userId: metadata.userId)
|
|
|
- self.fileNamePreviewLocalPath = utilityFileSystem.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag)
|
|
|
- self.fileNameIconLocalPath = utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)
|
|
|
- }
|
|
|
+extension NCMedia: NCSelectDelegate {
|
|
|
|
|
|
- override func start() {
|
|
|
-
|
|
|
- guard !isCancelled else { return self.finish() }
|
|
|
-
|
|
|
- var etagResource: String?
|
|
|
- if FileManager.default.fileExists(atPath: fileNameIconLocalPath) && FileManager.default.fileExists(atPath: fileNamePreviewLocalPath) {
|
|
|
- etagResource = metadata.etagResource
|
|
|
- }
|
|
|
+ func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], indexPath: [IndexPath], overwrite: Bool, copy: Bool, move: Bool) {
|
|
|
|
|
|
- NextcloudKit.shared.downloadPreview(fileNamePathOrFileId: fileNamePath,
|
|
|
- fileNamePreviewLocalPath: fileNamePreviewLocalPath,
|
|
|
- widthPreview: NCGlobal.shared.sizePreview,
|
|
|
- heightPreview: NCGlobal.shared.sizePreview,
|
|
|
- fileNameIconLocalPath: fileNameIconLocalPath,
|
|
|
- sizeIcon: NCGlobal.shared.sizeIcon,
|
|
|
- etag: etagResource,
|
|
|
- options: NKRequestOptions(queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)) { _, imagePreview, _, _, etag, error in
|
|
|
-
|
|
|
- if error == .success, let image = imagePreview {
|
|
|
- NCManageDatabase.shared.setMetadataEtagResource(ocId: self.metadata.ocId, etagResource: etag)
|
|
|
- DispatchQueue.main.async {
|
|
|
- if self.metadata.ocId == self.cell?.fileObjectId, let filePreviewImageView = self.cell?.filePreviewImageView {
|
|
|
- UIView.transition(with: filePreviewImageView,
|
|
|
- duration: 0.75,
|
|
|
- options: .transitionCrossDissolve,
|
|
|
- animations: { filePreviewImageView.image = image },
|
|
|
- completion: nil)
|
|
|
- } else {
|
|
|
- self.collectionView?.reloadData()
|
|
|
- }
|
|
|
- }
|
|
|
- NCImageCache.shared.setMediaImage(ocId: self.metadata.ocId, etag: self.metadata.etag, image: .actual(image))
|
|
|
- }
|
|
|
- self.finish()
|
|
|
- }
|
|
|
+ guard let serverUrl = serverUrl else { return }
|
|
|
+ let home = utilityFileSystem.getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId)
|
|
|
+ mediaPath = serverUrl.replacingOccurrences(of: home, with: "")
|
|
|
+ NCManageDatabase.shared.setAccountMediaPath(mediaPath, account: appDelegate.account)
|
|
|
+ reloadDataSource()
|
|
|
+ timerSearchNewMedia?.invalidate()
|
|
|
+ timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(self.searchMediaUI), userInfo: nil, repeats: false)
|
|
|
}
|
|
|
}
|