123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804 |
- //
- // NCSelect.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 06/11/2018.
- // Copyright © 2018 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 UIKit
- import NCCommunication
- @objc protocol NCSelectDelegate {
- @objc func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], overwrite: Bool, copy: Bool, move: Bool)
- }
- class NCSelect: UIViewController, UIGestureRecognizerDelegate, UIAdaptivePresentationControllerDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, NCEmptyDataSetDelegate {
-
- @IBOutlet fileprivate weak var collectionView: UICollectionView!
- @IBOutlet fileprivate weak var buttonCancel: UIBarButtonItem!
-
- private var selectCommandViewSelect: NCSelectCommandView?
-
- @objc enum selectType: Int {
- case select
- case selectCreateFolder
- case copyMove
- }
- // ------ external settings ------------------------------------
- @objc var delegate: NCSelectDelegate?
- @objc var typeOfCommandView: selectType = .select
-
- @objc var includeDirectoryE2EEncryption = false
- @objc var includeImages = false
- @objc var enableSelectFile = false
- @objc var type = ""
- @objc var items: [Any] = []
-
- var titleCurrentFolder = NCBrandOptions.shared.brand
- var serverUrl = ""
- // -------------------------------------------------------------
-
- private var emptyDataSet: NCEmptyDataSet?
-
- private let keyLayout = NCGlobal.shared.layoutViewMove
- private var serverUrlPush = ""
- private var metadataTouch: tableMetadata?
- private var metadataFolder = tableMetadata()
-
- private var isEditMode = false
- private var networkInProgress = false
- private var selectOcId: [String] = []
- private var overwrite = true
-
- private var dataSource = NCDataSource()
- internal var richWorkspaceText: String?
- private var layoutForView: NCGlobal.layoutForViewType?
- private var autoUploadFileName = ""
- private var autoUploadDirectory = ""
-
- private var listLayout: NCListLayout!
- private var gridLayout: NCGridLayout!
-
- private let headerHeight: CGFloat = 50
- private var headerRichWorkspaceHeight: CGFloat = 0
- private let footerHeight: CGFloat = 100
-
- private var shares: [tableShare]?
-
- private let refreshControl = UIRefreshControl()
-
- private var backgroundImageView = UIImageView()
-
- private var activeAccount: tableAccount!
-
- // MARK: - View Life Cycle
- override func viewDidLoad() {
- super.viewDidLoad()
-
- self.navigationController?.navigationBar.prefersLargeTitles = true
- self.navigationController?.presentationController?.delegate = self
-
- view.backgroundColor = NCBrandColor.shared.systemBackground
- activeAccount = NCManageDatabase.shared.getActiveAccount()
-
- // Cell
- collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
- collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
-
- // Header
- collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
-
- // Footer
- collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
- collectionView.alwaysBounceVertical = true
- collectionView.backgroundColor = NCBrandColor.shared.systemBackground
-
- listLayout = NCListLayout()
- gridLayout = NCGridLayout()
-
- // Add Refresh Control
- collectionView.addSubview(refreshControl)
- refreshControl.tintColor = NCBrandColor.shared.brandText
- refreshControl.backgroundColor = NCBrandColor.shared.systemBackground
- refreshControl.addTarget(self, action: #selector(loadDatasource), for: .valueChanged)
-
- buttonCancel.title = NSLocalizedString("_cancel_", comment: "")
-
- // Empty
- emptyDataSet = NCEmptyDataSet.init(view: collectionView, offset: headerHeight, delegate: self)
- // Type of command view
- if typeOfCommandView == .select || typeOfCommandView == .selectCreateFolder {
- if typeOfCommandView == .select {
- selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewSelect", owner: self, options: nil)?.first as? NCSelectCommandView
- } else {
- selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewSelect+CreateFolder", owner: self, options: nil)?.first as? NCSelectCommandView
- }
- self.view.addSubview(selectCommandViewSelect!)
- selectCommandViewSelect?.selectView = self
- selectCommandViewSelect?.translatesAutoresizingMaskIntoConstraints = false
-
- selectCommandViewSelect?.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
- selectCommandViewSelect?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
- selectCommandViewSelect?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
- selectCommandViewSelect?.heightAnchor.constraint(equalToConstant: 80).isActive = true
- }
-
- if typeOfCommandView == .copyMove {
- selectCommandViewSelect = Bundle.main.loadNibNamed("NCSelectCommandViewCopyMove", owner: self, options: nil)?.first as? NCSelectCommandView
- self.view.addSubview(selectCommandViewSelect!)
- selectCommandViewSelect?.selectView = self
- selectCommandViewSelect?.translatesAutoresizingMaskIntoConstraints = false
-
- selectCommandViewSelect?.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0).isActive = true
- selectCommandViewSelect?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
- selectCommandViewSelect?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
- selectCommandViewSelect?.heightAnchor.constraint(equalToConstant: 150).isActive = true
- }
-
- NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeTheming), object: nil)
- NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataSource), object: nil)
- changeTheming()
- }
-
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
-
- self.navigationItem.title = titleCurrentFolder
-
- // set the serverUrl
- if serverUrl == "" {
- serverUrl = NCUtilityFileSystem.shared.getHomeServer(account: activeAccount.account)
- }
-
- // get auto upload folder
- autoUploadFileName = NCManageDatabase.shared.getAccountAutoUploadFileName()
- autoUploadDirectory = NCManageDatabase.shared.getAccountAutoUploadDirectory(urlBase: activeAccount.urlBase, account: activeAccount.account)
-
- layoutForView = NCUtility.shared.getLayoutForView(key: keyLayout,serverUrl: serverUrl)
- gridLayout.itemForLine = CGFloat(layoutForView?.itemForLine ?? 3)
-
- if layoutForView?.layout == NCGlobal.shared.layoutList {
- collectionView.collectionViewLayout = listLayout
- } else {
- collectionView.collectionViewLayout = gridLayout
- }
-
- loadDatasource(withLoadFolder: true)
- shares = NCManageDatabase.shared.getTableShares(account: activeAccount.account, serverUrl: serverUrl)
- }
-
- override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
- super.viewWillTransition(to: size, with: coordinator)
-
- coordinator.animate(alongsideTransition: nil) { _ in
- self.collectionView?.collectionViewLayout.invalidateLayout()
- }
- }
-
- @objc func changeTheming() {
-
- collectionView.reloadData()
- selectCommandViewSelect?.separatorView.backgroundColor = NCBrandColor.shared.separator
- }
-
- func presentationControllerDidDismiss( _ presentationController: UIPresentationController) {
- // Dismission
- }
-
- // MARK: - Empty
-
- func emptyDataSetView(_ view: NCEmptyView) {
-
- if networkInProgress {
- view.emptyImage.image = UIImage.init(named: "networkInProgress")?.image(color: .gray, size: UIScreen.main.bounds.width)
- view.emptyTitle.text = NSLocalizedString("_request_in_progress_", comment: "")
- view.emptyDescription.text = ""
- } else {
- view.emptyImage.image = UIImage.init(named: "folder")?.image(color: NCBrandColor.shared.brandElement, size: UIScreen.main.bounds.width)
- if includeImages {
- view.emptyTitle.text = NSLocalizedString("_files_no_files_", comment: "")
- } else {
- view.emptyTitle.text = NSLocalizedString("_files_no_folders_", comment: "")
- }
- view.emptyDescription.text = ""
- }
- }
-
- // MARK: ACTION
-
- @IBAction func actionCancel(_ sender: UIBarButtonItem) {
- self.dismiss(animated: true, completion: nil)
- }
-
- func selectButtonPressed(_ sender: UIButton) {
- delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, overwrite: overwrite, copy: false, move: false)
- self.dismiss(animated: true, completion: nil)
- }
-
- func copyButtonPressed(_ sender: UIButton) {
- delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, overwrite: overwrite, copy: true, move: false)
- self.dismiss(animated: true, completion: nil)
- }
-
- func moveButtonPressed(_ sender: UIButton) {
- delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadataFolder, type: type, items: items, overwrite: overwrite, copy: false, move: true)
- self.dismiss(animated: true, completion: nil)
- }
-
- func createFolderButtonPressed(_ sender: UIButton) {
-
- let alertController = UIAlertController(title: NSLocalizedString("_create_folder_", comment: ""), message:"", preferredStyle: .alert)
-
- alertController.addTextField { (textField) in
- textField.autocapitalizationType = UITextAutocapitalizationType.words
- }
-
- let actionSave = UIAlertAction(title: NSLocalizedString("_save_", comment: ""), style: .default) { (action:UIAlertAction) in
- if let fileName = alertController.textFields?.first?.text {
- self.createFolder(with: fileName)
- }
- }
-
- let actionCancel = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel) { (action:UIAlertAction) in
- print("You've pressed cancel button")
- }
-
- alertController.addAction(actionSave)
- alertController.addAction(actionCancel)
-
- self.present(alertController, animated: true, completion:nil)
- }
-
- @IBAction func valueChangedSwitchOverwrite(_ sender: UISwitch) {
- overwrite = sender.isOn
- }
-
- // MARK: TAP EVENT
-
- func tapSwitchHeader(sender: Any) {
-
- if collectionView.collectionViewLayout == gridLayout {
- // list layout
- UIView.animate(withDuration: 0.0, animations: {
- self.collectionView.collectionViewLayout.invalidateLayout()
- self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
- self.collectionView.reloadData()
- })
- })
- layoutForView?.layout = NCGlobal.shared.layoutList
- } else {
- // grid layout
- UIView.animate(withDuration: 0.0, animations: {
- self.collectionView.collectionViewLayout.invalidateLayout()
- self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
- self.collectionView.reloadData()
- })
- })
- layoutForView?.layout = NCGlobal.shared.layoutGrid
- }
- }
-
- func tapOrderHeader(sender: Any) {
-
- let sortMenu = NCSortMenu()
- sortMenu.toggleMenu(viewController: self, key: keyLayout, sortButton: sender as? UIButton, serverUrl: serverUrl)
- }
- }
- // MARK: - Collection View
- extension NCSelect: UICollectionViewDelegate {
- func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
-
- guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
-
- if isEditMode {
- if let index = selectOcId.firstIndex(of: metadata.ocId) {
- selectOcId.remove(at: index)
- } else {
- selectOcId.append(metadata.ocId)
- }
- collectionView.reloadItems(at: [indexPath])
- return
- }
-
- if metadata.directory {
-
- guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName) else { return }
- guard let viewController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateViewController(withIdentifier: "NCSelect.storyboard") as? NCSelect else { return }
- self.serverUrlPush = serverUrlPush
- self.metadataTouch = metadata
-
- viewController.delegate = delegate
- viewController.typeOfCommandView = typeOfCommandView
- viewController.includeDirectoryE2EEncryption = includeDirectoryE2EEncryption
- viewController.includeImages = includeImages
- viewController.enableSelectFile = enableSelectFile
- viewController.type = type
- viewController.overwrite = overwrite
- viewController.items = items
- viewController.titleCurrentFolder = metadataTouch!.fileNameView
- viewController.serverUrl = serverUrlPush
-
- self.navigationController?.pushViewController(viewController, animated: true)
-
- } else {
-
- delegate?.dismissSelect(serverUrl: serverUrl, metadata: metadata, type: type, items: items, overwrite: overwrite, copy: false, move: false)
- self.dismiss(animated: true, completion: nil)
- }
- }
- }
- extension NCSelect: UICollectionViewDataSource {
- func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
-
- if kind == UICollectionView.elementKindSectionHeader {
-
- let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
-
- if collectionView.collectionViewLayout == gridLayout {
- header.buttonSwitch.setImage(UIImage.init(named: "switchList")?.image(color: NCBrandColor.shared.gray, size: 25), for: .normal)
- } else {
- header.buttonSwitch.setImage(UIImage.init(named: "switchGrid")?.image(color: NCBrandColor.shared.gray, size: 25), for: .normal)
- }
-
- header.delegate = self
- header.setStatusButton(count: dataSource.metadatas.count)
- header.setTitleSorted(datasourceTitleButton: layoutForView?.titleButtonHeader ?? "")
- header.viewRichWorkspaceHeightConstraint.constant = headerRichWorkspaceHeight
- header.setRichWorkspaceText(richWorkspaceText: richWorkspaceText)
-
- return header
-
- } else {
-
- let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
-
- let info = dataSource.getFilesInformation()
- footer.setTitleLabel(directories: info.directories, files: info.files, size: info.size)
-
- return footer
- }
-
- }
-
- func numberOfSections(in collectionView: UICollectionView) -> Int {
- return 1
- }
-
- func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
- let numberOfItems = dataSource.numberOfItems()
- emptyDataSet?.numberOfItemsInSection(numberOfItems, section:section)
- return numberOfItems
- }
-
- func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
-
- guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else {
- if layoutForView?.layout == NCGlobal.shared.layoutList {
- return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
- } else {
- return collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
- }
- }
-
- var tableShare: tableShare?
- var isShare = false
- var isMounted = false
-
- // Download preview
- NCOperationQueue.shared.downloadThumbnail(metadata: metadata, urlBase: activeAccount.urlBase, view: collectionView, indexPath: indexPath)
-
- isShare = metadata.permissions.contains(NCGlobal.shared.permissionShared) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionShared)
- isMounted = metadata.permissions.contains(NCGlobal.shared.permissionMounted) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionMounted)
-
- if dataSource.metadataShare[metadata.ocId] != nil {
- tableShare = dataSource.metadataShare[metadata.ocId]
- }
-
- // LAYOUT LIST
-
- if layoutForView?.layout == NCGlobal.shared.layoutList {
-
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
- cell.delegate = self
-
- cell.objectId = metadata.ocId
- cell.indexPath = indexPath
- cell.labelTitle.text = metadata.fileNameView
- cell.labelTitle.textColor = NCBrandColor.shared.label
-
- cell.imageSelect.image = nil
- cell.imageStatus.image = nil
- cell.imageLocal.image = nil
- cell.imageFavorite.image = nil
- cell.imageShared.image = nil
- cell.imageMore.image = nil
-
- cell.imageItem.image = nil
- cell.imageItem.backgroundColor = nil
-
- cell.progressView.progress = 0.0
-
- if metadata.directory {
-
- if metadata.e2eEncrypted {
- cell.imageItem.image = NCBrandColor.cacheImages.folderEncrypted
- } else if isShare {
- cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
- } else if (tableShare != nil && tableShare?.shareType != 3) {
- cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
- } else if (tableShare != nil && tableShare?.shareType == 3) {
- cell.imageItem.image = NCBrandColor.cacheImages.folderPublic
- } else if metadata.mountType == "group" {
- cell.imageItem.image = NCBrandColor.cacheImages.folderGroup
- } else if isMounted {
- cell.imageItem.image = NCBrandColor.cacheImages.folderExternal
- } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
- cell.imageItem.image = NCBrandColor.cacheImages.folderAutomaticUpload
- } else {
- cell.imageItem.image = NCBrandColor.cacheImages.folder
- }
-
- cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date)
-
- let lockServerUrl = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!
- let tableDirectory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", activeAccount.account, lockServerUrl))
-
- // Local image: offline
- if tableDirectory != nil && tableDirectory!.offline {
- cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
- }
-
- } else {
-
- if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
- cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
- } else {
- if metadata.hasPreview {
- cell.imageItem.backgroundColor = .lightGray
- } else {
- if metadata.iconName.count > 0 {
- cell.imageItem.image = UIImage.init(named: metadata.iconName)
- } else {
- cell.imageItem.image = NCBrandColor.cacheImages.file
- }
- }
- }
-
- cell.labelInfo.text = CCUtility.dateDiff(metadata.date as Date) + " · " + CCUtility.transformedSize(metadata.size)
-
- // image local
- if dataSource.metadataOffLine.contains(metadata.ocId) {
- cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
- } else if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
- cell.imageLocal.image = NCBrandColor.cacheImages.local
- }
- }
-
- // image Favorite
- if metadata.favorite {
- cell.imageFavorite.image = NCBrandColor.cacheImages.favorite
- }
-
- // Share image
- if (isShare) {
- cell.imageShared.image = NCBrandColor.cacheImages.shared
- } else if (tableShare != nil && tableShare?.shareType == 3) {
- cell.imageShared.image = NCBrandColor.cacheImages.shareByLink
- } else if (tableShare != nil && tableShare?.shareType != 3) {
- cell.imageShared.image = NCBrandColor.cacheImages.shared
- } else {
- cell.imageShared.image = NCBrandColor.cacheImages.canShare
- }
- if metadata.ownerId.count > 0 && metadata.ownerId != activeAccount.userId {
- let fileNameUser = String(CCUtility.getDirectoryUserData()) + "/" + String(CCUtility.getStringUser(activeAccount.user, urlBase: activeAccount.urlBase)) + "-" + metadata.ownerId + ".png"
- if FileManager.default.fileExists(atPath: fileNameUser) {
- cell.imageShared.image = UIImage(contentsOfFile: fileNameUser)
- } else {
- NCCommunication.shared.downloadAvatar(userId: metadata.ownerId, fileNameLocalPath: fileNameUser, size: NCGlobal.shared.avatarSize) { (account, data, errorCode, errorMessage) in
- if errorCode == 0 && account == self.activeAccount.account {
- cell.imageShared.image = UIImage(contentsOfFile: fileNameUser)
- }
- }
- }
- }
-
- cell.imageSelect.isHidden = true
- cell.backgroundView = nil
- cell.hideButtonMore(true)
- cell.hideButtonShare(true)
- cell.selectMode(false)
-
- // Live Photo
- if metadata.livePhoto {
- cell.imageStatus.image = NCBrandColor.cacheImages.livePhoto
- }
-
- // Remove last separator
- if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 {
- cell.separator.isHidden = true
- } else {
- cell.separator.isHidden = false
- }
-
- return cell
- }
-
- // LAYOUT GRID
-
- if layoutForView?.layout == NCGlobal.shared.layoutGrid {
-
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
- cell.delegate = self
-
- cell.objectId = metadata.ocId
- cell.indexPath = indexPath
- cell.labelTitle.text = metadata.fileNameView
- cell.labelTitle.textColor = NCBrandColor.shared.label
-
- cell.imageSelect.image = nil
- cell.imageStatus.image = nil
- cell.imageLocal.image = nil
- cell.imageFavorite.image = nil
-
- cell.imageItem.image = nil
- cell.imageItem.backgroundColor = nil
-
- cell.progressView.progress = 0.0
- if metadata.directory {
-
- if metadata.e2eEncrypted {
- cell.imageItem.image = NCBrandColor.cacheImages.folderEncrypted
- } else if isShare {
- cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
- } else if (tableShare != nil && tableShare!.shareType != 3) {
- cell.imageItem.image = NCBrandColor.cacheImages.folderSharedWithMe
- } else if (tableShare != nil && tableShare!.shareType == 3) {
- cell.imageItem.image = NCBrandColor.cacheImages.folderPublic
- } else if metadata.mountType == "group" {
- cell.imageItem.image = NCBrandColor.cacheImages.folderGroup
- } else if isMounted {
- cell.imageItem.image = NCBrandColor.cacheImages.folderExternal
- } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
- cell.imageItem.image = NCBrandColor.cacheImages.folderAutomaticUpload
- } else {
- cell.imageItem.image = NCBrandColor.cacheImages.folder
- }
-
- let lockServerUrl = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!
- let tableDirectory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", activeAccount.account, lockServerUrl))
-
- // Local image: offline
- if tableDirectory != nil && tableDirectory!.offline {
- cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
- }
-
- } else {
-
- if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
- cell.imageItem.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
- } else {
- if metadata.hasPreview {
- cell.imageItem.backgroundColor = .lightGray
- } else {
- if metadata.iconName.count > 0 {
- cell.imageItem.image = UIImage.init(named: metadata.iconName)
- } else {
- cell.imageItem.image = NCBrandColor.cacheImages.file
- }
- }
- }
-
- // image Local
- if dataSource.metadataOffLine.contains(metadata.ocId) {
- cell.imageLocal.image = NCBrandColor.cacheImages.offlineFlag
- } else if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
- cell.imageLocal.image = NCBrandColor.cacheImages.local
- }
- }
-
- // image Favorite
- if metadata.favorite {
- cell.imageFavorite.image = NCBrandColor.cacheImages.favorite
- }
-
- cell.imageSelect.isHidden = true
- cell.backgroundView = nil
- cell.hideButtonMore(true)
- // Live Photo
- if metadata.livePhoto {
- cell.imageStatus.image = NCBrandColor.cacheImages.livePhoto
- }
-
- return cell
- }
-
- return collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
- }
- }
- extension NCSelect: UICollectionViewDelegateFlowLayout {
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
-
- headerRichWorkspaceHeight = 0
-
- if let richWorkspaceText = richWorkspaceText {
- let trimmed = richWorkspaceText.trimmingCharacters(in: .whitespaces)
- if trimmed.count > 0 {
- headerRichWorkspaceHeight = UIScreen.main.bounds.size.height / 4
- }
- }
-
- return CGSize(width: collectionView.frame.width, height: headerHeight + headerRichWorkspaceHeight)
- }
-
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
- return CGSize(width: collectionView.frame.width, height: footerHeight)
- }
- }
- // MARK: - NC API & Algorithm
- extension NCSelect {
- @objc func reloadDataSource() {
- loadDatasource(withLoadFolder: false)
- }
-
- @objc func loadDatasource(withLoadFolder: Bool) {
-
- var predicate: NSPredicate?
-
- layoutForView = NCUtility.shared.getLayoutForView(key: keyLayout, serverUrl: serverUrl)
-
- if includeDirectoryE2EEncryption {
-
- if includeImages {
- predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND (directory == true OR typeFile == 'image')", activeAccount.account, serverUrl)
- } else {
- predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND directory == true", activeAccount.account, serverUrl)
- }
-
- } else {
-
- if includeImages {
- predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND (directory == true OR typeFile == 'image')", activeAccount.account, serverUrl)
- } else {
- predicate = NSPredicate(format: "account == %@ AND serverUrl == %@ AND e2eEncrypted == false AND directory == true", activeAccount.account, serverUrl)
- }
- }
-
- let metadatasSource = NCManageDatabase.shared.getMetadatas(predicate: predicate!)
- self.dataSource = NCDataSource.init(metadatasSource: metadatasSource, sort: layoutForView?.sort, ascending: layoutForView?.ascending, directoryOnTop: layoutForView?.directoryOnTop, favoriteOnTop: true, filterLivePhoto: true)
-
- if withLoadFolder {
- loadFolder()
- } else {
- self.refreshControl.endRefreshing()
- }
-
- let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", activeAccount.account,serverUrl))
- richWorkspaceText = directory?.richWorkspace
-
- collectionView.reloadData()
- }
-
- func createFolder(with fileName: String) {
-
- NCNetworking.shared.createFolder(fileName: fileName, serverUrl: serverUrl, account: activeAccount.account, urlBase: activeAccount.urlBase) { (errorCode, errorDescription) in
-
- if errorCode == 0 {
- self.loadDatasource(withLoadFolder: true)
- } else {
- NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
- }
- }
- }
-
- func loadFolder() {
-
- networkInProgress = true
- collectionView.reloadData()
-
- NCNetworking.shared.readFolder(serverUrl: serverUrl, account: activeAccount.account) { (_, _, _, _, _, _, errorCode, errorDescription) in
- if errorCode != 0 {
- NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
- }
- self.networkInProgress = false
- self.loadDatasource(withLoadFolder: false)
- }
- }
- }
- class NCSelectCommandView: UIView {
- @IBOutlet weak var separatorView: UIView!
- @IBOutlet weak var createFolderButton: UIButton?
- @IBOutlet weak var selectButton: UIButton?
- @IBOutlet weak var copyButton: UIButton?
- @IBOutlet weak var moveButton: UIButton?
- @IBOutlet weak var overwriteSwitch: UISwitch?
- @IBOutlet weak var overwriteLabel: UILabel?
- @IBOutlet weak var separatorHeightConstraint: NSLayoutConstraint!
- var selectView: NCSelect?
- private let gradient: CAGradientLayer = CAGradientLayer()
-
- override func awakeFromNib() {
-
- separatorHeightConstraint.constant = 0.5
- separatorView.backgroundColor = NCBrandColor.shared.separator
-
- overwriteLabel?.text = NSLocalizedString("_overwrite_", comment: "")
-
- selectButton?.layer.cornerRadius = 15
- selectButton?.layer.masksToBounds = true
- selectButton?.setTitle(NSLocalizedString("_select_", comment: ""), for: .normal)
-
- createFolderButton?.layer.cornerRadius = 15
- createFolderButton?.layer.masksToBounds = true
- createFolderButton?.setTitle(NSLocalizedString("_create_folder_", comment: ""), for: .normal)
-
- copyButton?.layer.cornerRadius = 15
- copyButton?.layer.masksToBounds = true
- copyButton?.setTitle(NSLocalizedString("_copy_", comment: ""), for: .normal)
-
- moveButton?.layer.cornerRadius = 15
- moveButton?.layer.masksToBounds = true
- moveButton?.setTitle(NSLocalizedString("_move_", comment: ""), for: .normal)
- }
-
- @IBAction func createFolderButtonPressed(_ sender: UIButton) {
- selectView?.createFolderButtonPressed(sender)
- }
-
- @IBAction func selectButtonPressed(_ sender: UIButton) {
- selectView?.selectButtonPressed(sender)
- }
-
- @IBAction func copyButtonPressed(_ sender: UIButton) {
- selectView?.copyButtonPressed(sender)
- }
-
- @IBAction func moveButtonPressed(_ sender: UIButton) {
- selectView?.moveButtonPressed(sender)
- }
-
- @IBAction func valueChangedSwitchOverwrite(_ sender: UISwitch) {
- selectView?.valueChangedSwitchOverwrite(sender)
- }
- }
|