NCShare.swift 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. //
  2. // NCShare.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/07/2019.
  6. // Copyright © 2019 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. // Author Henrik Storch <henrik.storch@nextcloud.com>
  10. //
  11. // This program is free software: you can redistribute it and/or modify
  12. // it under the terms of the GNU General Public License as published by
  13. // the Free Software Foundation, either version 3 of the License, or
  14. // (at your option) any later version.
  15. //
  16. // This program is distributed in the hope that it will be useful,
  17. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. // GNU General Public License for more details.
  20. //
  21. // You should have received a copy of the GNU General Public License
  22. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. //
  24. import UIKit
  25. import Parchment
  26. import DropDown
  27. import NCCommunication
  28. import MarqueeLabel
  29. class NCShare: UIViewController, UIGestureRecognizerDelegate, NCShareNetworkingDelegate {
  30. @IBOutlet weak var viewContainerConstraint: NSLayoutConstraint!
  31. @IBOutlet weak var sharedWithYouByView: UIView!
  32. @IBOutlet weak var sharedWithYouByImage: UIImageView!
  33. @IBOutlet weak var sharedWithYouByLabel: UILabel!
  34. @IBOutlet weak var sharedWithYouByNoteImage: UIImageView!
  35. @IBOutlet weak var sharedWithYouByNote: MarqueeLabel!
  36. @IBOutlet weak var searchFieldTopConstraint: NSLayoutConstraint!
  37. @IBOutlet weak var searchField: UITextField!
  38. @IBOutlet weak var shareLinkImage: UIImageView!
  39. @IBOutlet weak var shareLinkLabel: UILabel!
  40. @IBOutlet weak var shareInternalLinkImage: UIImageView!
  41. @IBOutlet weak var shareInternalLinkLabel: UILabel!
  42. @IBOutlet weak var shareInternalLinkDescription: UILabel!
  43. @IBOutlet weak var buttonInternalCopy: UIButton!
  44. @IBOutlet weak var buttonCopy: UIButton!
  45. @IBOutlet weak var buttonMenu: UIButton!
  46. @IBOutlet weak var tableView: UITableView!
  47. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  48. public var metadata: tableMetadata?
  49. public var sharingEnabled = true
  50. public var height: CGFloat = 0
  51. private var shareLinkMenuView: NCShareLinkMenuView?
  52. private var shareUserMenuView: NCShareUserMenuView?
  53. private var shareMenuViewWindow: UIView?
  54. private var dropDown = DropDown()
  55. private var networking: NCShareNetworking?
  56. // MARK: - View Life Cycle
  57. override func viewDidLoad() {
  58. super.viewDidLoad()
  59. view.backgroundColor = NCBrandColor.shared.systemBackground
  60. viewContainerConstraint.constant = height
  61. searchFieldTopConstraint.constant = 10
  62. searchField.placeholder = NSLocalizedString("_shareLinksearch_placeholder_", comment: "")
  63. shareLinkImage.image = NCShareCommon.shared.createLinkAvatar(imageName: "sharebylink", colorCircle: NCBrandColor.shared.brandElement)
  64. shareLinkLabel.text = NSLocalizedString("_share_link_", comment: "")
  65. shareLinkLabel.textColor = NCBrandColor.shared.label
  66. buttonCopy.setImage(UIImage.init(named: "shareCopy")?.image(color: .gray, size: 50), for: .normal)
  67. shareInternalLinkImage.image = NCShareCommon.shared.createLinkAvatar(imageName: "shareInternalLink", colorCircle: .gray)
  68. shareInternalLinkLabel.text = NSLocalizedString("_share_internal_link_", comment: "")
  69. shareInternalLinkDescription.text = NSLocalizedString("_share_internal_link_des_", comment: "")
  70. buttonInternalCopy.setImage(UIImage.init(named: "shareCopy")?.image(color: .gray, size: 50), for: .normal)
  71. tableView.dataSource = self
  72. tableView.delegate = self
  73. tableView.allowsSelection = false
  74. tableView.backgroundColor = NCBrandColor.shared.systemBackground
  75. tableView.register(UINib.init(nibName: "NCShareLinkCell", bundle: nil), forCellReuseIdentifier: "cellLink")
  76. tableView.register(UINib.init(nibName: "NCShareUserCell", bundle: nil), forCellReuseIdentifier: "cellUser")
  77. NotificationCenter.default.addObserver(self, selector: #selector(reloadData), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataNCShare), object: nil)
  78. // Shared with you by ...
  79. if metadata!.ownerId != "" && metadata!.ownerId != self.appDelegate.userId {
  80. searchFieldTopConstraint.constant = 65
  81. sharedWithYouByView.isHidden = false
  82. sharedWithYouByLabel.text = NSLocalizedString("_shared_with_you_by_", comment: "") + " " + metadata!.ownerDisplayName
  83. sharedWithYouByImage.image = UIImage(named: "avatar")?.imageColor(NCBrandColor.shared.label)
  84. let shareAction = UITapGestureRecognizer(target: self, action: #selector(openShareProfile))
  85. sharedWithYouByView.addGestureRecognizer(shareAction)
  86. if metadata?.note.count ?? 0 > 0 {
  87. searchFieldTopConstraint.constant = 95
  88. sharedWithYouByNoteImage.isHidden = false
  89. sharedWithYouByNoteImage.image = NCUtility.shared.loadImage(named: "note.text", color: .gray)
  90. sharedWithYouByNote.isHidden = false
  91. sharedWithYouByNote.text = metadata?.note
  92. sharedWithYouByNote.textColor = NCBrandColor.shared.label
  93. sharedWithYouByNote.trailingBuffer = sharedWithYouByNote.frame.width
  94. } else {
  95. sharedWithYouByNoteImage.isHidden = true
  96. sharedWithYouByNote.isHidden = true
  97. }
  98. let fileName = String(CCUtility.getUserUrlBase(appDelegate.user, urlBase: appDelegate.urlBase)) + "-" + metadata!.ownerId + ".png"
  99. if let image = NCManageDatabase.shared.getImageAvatarLoaded(fileName: fileName) {
  100. sharedWithYouByImage.image = image
  101. } else {
  102. let fileNameLocalPath = String(CCUtility.getDirectoryUserData()) + "/" + fileName
  103. let etag = NCManageDatabase.shared.getTableAvatar(fileName: fileName)?.etag
  104. NCCommunication.shared.downloadAvatar(user: metadata!.ownerId, fileNameLocalPath: fileNameLocalPath, sizeImage: NCGlobal.shared.avatarSize, avatarSizeRounded: NCGlobal.shared.avatarSizeRounded, etag: etag) { (account, imageAvatar, imageOriginal, etag, errorCode, errorMessage) in
  105. if errorCode == 0, let etag = etag, let imageAvatar = imageAvatar {
  106. NCManageDatabase.shared.addAvatar(fileName: fileName, etag: etag)
  107. self.sharedWithYouByImage.image = imageAvatar
  108. } else if errorCode == NCGlobal.shared.errorNotModified, let imageAvatar = NCManageDatabase.shared.setAvatarLoaded(fileName: fileName) {
  109. self.sharedWithYouByImage.image = imageAvatar
  110. }
  111. }
  112. }
  113. }
  114. reloadData()
  115. networking = NCShareNetworking.init(metadata: metadata!, urlBase: appDelegate.urlBase, view: self.view, delegate: self)
  116. if sharingEnabled {
  117. networking?.readShare()
  118. }
  119. // changeTheming
  120. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeTheming), object: nil)
  121. NotificationCenter.default.addObserver(self, selector: #selector(changePermissions(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterShareChangePermissions), object: nil)
  122. changeTheming()
  123. }
  124. // MARK: - Notification Center
  125. @objc func openShareProfile() {
  126. guard let metadata = metadata else { return }
  127. self.showProfileMenu(userId: metadata.ownerId)
  128. }
  129. @objc func changeTheming() {
  130. tableView.reloadData()
  131. }
  132. @objc func changePermissions(_ notification: NSNotification) {
  133. if let userInfo = notification.userInfo as NSDictionary? {
  134. if let idShare = userInfo["idShare"] as? Int, let permissions = userInfo["permissions"] as? Int, let hideDownload = userInfo["hideDownload"] as? Bool {
  135. networking?.updateShare(idShare: idShare, password: nil, permissions: permissions, note: nil, label: nil, expirationDate: nil, hideDownload: hideDownload)
  136. }
  137. }
  138. }
  139. // MARK: -
  140. @objc func reloadData() {
  141. let shares = NCManageDatabase.shared.getTableShares(metadata: metadata!)
  142. if shares.firstShareLink == nil {
  143. buttonMenu.setImage(UIImage.init(named: "shareAdd")?.image(color: .gray, size: 50), for: .normal)
  144. buttonCopy.isHidden = true
  145. } else {
  146. buttonMenu.setImage(UIImage.init(named: "shareMenu")?.image(color: .gray, size: 50), for: .normal)
  147. buttonCopy.isHidden = false
  148. shareLinkLabel.text = NSLocalizedString("_share_link_", comment: "")
  149. if shares.firstShareLink?.label.count ?? 0 > 0 {
  150. if let shareLinkLabel = shareLinkLabel {
  151. if let label = shares.firstShareLink?.label {
  152. shareLinkLabel.text = NSLocalizedString("_share_link_", comment: "") + " (" + label + ")"
  153. }
  154. }
  155. }
  156. }
  157. tableView.reloadData()
  158. }
  159. // MARK: - IBAction
  160. @IBAction func searchFieldDidEndOnExit(textField: UITextField) {
  161. guard let searchString = textField.text else { return }
  162. networking?.getSharees(searchString: searchString)
  163. }
  164. @IBAction func touchUpInsideButtonCopy(_ sender: Any) {
  165. guard let metadata = self.metadata else { return }
  166. let shares = NCManageDatabase.shared.getTableShares(metadata: metadata)
  167. tapCopy(with: shares.firstShareLink, sender: sender)
  168. }
  169. @IBAction func touchUpInsideButtonCopyInernalLink(_ sender: Any) {
  170. guard let metadata = self.metadata else { return }
  171. let serverUrlFileName = metadata.serverUrl + "/" + metadata.fileName
  172. NCNetworking.shared.readFile(serverUrlFileName: serverUrlFileName, account: metadata.account) { (account, metadata, errorCode, errorDescription) in
  173. if errorCode == 0 && metadata != nil {
  174. let internalLink = self.appDelegate.urlBase + "/index.php/f/" + metadata!.fileId
  175. NCShareCommon.shared.copyLink(link: internalLink, viewController: self, sender: sender)
  176. } else {
  177. NCContentPresenter.shared.messageNotification("_share_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  178. }
  179. }
  180. }
  181. @IBAction func touchUpInsideButtonMenu(_ sender: Any) {
  182. guard let metadata = self.metadata else { return }
  183. let isFilesSharingPublicPasswordEnforced = NCManageDatabase.shared.getCapabilitiesServerBool(account: metadata.account, elements: NCElementsJSON.shared.capabilitiesFileSharingPubPasswdEnforced, exists: false)
  184. let shares = NCManageDatabase.shared.getTableShares(metadata: metadata)
  185. if isFilesSharingPublicPasswordEnforced && shares.firstShareLink == nil {
  186. let alertController = UIAlertController(title: NSLocalizedString("_enforce_password_protection_", comment: ""), message: "", preferredStyle: .alert)
  187. alertController.addTextField { (textField) in
  188. textField.isSecureTextEntry = true
  189. }
  190. alertController.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .default) { (action:UIAlertAction) in })
  191. let okAction = UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default) { (action:UIAlertAction) in
  192. let password = alertController.textFields?.first?.text
  193. self.networking?.createShareLink(password: password ?? "")
  194. }
  195. alertController.addAction(okAction)
  196. self.present(alertController, animated: true, completion:nil)
  197. } else if shares.firstShareLink == nil {
  198. networking?.createShareLink(password: "")
  199. } else {
  200. tapMenu(with: shares.firstShareLink!, sender: sender)
  201. }
  202. }
  203. @objc func tapLinkMenuViewWindow(gesture: UITapGestureRecognizer) {
  204. shareLinkMenuView?.unLoad()
  205. shareLinkMenuView = nil
  206. shareUserMenuView?.unLoad()
  207. shareUserMenuView = nil
  208. }
  209. func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
  210. return gestureRecognizer.view == touch.view
  211. }
  212. // MARK: - NCShareNetworkingDelegate
  213. func readShareCompleted() {
  214. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataNCShare)
  215. }
  216. func shareCompleted() {
  217. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataNCShare)
  218. }
  219. func unShareCompleted() { }
  220. func updateShareWithError(idShare: Int) {
  221. self.reloadData()
  222. }
  223. func getSharees(sharees: [NCCommunicationSharee]?) {
  224. guard let sharees = sharees else { return }
  225. dropDown = DropDown()
  226. let appearance = DropDown.appearance()
  227. appearance.backgroundColor = NCBrandColor.shared.systemBackground
  228. appearance.cornerRadius = 10
  229. appearance.shadowColor = UIColor(white: 0.5, alpha: 1)
  230. appearance.shadowOpacity = 0.9
  231. appearance.shadowRadius = 25
  232. appearance.animationduration = 0.25
  233. appearance.textColor = .darkGray
  234. appearance.setupMaskedCorners([.layerMaxXMaxYCorner, .layerMinXMaxYCorner])
  235. for sharee in sharees {
  236. var label = sharee.label
  237. if sharee.shareType == NCShareCommon.shared.SHARE_TYPE_CIRCLE {
  238. label = label + " (" + sharee.circleInfo + ", " + sharee.circleOwner + ")"
  239. }
  240. dropDown.dataSource.append(label)
  241. }
  242. dropDown.anchorView = searchField
  243. dropDown.bottomOffset = CGPoint(x: 0, y: searchField.bounds.height)
  244. dropDown.width = searchField.bounds.width
  245. dropDown.direction = .bottom
  246. dropDown.cellNib = UINib(nibName: "NCShareUserDropDownCell", bundle: nil)
  247. dropDown.customCellConfiguration = { (index: Index, item: String, cell: DropDownCell) -> Void in
  248. guard let cell = cell as? NCShareUserDropDownCell else { return }
  249. let sharee = sharees[index]
  250. cell.imageItem.image = NCShareCommon.shared.getImageShareType(shareType: sharee.shareType)
  251. cell.imageShareeType.image = NCShareCommon.shared.getImageShareType(shareType: sharee.shareType)
  252. let status = NCUtility.shared.getUserStatus(userIcon: sharee.userIcon, userStatus: sharee.userStatus, userMessage: sharee.userMessage)
  253. cell.imageStatus.image = status.onlineStatus
  254. cell.status.text = status.statusMessage
  255. if cell.status.text?.count ?? 0 > 0 {
  256. cell.centerTitle.constant = -5
  257. } else {
  258. cell.centerTitle.constant = 0
  259. }
  260. let fileName = String(CCUtility.getUserUrlBase(self.appDelegate.user, urlBase: self.appDelegate.urlBase)) + "-" + sharee.shareWith + ".png"
  261. if let image = NCManageDatabase.shared.getImageAvatarLoaded(fileName: fileName) {
  262. cell.imageItem.image = image
  263. } else {
  264. let fileNameLocalPath = String(CCUtility.getDirectoryUserData()) + "/" + fileName
  265. let etag = NCManageDatabase.shared.getTableAvatar(fileName: fileName)?.etag
  266. NCCommunication.shared.downloadAvatar(user: sharee.shareWith, fileNameLocalPath: fileNameLocalPath, sizeImage: NCGlobal.shared.avatarSize, avatarSizeRounded: NCGlobal.shared.avatarSizeRounded, etag: etag) { (account, imageAvatar, imageOriginal, etag, errorCode, errorMessage) in
  267. if errorCode == 0, let etag = etag, let imageAvatar = imageAvatar {
  268. NCManageDatabase.shared.addAvatar(fileName: fileName, etag: etag)
  269. cell.imageItem.image = imageAvatar
  270. } else if errorCode == NCGlobal.shared.errorNotModified, let imageAvatar = NCManageDatabase.shared.setAvatarLoaded(fileName: fileName) {
  271. cell.imageItem.image = imageAvatar
  272. }
  273. }
  274. }
  275. }
  276. dropDown.selectionAction = { [weak self] (index, item) in
  277. let sharee = sharees[index]
  278. self!.networking?.createShare(shareWith: sharee.shareWith, shareType: sharee.shareType, metadata: self!.metadata!)
  279. }
  280. dropDown.show()
  281. }
  282. }
  283. // MARK: - UITableViewDelegate
  284. extension NCShare: UITableViewDelegate {
  285. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  286. return 70
  287. }
  288. }
  289. // MARK: - UITableViewDataSource
  290. extension NCShare: UITableViewDataSource {
  291. func numberOfSections(in tableView: UITableView) -> Int {
  292. return 1
  293. }
  294. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  295. var numOfRows = 0
  296. let shares = NCManageDatabase.shared.getTableShares(metadata: metadata!)
  297. if shares.share != nil {
  298. numOfRows = shares.share!.count
  299. }
  300. return numOfRows
  301. }
  302. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  303. let shares = NCManageDatabase.shared.getTableShares(metadata: metadata!)
  304. let tableShare = shares.share![indexPath.row]
  305. // LINK
  306. if tableShare.shareType == 3 {
  307. if let cell = tableView.dequeueReusableCell(withIdentifier: "cellLink", for: indexPath) as? NCShareLinkCell {
  308. cell.tableShare = tableShare
  309. cell.delegate = self
  310. cell.labelTitle.text = NSLocalizedString("_share_link_", comment: "")
  311. if tableShare.label.count > 0 {
  312. cell.labelTitle.text = NSLocalizedString("_share_link_", comment: "") + " (" + tableShare.label + ")"
  313. }
  314. cell.labelTitle.textColor = NCBrandColor.shared.label
  315. return cell
  316. }
  317. } else {
  318. // USER
  319. if let cell = tableView.dequeueReusableCell(withIdentifier: "cellUser", for: indexPath) as? NCShareUserCell {
  320. cell.tableShare = tableShare
  321. cell.delegate = self
  322. cell.labelTitle.text = tableShare.shareWithDisplayname
  323. cell.labelTitle.textColor = NCBrandColor.shared.label
  324. cell.isUserInteractionEnabled = true
  325. cell.labelQuickStatus.isHidden = false
  326. cell.imageDownArrow.isHidden = false
  327. cell.buttonMenu.isHidden = false
  328. cell.imageItem.image = NCShareCommon.shared.getImageShareType(shareType: tableShare.shareType)
  329. let status = NCUtility.shared.getUserStatus(userIcon: tableShare.userIcon, userStatus: tableShare.userStatus, userMessage: tableShare.userMessage)
  330. cell.imageStatus.image = status.onlineStatus
  331. cell.status.text = status.statusMessage
  332. let fileName = String(CCUtility.getUserUrlBase(appDelegate.user, urlBase: appDelegate.urlBase)) + "-" + tableShare.shareWith + ".png"
  333. NCOperationQueue.shared.downloadAvatar(user: tableShare.shareWith, fileName: fileName, placeholder: UIImage(named: "avatar"), cell: cell, view: tableView)
  334. // If the initiator or the recipient is not the current user, show the list of sharees without any options to edit it.
  335. if tableShare.uidOwner != self.appDelegate.userId && tableShare.uidFileOwner != self.appDelegate.userId {
  336. cell.isUserInteractionEnabled = false
  337. cell.labelQuickStatus.isHidden = true
  338. cell.imageDownArrow.isHidden = true
  339. cell.buttonMenu.isHidden = true
  340. }
  341. cell.btnQuickStatus.setTitle("", for: .normal)
  342. cell.btnQuickStatus.contentHorizontalAlignment = .left
  343. if tableShare.permissions == NCGlobal.shared.permissionCreateShare {
  344. cell.labelQuickStatus.text = NSLocalizedString("_share_file_drop_", comment: "")
  345. } else {
  346. // Read Only
  347. if CCUtility.isAnyPermission(toEdit: tableShare.permissions) {
  348. cell.labelQuickStatus.text = NSLocalizedString("_share_editing_", comment: "")
  349. } else {
  350. cell.labelQuickStatus.text = NSLocalizedString("_share_read_only_", comment: "")
  351. }
  352. }
  353. return cell
  354. }
  355. }
  356. return UITableViewCell()
  357. }
  358. }
  359. // MARK: - NCCell Delegates
  360. extension NCShare: NCShareLinkCellDelegate, NCShareUserCellDelegate {
  361. func tapCopy(with tableShare: tableShare?, sender: Any) {
  362. if let link = tableShare?.url {
  363. NCShareCommon.shared.copyLink(link: link, viewController: self, sender: sender)
  364. }
  365. }
  366. func tapMenu(with tableShare: tableShare?, sender: Any) {
  367. guard let tableShare = tableShare else { return }
  368. if tableShare.shareType == 3 {
  369. let views = NCShareCommon.shared.openViewMenuShareLink(shareViewController: self, tableShare: tableShare, metadata: metadata!)
  370. shareLinkMenuView = views.shareLinkMenuView
  371. shareMenuViewWindow = views.viewWindow
  372. let tap = UITapGestureRecognizer(target: self, action: #selector(tapLinkMenuViewWindow))
  373. tap.delegate = self
  374. shareMenuViewWindow?.addGestureRecognizer(tap)
  375. } else {
  376. let views = NCShareCommon.shared.openViewMenuUser(shareViewController: self, tableShare: tableShare, metadata: metadata!)
  377. shareUserMenuView = views.shareUserMenuView
  378. shareMenuViewWindow = views.viewWindow
  379. let tap = UITapGestureRecognizer(target: self, action: #selector(tapLinkMenuViewWindow))
  380. tap.delegate = self
  381. shareMenuViewWindow?.addGestureRecognizer(tap)
  382. }
  383. }
  384. func showProfile(with tableShare: tableShare?, sender: Any) {
  385. guard let tableShare = tableShare else { return }
  386. showProfileMenu(userId: tableShare.shareWith)
  387. }
  388. func quickStatus(with tableShare: tableShare?, sender: Any) {
  389. guard let tableShare = tableShare else { return }
  390. if tableShare.shareType != NCGlobal.shared.permissionDefaultFileRemoteShareNoSupportShareOption {
  391. let quickStatusMenu = NCShareQuickStatusMenu()
  392. quickStatusMenu.toggleMenu(viewController: self, directory: metadata!.directory, tableShare: tableShare)
  393. }
  394. }
  395. }