NCCollectionViewCommon+Menu.swift 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. //
  2. // NCCollectionViewCommon+Menu.swift
  3. // Nextcloud
  4. //
  5. // Created by Philippe Weidmann on 24.01.20.
  6. // Copyright © 2020 Philippe Weidmann. All rights reserved.
  7. // Copyright © 2020 Marino Faggiana All rights reserved.
  8. //
  9. // Author Philippe Weidmann
  10. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  11. //
  12. // This program is free software: you can redistribute it and/or modify
  13. // it under the terms of the GNU General Public License as published by
  14. // the Free Software Foundation, either version 3 of the License, or
  15. // (at your option) any later version.
  16. //
  17. // This program is distributed in the hope that it will be useful,
  18. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. // GNU General Public License for more details.
  21. //
  22. // You should have received a copy of the GNU General Public License
  23. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. //
  25. import FloatingPanel
  26. import NCCommunication
  27. extension NCCollectionViewCommon {
  28. func toggleMenu(viewController: UIViewController, metadata: tableMetadata, image: UIImage?) {
  29. let menuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateInitialViewController() as! NCMenu
  30. var actions = [NCMenuAction]()
  31. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(metadata.ocId) else { return }
  32. let serverUrl = metadata.serverUrl+"/"+metadata.fileName
  33. let isFolderEncrypted = CCUtility.isFolderEncrypted(metadata.serverUrl, e2eEncrypted: metadata.e2eEncrypted, account: metadata.account, urlBase: metadata.urlBase)
  34. let serverUrlHome = NCUtilityFileSystem.shared.getHomeServer(urlBase: appDelegate.urlBase, account: appDelegate.account)
  35. var isOffline = false
  36. var titleDelete = NSLocalizedString("_delete_", comment: "")
  37. if NCManageDatabase.shared.isMetadataShareOrMounted(metadata: metadata, metadataFolder: metadataFolder) {
  38. titleDelete = NSLocalizedString("_leave_share_", comment: "")
  39. } else if metadata.directory {
  40. titleDelete = NSLocalizedString("_delete_folder_", comment: "")
  41. } else {
  42. titleDelete = NSLocalizedString("_delete_file_", comment: "")
  43. }
  44. if let metadataFolder = metadataFolder {
  45. let isShare = metadata.permissions.contains(NCGlobal.shared.permissionShared) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionShared)
  46. let isMounted = metadata.permissions.contains(NCGlobal.shared.permissionMounted) && !metadataFolder.permissions.contains(NCGlobal.shared.permissionMounted)
  47. if isShare || isMounted {
  48. titleDelete = NSLocalizedString("_leave_share_", comment: "")
  49. }
  50. }
  51. if metadata.directory {
  52. if let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl)) {
  53. isOffline = directory.offline
  54. }
  55. } else {
  56. if let localFile = NCManageDatabase.shared.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId)) {
  57. isOffline = localFile.offline
  58. }
  59. }
  60. var iconHeader: UIImage!
  61. if image != nil {
  62. iconHeader = image!
  63. } else {
  64. if metadata.directory {
  65. iconHeader = NCCollectionCommon.images.folder
  66. } else {
  67. iconHeader = NCCollectionCommon.images.file
  68. }
  69. }
  70. actions.append(
  71. NCMenuAction(
  72. title: metadata.fileNameView,
  73. icon: iconHeader,
  74. action: nil
  75. )
  76. )
  77. //
  78. // FAVORITE
  79. //
  80. actions.append(
  81. NCMenuAction(
  82. title: metadata.favorite ? NSLocalizedString("_remove_favorites_", comment: "") : NSLocalizedString("_add_favorites_", comment: ""),
  83. icon: UIImage(named: "favorite")!.image(color: NCBrandColor.shared.yellowFavorite, size: 50),
  84. action: { menuAction in
  85. NCNetworking.shared.favoriteMetadata(metadata, urlBase: self.appDelegate.urlBase) { (errorCode, errorDescription) in
  86. if errorCode != 0 {
  87. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  88. }
  89. }
  90. }
  91. )
  92. )
  93. //
  94. // DETAIL
  95. //
  96. if !isFolderEncrypted && !appDelegate.disableSharesView {
  97. actions.append(
  98. NCMenuAction(
  99. title: NSLocalizedString("_details_", comment: ""),
  100. icon: UIImage(named: "details")!.image(color: NCBrandColor.shared.icon, size: 50),
  101. action: { menuAction in
  102. NCNetworkingNotificationCenter.shared.openShare(ViewController: self, metadata: metadata, indexPage: 0)
  103. }
  104. )
  105. )
  106. }
  107. //
  108. // OFFLINE
  109. //
  110. if !isFolderEncrypted {
  111. actions.append(
  112. NCMenuAction(
  113. title: isOffline ? NSLocalizedString("_remove_available_offline_", comment: "") : NSLocalizedString("_set_available_offline_", comment: ""),
  114. icon: UIImage(named: "offline")!.image(color: NCBrandColor.shared.icon, size: 50),
  115. action: { menuAction in
  116. if isOffline {
  117. if metadata.directory {
  118. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, offline: false, account: self.appDelegate.account)
  119. } else {
  120. NCManageDatabase.shared.setLocalFile(ocId: metadata.ocId, offline: false)
  121. }
  122. } else {
  123. if metadata.directory {
  124. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, offline: true, account: self.appDelegate.account)
  125. NCOperationQueue.shared.synchronizationMetadata(metadata, selector: NCGlobal.shared.selectorDownloadAllFile)
  126. } else {
  127. NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorLoadOffline) { (_) in }
  128. if let metadataLivePhoto = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) {
  129. NCNetworking.shared.download(metadata: metadataLivePhoto, selector: NCGlobal.shared.selectorLoadOffline) { (_) in }
  130. }
  131. }
  132. }
  133. self.reloadDataSource()
  134. }
  135. )
  136. )
  137. }
  138. //
  139. // OPEN IN
  140. //
  141. if !metadata.directory && !NCBrandOptions.shared.disable_openin_file {
  142. actions.append(
  143. NCMenuAction(
  144. title: NSLocalizedString("_open_in_", comment: ""),
  145. icon: UIImage(named: "openFile")!.image(color: NCBrandColor.shared.icon, size: 50),
  146. action: { menuAction in
  147. NCNetworkingNotificationCenter.shared.downloadOpen(metadata: metadata, selector: NCGlobal.shared.selectorOpenIn)
  148. }
  149. )
  150. )
  151. }
  152. //
  153. // SAVE
  154. //
  155. if metadata.typeFile == NCGlobal.shared.metadataTypeFileImage || metadata.typeFile == NCGlobal.shared.metadataTypeFileVideo {
  156. var title: String = NSLocalizedString("_save_selected_files_", comment: "")
  157. var icon = UIImage(named: "saveSelectedFiles")!.image(color: NCBrandColor.shared.icon, size: 50)
  158. let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata)
  159. if metadataMOV != nil {
  160. title = NSLocalizedString("_livephoto_save_", comment: "")
  161. icon = UIImage(named: "livePhoto")!.image(color: NCBrandColor.shared.icon, size: 50)
  162. }
  163. actions.append(
  164. NCMenuAction(
  165. title: title,
  166. icon: icon,
  167. action: { menuAction in
  168. if metadataMOV != nil {
  169. NCCollectionCommon.shared.saveLivePhoto(metadata: metadata, metadataMOV: metadataMOV!)
  170. } else {
  171. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  172. NCCollectionCommon.shared.saveAlbum(metadata: metadata)
  173. } else {
  174. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbum)
  175. }
  176. }
  177. }
  178. )
  179. )
  180. }
  181. //
  182. // RENAME
  183. //
  184. if !(isFolderEncrypted && metadata.serverUrl == serverUrlHome) {
  185. actions.append(
  186. NCMenuAction(
  187. title: NSLocalizedString("_rename_", comment: ""),
  188. icon: UIImage(named: "rename")!.image(color: NCBrandColor.shared.icon, size: 50),
  189. action: { menuAction in
  190. if let vcRename = UIStoryboard(name: "NCRenameFile", bundle: nil).instantiateInitialViewController() as? NCRenameFile {
  191. vcRename.metadata = metadata
  192. vcRename.imagePreview = image
  193. let popup = NCPopupViewController(contentController: vcRename, popupWidth: 300, popupHeight: 360)
  194. if CCUtility.getDarkMode() {
  195. popup.borderEnabled = true
  196. }
  197. self.present(popup, animated: true)
  198. }
  199. }
  200. )
  201. )
  202. }
  203. //
  204. // COPY - MOVE
  205. //
  206. if !isFolderEncrypted && serverUrl != "" {
  207. actions.append(
  208. NCMenuAction(
  209. title: NSLocalizedString("_move_or_copy_", comment: ""),
  210. icon: UIImage(named: "move")!.image(color: NCBrandColor.shared.icon, size: 50),
  211. action: { menuAction in
  212. NCCollectionCommon.shared.openSelectView(items: [metadata], viewController: self)
  213. }
  214. )
  215. )
  216. }
  217. //
  218. // COPY
  219. //
  220. if !metadata.directory {
  221. actions.append(
  222. NCMenuAction(
  223. title: NSLocalizedString("_copy_file_", comment: ""),
  224. icon: UIImage(named: "copy")!.image(color: NCBrandColor.shared.icon, size: 50),
  225. action: { menuAction in
  226. self.appDelegate.pasteboardOcIds = [metadata.ocId];
  227. NCCollectionCommon.shared.copyPasteboard()
  228. }
  229. )
  230. )
  231. }
  232. //
  233. // VIEW IN FOLDER
  234. //
  235. if layoutKey == NCGlobal.shared.layoutViewRecent && appDelegate.activeFileViewInFolder == nil {
  236. actions.append(
  237. NCMenuAction(
  238. title: NSLocalizedString("_view_in_folder_", comment: ""),
  239. icon: UIImage(named: "viewInFolder")!.image(color: NCBrandColor.shared.icon, size: 50),
  240. action: { menuAction in
  241. NCCollectionCommon.shared.openFileViewInFolder(serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  242. }
  243. )
  244. )
  245. }
  246. //
  247. // DELETE
  248. //
  249. actions.append(
  250. NCMenuAction(
  251. title: titleDelete,
  252. icon: UIImage(named: "trash")!.image(color: NCBrandColor.shared.icon, size: 50),
  253. action: { menuAction in
  254. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  255. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  256. NCOperationQueue.shared.delete(metadata: metadata, onlyLocal: false)
  257. })
  258. alertController.addAction(UIAlertAction(title: NSLocalizedString("_remove_local_file_", comment: ""), style: .default) { (action:UIAlertAction) in
  259. NCOperationQueue.shared.delete(metadata: metadata, onlyLocal: true)
  260. })
  261. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (action:UIAlertAction) in })
  262. self.present(alertController, animated: true, completion:nil)
  263. }
  264. )
  265. )
  266. //
  267. // SET FOLDER E2EE
  268. //
  269. if !metadata.e2eEncrypted && metadata.directory && CCUtility.isEnd(toEndEnabled: appDelegate.account) && metadata.serverUrl == serverUrlHome {
  270. actions.append(
  271. NCMenuAction(
  272. title: NSLocalizedString("_e2e_set_folder_encrypted_", comment: ""),
  273. icon: UIImage(named: "lock")!.image(color: NCBrandColor.shared.icon, size: 50),
  274. action: { menuAction in
  275. NCCommunication.shared.markE2EEFolder(fileId: metadata.fileId, delete: false) { (account, errorCode, errorDescription) in
  276. if errorCode == 0 {
  277. NCManageDatabase.shared.deleteE2eEncryption(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", self.appDelegate.account, serverUrl))
  278. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, serverUrlTo: nil, etag: nil, ocId: nil, fileId: nil, encrypted: true, richWorkspace: nil, account: metadata.account)
  279. NCManageDatabase.shared.setMetadataEncrypted(ocId: metadata.ocId, encrypted: true)
  280. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeStatusFolderE2EE, userInfo: ["serverUrl":metadata.serverUrl])
  281. } else {
  282. NCContentPresenter.shared.messageNotification(NSLocalizedString("_e2e_error_mark_folder_", comment: ""), description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: .error, errorCode: errorCode)
  283. }
  284. }
  285. }
  286. )
  287. )
  288. }
  289. //
  290. // UNSET FOLDER E2EE
  291. //
  292. if metadata.e2eEncrypted && metadata.directory && CCUtility.isEnd(toEndEnabled: appDelegate.account) && metadata.serverUrl == serverUrlHome {
  293. actions.append(
  294. NCMenuAction(
  295. title: NSLocalizedString("_e2e_remove_folder_encrypted_", comment: ""),
  296. icon: UIImage(named: "lock")!.image(color: NCBrandColor.shared.icon, size: 50),
  297. action: { menuAction in
  298. NCCommunication.shared.markE2EEFolder(fileId: metadata.fileId, delete: true) { (account, errorCode, errorDescription) in
  299. if errorCode == 0 {
  300. NCManageDatabase.shared.deleteE2eEncryption(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", self.appDelegate.account, serverUrl))
  301. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, serverUrlTo: nil, etag: nil, ocId: nil, fileId: nil, encrypted: false, richWorkspace: nil, account: metadata.account)
  302. NCManageDatabase.shared.setMetadataEncrypted(ocId: metadata.ocId, encrypted: false)
  303. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeStatusFolderE2EE, userInfo: ["serverUrl":metadata.serverUrl])
  304. } else {
  305. NCContentPresenter.shared.messageNotification(NSLocalizedString("_e2e_error_delete_mark_folder_", comment: ""), description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: .error, errorCode: errorCode)
  306. }
  307. }
  308. }
  309. )
  310. )
  311. }
  312. menuViewController.actions = actions
  313. let menuPanelController = NCMenuPanelController()
  314. menuPanelController.parentPresenter = viewController
  315. menuPanelController.delegate = menuViewController
  316. menuPanelController.set(contentViewController: menuViewController)
  317. menuPanelController.track(scrollView: menuViewController.tableView)
  318. viewController.present(menuPanelController, animated: true, completion: nil)
  319. }
  320. func toggleMenuSelect(viewController: UIViewController, selectOcId: [String]) {
  321. let menuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateInitialViewController() as! NCMenu
  322. var actions = [NCMenuAction]()
  323. //
  324. // SELECT ALL
  325. //
  326. actions.append(
  327. NCMenuAction(
  328. title: NSLocalizedString("_select_all_", comment: ""),
  329. icon: UIImage(named: "selectFull")!.image(color: NCBrandColor.shared.icon, size: 50),
  330. action: { menuAction in
  331. self.collectionViewSelectAll()
  332. }
  333. )
  334. )
  335. //
  336. // SAVE TO PHOTO GALLERY
  337. //
  338. actions.append(
  339. NCMenuAction(
  340. title: NSLocalizedString("_save_selected_files_", comment: ""),
  341. icon: UIImage(named: "saveSelectedFiles")!.image(color: NCBrandColor.shared.icon, size: 50),
  342. action: { menuAction in
  343. for ocId in selectOcId {
  344. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  345. if metadata.typeFile == NCGlobal.shared.metadataTypeFileImage || metadata.typeFile == NCGlobal.shared.metadataTypeFileVideo {
  346. if let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) {
  347. NCCollectionCommon.shared.saveLivePhoto(metadata: metadata, metadataMOV: metadataMOV)
  348. } else {
  349. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  350. NCCollectionCommon.shared.saveAlbum(metadata: metadata)
  351. } else {
  352. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbum)
  353. }
  354. }
  355. }
  356. }
  357. }
  358. self.tapSelect(sender: self)
  359. }
  360. )
  361. )
  362. //
  363. // COPY - MOVE
  364. //
  365. actions.append(
  366. NCMenuAction(
  367. title: NSLocalizedString("_move_or_copy_selected_files_", comment: ""),
  368. icon: UIImage(named: "move")!.image(color: NCBrandColor.shared.icon, size: 50),
  369. action: { menuAction in
  370. var meradatasSelect = [tableMetadata]()
  371. for ocId in selectOcId {
  372. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  373. meradatasSelect.append(metadata)
  374. }
  375. }
  376. if meradatasSelect.count > 0 {
  377. NCCollectionCommon.shared.openSelectView(items: meradatasSelect, viewController: self)
  378. }
  379. self.tapSelect(sender: self)
  380. }
  381. )
  382. )
  383. //
  384. // COPY
  385. //
  386. actions.append(
  387. NCMenuAction(
  388. title: NSLocalizedString("_copy_file_", comment: ""),
  389. icon: UIImage(named: "copy")!.image(color: NCBrandColor.shared.icon, size: 50),
  390. action: { menuAction in
  391. self.appDelegate.pasteboardOcIds.removeAll()
  392. for ocId in selectOcId {
  393. self.appDelegate.pasteboardOcIds.append(ocId)
  394. }
  395. NCCollectionCommon.shared.copyPasteboard()
  396. self.tapSelect(sender: self)
  397. }
  398. )
  399. )
  400. //
  401. // DELETE
  402. //
  403. actions.append(
  404. NCMenuAction(
  405. title: NSLocalizedString("_delete_selected_files_", comment: ""),
  406. icon: UIImage(named: "trash")!.image(color: NCBrandColor.shared.icon, size: 50),
  407. action: { menuAction in
  408. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  409. alertController.addAction(UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  410. for ocId in selectOcId {
  411. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  412. NCOperationQueue.shared.delete(metadata: metadata, onlyLocal: false)
  413. }
  414. }
  415. self.tapSelect(sender: self)
  416. })
  417. alertController.addAction(UIAlertAction(title: NSLocalizedString("_remove_local_file_", comment: ""), style: .default) { (action:UIAlertAction) in
  418. for ocId in selectOcId {
  419. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  420. NCOperationQueue.shared.delete(metadata: metadata, onlyLocal: true)
  421. }
  422. }
  423. self.tapSelect(sender: self)
  424. })
  425. alertController.addAction(UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (action:UIAlertAction) in })
  426. self.present(alertController, animated: true, completion:nil)
  427. }
  428. )
  429. )
  430. menuViewController.actions = actions
  431. let menuPanelController = NCMenuPanelController()
  432. menuPanelController.parentPresenter = viewController
  433. menuPanelController.delegate = menuViewController
  434. menuPanelController.set(contentViewController: menuViewController)
  435. menuPanelController.track(scrollView: menuViewController.tableView)
  436. viewController.present(menuPanelController, animated: true, completion: nil)
  437. }
  438. }