12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034 |
- //
- // NCMedia.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 12/02/2019.
- // Copyright © 2019 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import Foundation
- import NCCommunication
- class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
-
- @IBOutlet weak var collectionView : UICollectionView!
-
- private var emptyDataSet: NCEmptyDataSet?
- private var mediaCommandView: NCMediaCommandView?
- private var gridLayout: NCGridMediaLayout!
- private let appDelegate = UIApplication.shared.delegate as! AppDelegate
-
- public var metadatas: [tableMetadata] = []
- private var metadataTouch: tableMetadata?
- private var account: String = ""
- private var predicateDefault: NSPredicate?
- private var predicate: NSPredicate?
- private var isEditMode = false
- private var selectOcId: [String] = []
-
- private var filterTypeFileImage = false
- private var filterTypeFileVideo = false
-
- private let maxImageGrid: CGFloat = 7
- private var cellHeigth: CGFloat = 0
- private var oldInProgress = false
- private var newInProgress = false
-
- private var lastContentOffsetY: CGFloat = 0
- private var mediaPath = ""
- private var livePhoto: Bool = false
-
- private var timeIntervalSearchNewMedia: TimeInterval = 3.5
- private var timerSearchNewMedia: Timer?
-
- struct cacheImages {
- static var cellLivePhotoImage = UIImage()
- static var cellPlayImage = UIImage()
- }
- // MARK: - View Life Cycle
-
- required init?(coder aDecoder: NSCoder) {
- super.init(coder: aDecoder)
- appDelegate.activeMedia = self
-
- NotificationCenter.default.addObserver(self, selector: #selector(applicationWillEnterForeground), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterApplicationWillEnterForeground), object: nil)
- }
-
- override func viewDidLoad() {
- super.viewDidLoad()
-
- collectionView.register(UINib.init(nibName: "NCGridMediaCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
-
- collectionView.alwaysBounceVertical = true
- collectionView.contentInset = UIEdgeInsets(top: 75, left: 0, bottom: 50, right: 0);
-
- gridLayout = NCGridMediaLayout()
- gridLayout.itemForLine = CGFloat(min(CCUtility.getMediaWidthImage(), 5))
- gridLayout.sectionHeadersPinToVisibleBounds = true
- collectionView.collectionViewLayout = gridLayout
-
- // Empty
- emptyDataSet = NCEmptyDataSet.init(view: collectionView, offset: 0, delegate: self)
-
- // Notification
- NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterDeleteFile), object: nil)
- NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterChangeTheming), object: nil)
- NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterMoveFile), object: nil)
- NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: NCBrandGlobal.shared.notificationCenterRenameFile), object: nil)
-
- 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
-
- changeTheming()
- }
-
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
-
- // hide nagigation controller
- navigationController?.navigationBar.prefersLargeTitles = true
- navigationController?.setNavigationBarHidden(true, animated: false)
-
- self.reloadDataSourceWithCompletion { (_) in
- self.timerSearchNewMedia?.invalidate()
- self.timerSearchNewMedia = Timer.scheduledTimer(timeInterval: self.timeIntervalSearchNewMedia, target: self, selector: #selector(self.searchNewMediaTimer), userInfo: nil, repeats: false)
- }
- }
-
- override func viewDidAppear(_ animated: Bool) {
- super.viewDidAppear(animated)
- }
-
- override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
- super.viewWillTransition(to: size, with: coordinator)
-
- coordinator.animate(alongsideTransition: nil) { _ in
- self.reloadDataThenPerform { }
- }
- }
-
- override var preferredStatusBarStyle: UIStatusBarStyle {
- return .lightContent
- }
-
- //MARK: - Notification
-
- @objc func applicationWillEnterForeground() {
- if self.view.window != nil {
- self.viewDidAppear(false)
- }
- }
-
- //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 {
- if cell.date != nil {
- mediaCommandView?.title.text = CCUtility.getTitleSectionDate(cell.date)
- }
- }
- }
- }
-
- @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()
- CCUtility.setMediaWidthImage(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()
- CCUtility.setMediaWidthImage(Int(self.gridLayout.itemForLine))
- })
- }
-
- @objc func openMenuButtonMore(_ sender: Any) {
- let mainMenuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateViewController(withIdentifier: "NCMainMenuTableViewController") as! NCMainMenuTableViewController
- var actions: [NCMenuAction] = []
- if !isEditMode {
- if metadatas.count > 0 {
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_select_", comment: ""),
- icon: UIImage(named: "selectFull")!.image(color: NCBrandColor.shared.icon, size: 50),
- action: { menuAction in
- self.isEditMode = true
- }
- )
- )
- }
- actions.append(
- NCMenuAction(
- title: NSLocalizedString(filterTypeFileImage ? "_media_viewimage_show_" : "_media_viewimage_hide_", comment: ""),
- icon: UIImage(named: filterTypeFileImage ? "imageno" : "imageyes")!.image(color: NCBrandColor.shared.icon, size: 50),
- action: { menuAction in
- self.filterTypeFileImage = !self.filterTypeFileImage
- self.filterTypeFileVideo = false
- self.reloadDataSource()
- }
- )
- )
- actions.append(
- NCMenuAction(
- title: NSLocalizedString(filterTypeFileVideo ? "_media_viewvideo_show_" : "_media_viewvideo_hide_", comment: ""),
- icon: UIImage(named: filterTypeFileVideo ? "videono" : "videoyes")!.image(color: NCBrandColor.shared.icon, size: 50),
- action: { menuAction in
- self.filterTypeFileVideo = !self.filterTypeFileVideo
- self.filterTypeFileImage = false
- self.reloadDataSource()
- }
- )
- )
-
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_select_media_folder_", comment: ""),
- icon: UIImage(named: "folderAutomaticUpload")!.image(color: NCBrandColor.shared.icon, size: 50),
- action: { menuAction in
- let navigationController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
- let viewController = navigationController.topViewController as! NCSelect
-
- viewController.delegate = self
- viewController.hideButtonCreateFolder = true
- viewController.includeDirectoryE2EEncryption = false
- viewController.includeImages = false
- viewController.selectFile = false
- viewController.titleButtonDone = NSLocalizedString("_select_", comment: "")
- viewController.type = "mediaFolder"
-
- navigationController.modalPresentationStyle = UIModalPresentationStyle.fullScreen
- self.present(navigationController, animated: true, completion: nil)
- }
- )
- )
-
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_media_by_modified_date_", comment: ""),
- icon: UIImage(named: "sortModifiedDate")!.image(color: NCBrandColor.shared.icon, size: 50),
- selected: CCUtility.getMediaSortDate() == "date",
- on: true,
- action: { menuAction in
- CCUtility.setMediaSortDate("date")
- self.reloadDataSource()
- }
- )
- )
-
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_media_by_created_date_", comment: ""),
- icon: UIImage(named: "sortCreatedDate")!.image(color: NCBrandColor.shared.icon, size: 50),
- selected: CCUtility.getMediaSortDate() == "creationDate",
- on: true,
- action: { menuAction in
- CCUtility.setMediaSortDate("creationDate")
- self.reloadDataSource()
- }
- )
- )
-
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_media_by_upload_date_", comment: ""),
- icon: UIImage(named: "sortUploadDate")!.image(color: NCBrandColor.shared.icon, size: 50),
- selected: CCUtility.getMediaSortDate() == "uploadDate",
- on: true,
- action: { menuAction in
- CCUtility.setMediaSortDate("uploadDate")
- self.reloadDataSource()
- }
- )
- )
-
- } else {
-
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_cancel_", comment: ""),
- icon: UIImage(named: "cancel")!.image(color: NCBrandColor.shared.icon, size: 50),
- action: { menuAction in
- self.isEditMode = false
- self.selectOcId.removeAll()
- self.reloadDataThenPerform { }
- }
- )
- )
-
- //
- // COPY - MOVE
- //
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_move_or_copy_selected_files_", comment: ""),
- icon: UIImage(named: "move")!.image(color: NCBrandColor.shared.icon, size: 50),
- action: { menuAction in
- self.isEditMode = false
- var meradatasSelect = [tableMetadata]()
- for ocId in self.selectOcId {
- if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
- meradatasSelect.append(metadata)
- }
- }
- if meradatasSelect.count > 0 {
- NCCollectionCommon.shared.openSelectView(items: meradatasSelect)
- }
- self.selectOcId.removeAll()
- }
- )
- )
-
- //
- // DELETE
- //
- actions.append(
- NCMenuAction(
- title: NSLocalizedString("_delete_selected_files_", comment: ""),
- icon: UIImage(named: "trash")!.image(color: NCBrandColor.shared.icon, size: 50),
- action: { menuAction in
- self.isEditMode = false
- for ocId in self.selectOcId {
- if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
- NCNetworking.shared.deleteMetadata(metadata, account: self.appDelegate.account, urlBase: self.appDelegate.urlBase, onlyLocal: false) { (errorCode, errorDescription) in
- if errorCode != 0 {
- NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCBrandGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
- }
- }
- }
- }
- self.selectOcId.removeAll()
- }
- )
- )
- }
- mainMenuViewController.actions = actions
- let menuPanelController = NCMenuPanelController()
- menuPanelController.parentPresenter = self
- menuPanelController.delegate = mainMenuViewController
- menuPanelController.set(contentViewController: mainMenuViewController)
- menuPanelController.track(scrollView: mainMenuViewController.tableView)
- self.present(menuPanelController, animated: true, completion: nil)
- }
-
- // MARK: Select Path
-
- func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], buttonType: String, overwrite: Bool) {
- if serverUrl != nil {
- let path = CCUtility.returnPathfromServerUrl(serverUrl, urlBase: appDelegate.urlBase, account: appDelegate.account) ?? ""
- NCManageDatabase.shared.setAccountMediaPath(path, account: appDelegate.account)
- reloadDataSourceWithCompletion { (_) in
- self.searchNewMedia()
- }
- }
- }
-
- //MARK: - NotificationCenter
- @objc func changeTheming() {
- view.backgroundColor = NCBrandColor.shared.backgroundView
- collectionView.backgroundColor = NCBrandColor.shared.backgroundView
- collectionView.reloadData()
-
- cacheImages.cellLivePhotoImage = UIImage.init(named: "livePhoto")!.image(color: .white, size: 50)
- cacheImages.cellPlayImage = UIImage.init(named: "play")!.image(color: .white, size: 50)
- }
- @objc func deleteFile(_ notification: NSNotification) {
- if self.view?.window == nil { return }
-
- if let userInfo = notification.userInfo as NSDictionary? {
- if let ocId = userInfo["ocId"] as? String {
-
- let indexes = self.metadatas.indices.filter { self.metadatas[$0].ocId == ocId }
- let metadatas = self.metadatas.filter { $0.ocId != ocId }
- self.metadatas = metadatas
-
- if self.metadatas.count == 0 {
- collectionView?.reloadData()
- } else if let row = indexes.first {
- let indexPath = IndexPath(row: row, section: 0)
- collectionView?.deleteItems(at: [indexPath])
- }
-
- self.updateMediaControlVisibility()
- }
- }
- }
-
- @objc func moveFile(_ notification: NSNotification) {
- if self.view?.window == nil { return }
-
- if let userInfo = notification.userInfo as NSDictionary? {
- if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
-
- if metadata.account == appDelegate.account {
-
- let indexes = self.metadatas.indices.filter { self.metadatas[$0].ocId == metadata.ocId }
- let metadatas = self.metadatas.filter { $0.ocId != metadata.ocId }
- self.metadatas = metadatas
-
- if self.metadatas.count == 0 {
- collectionView?.reloadData()
- } else if let row = indexes.first {
- let indexPath = IndexPath(row: row, section: 0)
- collectionView?.deleteItems(at: [indexPath])
- }
-
- self.updateMediaControlVisibility()
- }
- }
- }
- }
-
- @objc func renameFile(_ notification: NSNotification) {
- if self.view?.window == nil { return }
-
- if let userInfo = notification.userInfo as NSDictionary? {
- if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
-
- if metadata.account == appDelegate.account {
- self.reloadDataSource()
- }
- }
- }
- }
-
- // MARK: - Empty
-
- func emptyDataSetView(_ view: NCEmptyView) {
-
- view.emptyImage.image = UIImage.init(named: "media")?.image(color: .gray, size: UIScreen.main.bounds.width)
- if oldInProgress || newInProgress {
- view.emptyTitle.text = NSLocalizedString("_search_in_progress_", comment: "")
- } else {
- view.emptyTitle.text = NSLocalizedString("_tutorial_photo_view_", comment: "")
- }
- view.emptyDescription.text = ""
- }
- }
- // MARK: - Collection View
- extension NCMedia: UICollectionViewDelegate {
-
- func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
-
- let metadata = metadatas[indexPath.row]
- metadataTouch = metadata
-
- if isEditMode {
- if let index = selectOcId.firstIndex(of: metadata.ocId) {
- selectOcId.remove(at: index)
- } else {
- selectOcId.append(metadata.ocId)
- }
- if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) {
- collectionView.reloadItems(at: [indexPath])
- }
-
- } else {
-
- appDelegate.activeServerUrl = metadataTouch!.serverUrl
- NCViewer.shared.view(viewController: self, metadata: metadataTouch!, metadatas: metadatas)
- }
- }
-
- @available(iOS 13.0, *)
- func collectionView(_ collectionView: UICollectionView, contextMenuConfigurationForItemAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
-
- let metadata = metadatas[indexPath.row]
- let identifier = indexPath as NSCopying
- return UIContextMenuConfiguration(identifier: identifier, previewProvider: {
-
- return NCViewerProviderContextMenu(metadata: metadata)
-
- }, actionProvider: { suggestedActions in
-
- var titleDelete = NSLocalizedString("_delete_photo_", comment: "")
- if metadata.typeFile == NCBrandGlobal.shared.metadataTypeFileVideo { titleDelete = NSLocalizedString("_delete_video_", comment: "") }
- var discoverabilityTitleSave: String?
- let metadataMov = NCManageDatabase.shared.isLivePhoto(metadata: metadata)
- if metadataMov != nil {
- discoverabilityTitleSave = NSLocalizedString("_livephoto_save_disco_", comment: "")
- }
-
- let save = UIAction(title: NSLocalizedString("_save_selected_files_", comment: ""), image: UIImage(systemName: "square.and.arrow.down"), discoverabilityTitle: discoverabilityTitleSave) { action in
-
- if metadataMov != nil && CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) && CCUtility.fileProviderStorageExists(metadataMov!.ocId, fileNameView: metadataMov!.fileNameView) {
- NCCollectionCommon.shared.saveLivePhoto(metadata: metadata, metadataMov: metadataMov!, progressView: nil, viewActivity: self.view)
- } else {
- NCOperationQueue.shared.download(metadata: metadata, selector: NCBrandGlobal.shared.selectorSaveAlbum, setFavorite: false)
- }
- }
-
- let openIn = UIAction(title: NSLocalizedString("_open_in_", comment: ""), image: UIImage(systemName: "square.and.arrow.up") ) { action in
- NCNetworkingNotificationCenter.shared.downloadOpen(metadata: metadata, selector: NCBrandGlobal.shared.selectorOpenIn)
- }
-
- let moveCopy = UIAction(title: NSLocalizedString("_move_or_copy_", comment: ""), image: UIImage(systemName: "arrow.up.right.square")) { action in
- NCCollectionCommon.shared.openSelectView(items: [metadata])
- }
-
- let deleteConfirm = UIAction(title: titleDelete, image: UIImage(systemName: "trash"), attributes: .destructive) { action in
-
- NCNetworking.shared.deleteMetadata(metadata, account: self.appDelegate.account, urlBase: self.appDelegate.urlBase, onlyLocal: false) { (errorCode, errorDescription) in
- if errorCode != 0 {
- NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCBrandGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
- }
- }
- }
-
- let delete = UIMenu(title: titleDelete, image: UIImage(systemName: "trash"), options: .destructive, children: [deleteConfirm])
-
- return UIMenu(title: "", children: [save, openIn, moveCopy, delete])
- })
- }
-
- @available(iOS 13.0, *)
- func collectionView(_ collectionView: UICollectionView, willPerformPreviewActionForMenuWith configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionCommitAnimating) {
- animator.addCompletion {
- if let indexPath = configuration.identifier as? IndexPath {
- self.collectionView(collectionView, didSelectItemAt: indexPath)
- }
- }
- }
- }
- extension NCMedia: UICollectionViewDataSourcePrefetching {
- func collectionView(_ collectionView: UICollectionView, prefetchItemsAt indexPaths: [IndexPath]) {
- //print("[LOG] n. " + String(indexPaths.count))
- }
- }
- 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(metadatas.count, section: section)
- return metadatas.count
- }
- func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
- if indexPath.row < self.metadatas.count {
- let metadata = self.metadatas[indexPath.row]
- NCOperationQueue.shared.downloadThumbnail(metadata: metadata, urlBase: self.appDelegate.urlBase, view: self.collectionView as Any, indexPath: indexPath)
- }
- }
-
- func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
- if !collectionView.indexPathsForVisibleItems.contains(indexPath) && indexPath.row < metadatas.count {
- let metadata = metadatas[indexPath.row]
- NCOperationQueue.shared.cancelDownloadThumbnail(metadata: metadata)
- }
- }
- func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
-
- if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) && indexPath.row < metadatas.count {
-
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridMediaCell
- let metadata = metadatas[indexPath.row]
-
- self.cellHeigth = cell.frame.size.height
- if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
- cell.imageItem.backgroundColor = nil
- cell.imageItem.image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
- } else if(!metadata.hasPreview) {
- cell.imageItem.backgroundColor = nil
- if metadata.iconName.count > 0 {
- cell.imageItem.image = UIImage.init(named: metadata.iconName)
- } else {
- cell.imageItem.image = NCCollectionCommon.images.cellFileImage
- }
- }
- cell.date = metadata.date as Date
- if metadata.typeFile == NCBrandGlobal.shared.metadataTypeFileVideo || metadata.typeFile == NCBrandGlobal.shared.metadataTypeFileAudio {
- cell.imageStatus.image = cacheImages.cellPlayImage
- } else if metadata.livePhoto && livePhoto {
- cell.imageStatus.image = cacheImages.cellLivePhotoImage
- }
-
- 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 collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridMediaCell
- }
- }
- }
- 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)
- }
- }
- // MARK: - NC API & Algorithm
- extension NCMedia {
- @objc func reloadDataSource() {
- self.reloadDataSourceWithCompletion { (_) in }
- }
-
- @objc func reloadDataSourceWithCompletion(_ completion: @escaping (_ metadatas: [tableMetadata]) -> Void) {
-
- if appDelegate.account == nil || appDelegate.account.count == 0 { return }
-
- if account != appDelegate.account {
- self.metadatas = []
- account = appDelegate.account
- collectionView?.reloadData()
- }
-
- livePhoto = CCUtility.getLivePhoto()
-
- if let tableAccount = NCManageDatabase.shared.getAccountActive() {
- self.mediaPath = tableAccount.mediaPath
- }
- let startServerUrl = NCUtilityFileSystem.shared.getHomeServer(urlBase: appDelegate.urlBase, account: appDelegate.account) + mediaPath
-
- predicateDefault = NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND (typeFile == %@ OR typeFile == %@) AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NCBrandGlobal.shared.metadataTypeFileImage, NCBrandGlobal.shared.metadataTypeFileVideo)
-
- if filterTypeFileImage {
- predicate = NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND typeFile == %@ AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NCBrandGlobal.shared.metadataTypeFileVideo)
- } else if filterTypeFileVideo {
- predicate = NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND typeFile == %@ AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NCBrandGlobal.shared.metadataTypeFileImage)
- } else {
- predicate = predicateDefault
- }
-
- guard var predicateForGetMetadatasMedia = predicate else { return }
-
- if livePhoto {
- let predicateLivePhoto = NSPredicate(format: "!(ext == 'mov' AND livePhoto == true)")
- predicateForGetMetadatasMedia = NSCompoundPredicate.init(andPredicateWithSubpredicates:[predicateForGetMetadatasMedia, predicateLivePhoto])
- }
-
- DispatchQueue.global().async {
- self.metadatas = NCManageDatabase.shared.getMetadatasMedia(predicate: predicateForGetMetadatasMedia, sort: CCUtility.getMediaSortDate())
- DispatchQueue.main.sync {
- self.reloadDataThenPerform {
- self.updateMediaControlVisibility()
- self.mediaCommandTitle()
- completion(self.metadatas)
- }
- }
- }
- }
-
- func updateMediaControlVisibility() {
- if self.metadatas.count == 0 {
- if !self.filterTypeFileImage && !self.filterTypeFileVideo {
- 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
- }
- }
-
- private func searchOldMedia(value: Int = -30, limit: Int = 300) {
-
- if oldInProgress { return }
- else { oldInProgress = true }
- collectionView.reloadData()
- var lessDate = Date()
- if predicateDefault != nil {
- if let metadata = NCManageDatabase.shared.getMetadata(predicate: predicateDefault!, sorted: "date", ascending: true) {
- lessDate = metadata.date as Date
- }
- }
-
- var greaterDate: Date
- if value == -999 {
- greaterDate = Date.distantPast
- } else {
- greaterDate = Calendar.current.date(byAdding: .day, value:value, to: lessDate)!
- }
-
- let height = self.tabBarController?.tabBar.frame.size.height ?? 0
- NCUtility.shared.startActivityIndicator(view: self.view, bottom: height + 50)
- NCCommunication.shared.searchMedia(path: mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: CCUtility.getShowHiddenFiles(), timeout: 120) { (account, files, errorCode, errorDescription) in
-
- self.oldInProgress = false
- NCUtility.shared.stopActivityIndicator()
- self.collectionView.reloadData()
- if errorCode == 0 && account == self.appDelegate.account {
- if files.count > 0 {
- NCManageDatabase.shared.convertNCCommunicationFilesToMetadatas(files, useMetadataFolder: false, account: self.appDelegate.account) { (_, _, metadatas) in
-
- let predicateDate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
- let predicateResult = NSCompoundPredicate.init(andPredicateWithSubpredicates:[predicateDate, self.predicateDefault!])
- let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
- let metadatasChanged = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult, addCompareLivePhoto: false)
-
- if metadatasChanged.metadatasUpdate.count == 0 {
-
- self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: true)
-
- } else {
-
- self.reloadDataSource()
- }
- }
- } else {
-
- self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: 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 {
- reloadDataSource()
- }
- }
- }
-
- @objc func searchNewMediaTimer() {
- self.searchNewMedia()
- }
-
- @objc func searchNewMedia(limit: Int = 300) {
-
- 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 }
-
- newInProgress = true
- reloadDataThenPerform {
- 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!)!
- }
- }
- }
- if let cell = visibleCells.last as? NCGridMediaCell {
- if cell.date != nil {
- greaterDate = Calendar.current.date(byAdding: .second, value: -1, to: cell.date!)!
- }
- }
- }
- NCCommunication.shared.searchMedia(path: self.mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: CCUtility.getShowHiddenFiles(), timeout: 120) { (account, files, errorCode, errorDescription) in
-
- self.newInProgress = false
-
- if errorCode == 0 && account == self.appDelegate.account && files.count > 0 {
- NCManageDatabase.shared.convertNCCommunicationFilesToMetadatas(files, useMetadataFolder: false, account: account) { (_, _, metadatas) in
- let predicate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
- let predicateResult = NSCompoundPredicate.init(andPredicateWithSubpredicates:[predicate, self.predicate!])
- let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
- let updateMetadatas = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult, addCompareLivePhoto: false)
- if updateMetadatas.metadatasUpdate.count > 0 {
- self.reloadDataSource()
- }
- }
- } else if errorCode == 0 && files.count == 0 && limit > 0 {
- self.searchNewMedia(limit: 0)
- } else if errorCode == 0 && files.count == 0 && self.metadatas.count == 0 {
- self.searchOldMedia()
- }
- }
- }
- }
-
- private func downloadThumbnail() {
- guard let collectionView = self.collectionView else { return }
- DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
- for indexPath in collectionView.indexPathsForVisibleItems {
- let metadata = self.metadatas[indexPath.row]
- NCOperationQueue.shared.downloadThumbnail(metadata: metadata, urlBase: self.appDelegate.urlBase, view: self.collectionView as Any, indexPath: indexPath)
- }
- }
- }
- }
- // MARK: - ScrollView
- extension NCMedia: UIScrollViewDelegate {
-
- func scrollViewDidScroll(_ scrollView: UIScrollView) {
-
- if lastContentOffsetY == 0 || lastContentOffsetY + cellHeigth/2 <= scrollView.contentOffset.y || lastContentOffsetY - cellHeigth/2 >= scrollView.contentOffset.y {
- mediaCommandTitle()
- 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()
- }
- }
- }
-
- 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()
- }
- }
- }
- // 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!
-
- 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
- gradient.frame = bounds
- gradient.startPoint = CGPoint(x: 0, y: 0.50)
- gradient.endPoint = CGPoint(x: 0, y: 0.9)
- gradient.colors = [UIColor.black.withAlphaComponent(0.4).cgColor , UIColor.clear.cgColor]
- layer.insertSublayer(gradient, at: 0)
- moreButton.setImage(UIImage.init(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: .regular)
- 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 = 6
- 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
- }
- }
|