NCCollectionViewCommon+Menu.swift 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  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. // Copyright © 2022 Henrik Storch. All rights reserved.
  9. //
  10. // Author Philippe Weidmann
  11. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  12. // Author Henrik Storch <henrik.storch@nextcloud.com>
  13. //
  14. // This program is free software: you can redistribute it and/or modify
  15. // it under the terms of the GNU General Public License as published by
  16. // the Free Software Foundation, either version 3 of the License, or
  17. // (at your option) any later version.
  18. //
  19. // This program is distributed in the hope that it will be useful,
  20. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. // GNU General Public License for more details.
  23. //
  24. // You should have received a copy of the GNU General Public License
  25. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  26. //
  27. import UIKit
  28. import FloatingPanel
  29. import NextcloudKit
  30. import Queuer
  31. extension NCCollectionViewCommon {
  32. func toggleMenu(metadata: tableMetadata, indexPath: IndexPath, imageIcon: UIImage?) {
  33. var actions = [NCMenuAction]()
  34. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(metadata.ocId) else { return }
  35. let serverUrl = metadata.serverUrl + "/" + metadata.fileName
  36. var isOffline: Bool = false
  37. if metadata.directory, let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl)) {
  38. isOffline = directory.offline
  39. } else if let localFile = NCManageDatabase.shared.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId)) {
  40. isOffline = localFile.offline
  41. }
  42. let editors = utility.isDirectEditing(account: metadata.account, contentType: metadata.contentType)
  43. let isRichDocument = utility.isRichDocument(metadata)
  44. let applicationHandle = NCApplicationHandle()
  45. var iconHeader: UIImage!
  46. if imageIcon != nil {
  47. iconHeader = imageIcon!
  48. } else {
  49. if metadata.directory {
  50. iconHeader = NCImageCache.images.folder
  51. } else {
  52. iconHeader = NCImageCache.images.file
  53. }
  54. }
  55. actions.append(
  56. NCMenuAction(
  57. title: metadata.fileNameView,
  58. boldTitle: true,
  59. icon: iconHeader,
  60. order: 0,
  61. action: nil
  62. )
  63. )
  64. actions.append(.seperator(order: 1))
  65. //
  66. // DETAILS
  67. //
  68. if !appDelegate.disableSharesView {
  69. actions.append(
  70. NCMenuAction(
  71. title: NSLocalizedString("_details_", comment: ""),
  72. icon: utility.loadImage(named: "info.circle"),
  73. order: 10,
  74. action: { _ in
  75. NCActionCenter.shared.openShare(viewController: self, metadata: metadata, page: .activity)
  76. }
  77. )
  78. )
  79. }
  80. if metadata.lock {
  81. var lockOwnerName = metadata.lockOwnerDisplayName.isEmpty ? metadata.lockOwner : metadata.lockOwnerDisplayName
  82. var lockIcon = utility.loadUserImage(for: metadata.lockOwner, displayName: lockOwnerName, userBaseUrl: metadata)
  83. if metadata.lockOwnerType != 0 {
  84. lockOwnerName += " app"
  85. if !metadata.lockOwnerEditor.isEmpty, let appIcon = UIImage(named: metadata.lockOwnerEditor) {
  86. lockIcon = appIcon
  87. }
  88. }
  89. var lockTimeString: String?
  90. if let lockTime = metadata.lockTimeOut {
  91. if lockTime >= Date().addingTimeInterval(60),
  92. let timeInterval = (lockTime.timeIntervalSince1970 - Date().timeIntervalSince1970).format() {
  93. lockTimeString = String(format: NSLocalizedString("_time_remaining_", comment: ""), timeInterval)
  94. } else if lockTime > Date() {
  95. lockTimeString = NSLocalizedString("_less_a_minute_", comment: "")
  96. } // else: don't show negative time
  97. }
  98. if let lockTime = metadata.lockTime, lockTimeString == nil {
  99. lockTimeString = DateFormatter.localizedString(from: lockTime, dateStyle: .short, timeStyle: .short)
  100. }
  101. actions.append(
  102. NCMenuAction(
  103. title: String(format: NSLocalizedString("_locked_by_", comment: ""), lockOwnerName),
  104. details: lockTimeString,
  105. icon: lockIcon,
  106. order: 20,
  107. action: nil)
  108. )
  109. }
  110. //
  111. // VIEW IN FOLDER
  112. //
  113. if layoutKey != NCGlobal.shared.layoutViewFiles {
  114. actions.append(
  115. NCMenuAction(
  116. title: NSLocalizedString("_view_in_folder_", comment: ""),
  117. icon: utility.loadImage(named: "questionmark.folder"),
  118. order: 21,
  119. action: { _ in
  120. NCActionCenter.shared.openFileViewInFolder(serverUrl: metadata.serverUrl, fileNameBlink: metadata.fileName, fileNameOpen: nil)
  121. }
  122. )
  123. )
  124. }
  125. //
  126. // LOCK / UNLOCK
  127. //
  128. if !metadata.directory, metadata.canUnlock(as: appDelegate.userId), !NCGlobal.shared.capabilityFilesLockVersion.isEmpty {
  129. actions.append(NCMenuAction.lockUnlockFiles(shouldLock: !metadata.lock, metadatas: [metadata], order: 30))
  130. }
  131. //
  132. // SET FOLDER E2EE
  133. //
  134. if metadata.canSetDirectoryAsE2EE {
  135. actions.append(
  136. NCMenuAction(
  137. title: NSLocalizedString("_e2e_set_folder_encrypted_", comment: ""),
  138. icon: utility.loadImage(named: "lock"),
  139. order: 30,
  140. action: { _ in
  141. Task {
  142. let error = await NCNetworkingE2EEMarkFolder().markFolderE2ee(account: metadata.account, fileName: metadata.fileName, serverUrl: metadata.serverUrl, userId: metadata.userId)
  143. if error != .success {
  144. NCContentPresenter().showError(error: error)
  145. }
  146. }
  147. }
  148. )
  149. )
  150. }
  151. //
  152. // UNSET FOLDER E2EE
  153. //
  154. if metadata.canUnsetDirectoryAsE2EE {
  155. actions.append(
  156. NCMenuAction(
  157. title: NSLocalizedString("_e2e_remove_folder_encrypted_", comment: ""),
  158. icon: utility.loadImage(named: "lock"),
  159. order: 30,
  160. action: { _ in
  161. NextcloudKit.shared.markE2EEFolder(fileId: metadata.fileId, delete: true) { _, error in
  162. if error == .success {
  163. NCManageDatabase.shared.deleteE2eEncryption(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", self.appDelegate.account, serverUrl))
  164. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, serverUrlTo: nil, etag: nil, ocId: nil, fileId: nil, encrypted: false, richWorkspace: nil, account: metadata.account)
  165. NCManageDatabase.shared.setMetadataEncrypted(ocId: metadata.ocId, encrypted: false)
  166. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeStatusFolderE2EE, userInfo: ["serverUrl": metadata.serverUrl])
  167. } else {
  168. NCContentPresenter().messageNotification(NSLocalizedString("_e2e_error_", comment: ""), error: error, delay: NCGlobal.shared.dismissAfterSecond, type: .error)
  169. }
  170. }
  171. }
  172. )
  173. )
  174. }
  175. //
  176. // FAVORITE
  177. // FIXME: PROPPATCH doesn't work
  178. // https://github.com/nextcloud/files_lock/issues/68
  179. if !metadata.lock {
  180. actions.append(
  181. NCMenuAction(
  182. title: metadata.favorite ? NSLocalizedString("_remove_favorites_", comment: "") : NSLocalizedString("_add_favorites_", comment: ""),
  183. icon: utility.loadImage(named: metadata.favorite ? "star.slash.fill" : "star.fill", color: NCBrandColor.shared.yellowFavorite),
  184. order: 50,
  185. action: { _ in
  186. NCNetworking.shared.favoriteMetadata(metadata) { error in
  187. if error != .success {
  188. NCContentPresenter().showError(error: error)
  189. }
  190. }
  191. }
  192. )
  193. )
  194. }
  195. //
  196. // OFFLINE
  197. //
  198. if metadata.canSetAsAvailableOffline {
  199. actions.append(.setAvailableOfflineAction(selectedMetadatas: [metadata], isAnyOffline: isOffline, viewController: self, order: 60, completion: {
  200. self.reloadDataSource()
  201. }))
  202. }
  203. //
  204. // OPEN with external editor
  205. //
  206. if metadata.canOpenExternalEditor {
  207. var editor = ""
  208. var title = ""
  209. var icon: UIImage?
  210. if editors.contains(NCGlobal.shared.editorOnlyoffice) {
  211. editor = NCGlobal.shared.editorOnlyoffice
  212. title = NSLocalizedString("_open_in_onlyoffice_", comment: "")
  213. icon = utility.loadImage(named: "onlyoffice")
  214. } else if isRichDocument {
  215. editor = NCGlobal.shared.editorCollabora
  216. title = NSLocalizedString("_open_in_collabora_", comment: "")
  217. icon = utility.loadImage(named: "collabora")
  218. }
  219. if !editor.isEmpty {
  220. actions.append(
  221. NCMenuAction(
  222. title: title,
  223. icon: icon!,
  224. order: 70,
  225. action: { _ in
  226. NCViewer().view(viewController: self, metadata: metadata, metadatas: [metadata], imageIcon: imageIcon, editor: editor, isRichDocument: isRichDocument)
  227. }
  228. )
  229. )
  230. }
  231. }
  232. //
  233. // SHARE
  234. //
  235. if metadata.canOpenIn {
  236. actions.append(.share(selectedMetadatas: [metadata], viewController: self, order: 80))
  237. }
  238. //
  239. // SAVE LIVE PHOTO
  240. //
  241. if let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) {
  242. actions.append(
  243. NCMenuAction(
  244. title: NSLocalizedString("_livephoto_save_", comment: ""),
  245. icon: NCUtility().loadImage(named: "livephoto"),
  246. order: 100,
  247. action: { _ in
  248. NCNetworking.shared.saveLivePhotoQueue.addOperation(NCOperationSaveLivePhoto(metadata: metadata, metadataMOV: metadataMOV))
  249. }
  250. )
  251. )
  252. }
  253. //
  254. // SAVE AS SCAN
  255. //
  256. if metadata.isSavebleAsImage {
  257. actions.append(
  258. NCMenuAction(
  259. title: NSLocalizedString("_save_as_scan_", comment: ""),
  260. icon: utility.loadImage(named: "doc.viewfinder"),
  261. order: 110,
  262. action: { _ in
  263. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  264. NotificationCenter.default.post(
  265. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  266. object: nil,
  267. userInfo: ["ocId": metadata.ocId,
  268. "selector": NCGlobal.shared.selectorSaveAsScan,
  269. "error": NKError(),
  270. "account": metadata.account])
  271. } else {
  272. guard let metadata = NCManageDatabase.shared.setMetadatasSessionInWaitDownload(metadatas: [metadata],
  273. session: NextcloudKit.shared.nkCommonInstance.sessionIdentifierDownload,
  274. selector: NCGlobal.shared.selectorSaveAsScan) else { return }
  275. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: true)
  276. }
  277. }
  278. )
  279. )
  280. }
  281. //
  282. // RENAME
  283. //
  284. if metadata.isRenameable {
  285. actions.append(
  286. NCMenuAction(
  287. title: NSLocalizedString("_rename_", comment: ""),
  288. icon: utility.loadImage(named: "text.cursor"),
  289. order: 120,
  290. action: { _ in
  291. if let vcRename = UIStoryboard(name: "NCRenameFile", bundle: nil).instantiateInitialViewController() as? NCRenameFile {
  292. vcRename.metadata = metadata
  293. vcRename.imagePreview = imageIcon
  294. vcRename.indexPath = indexPath
  295. let popup = NCPopupViewController(contentController: vcRename, popupWidth: vcRename.width, popupHeight: vcRename.height)
  296. self.present(popup, animated: true)
  297. }
  298. }
  299. )
  300. )
  301. }
  302. //
  303. // COPY - MOVE
  304. //
  305. if metadata.isCopyableMovable {
  306. actions.append(.moveOrCopyAction(selectedMetadatas: [metadata], indexPath: [indexPath], order: 130))
  307. }
  308. //
  309. // MODIFY WITH QUICK LOOK
  310. //
  311. if metadata.isModifiableWithQuickLook {
  312. actions.append(
  313. NCMenuAction(
  314. title: NSLocalizedString("_modify_", comment: ""),
  315. icon: utility.loadImage(named: "pencil.tip.crop.circle"),
  316. order: 150,
  317. action: { _ in
  318. if self.utilityFileSystem.fileProviderStorageExists(metadata) {
  319. NotificationCenter.default.post(
  320. name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile),
  321. object: nil,
  322. userInfo: ["ocId": metadata.ocId,
  323. "selector": NCGlobal.shared.selectorLoadFileQuickLook,
  324. "error": NKError(),
  325. "account": metadata.account])
  326. } else {
  327. guard let metadata = NCManageDatabase.shared.setMetadatasSessionInWaitDownload(metadatas: [metadata],
  328. session: NextcloudKit.shared.nkCommonInstance.sessionIdentifierDownload,
  329. selector: NCGlobal.shared.selectorLoadFileQuickLook) else { return }
  330. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: true)
  331. }
  332. }
  333. )
  334. )
  335. }
  336. //
  337. // COLOR FOLDER
  338. //
  339. if self is NCFiles, metadata.directory {
  340. actions.append(
  341. NCMenuAction(
  342. title: NSLocalizedString("_change_color_", comment: ""),
  343. icon: utility.loadImage(named: "paintpalette"),
  344. order: 160,
  345. action: { _ in
  346. if let picker = UIStoryboard(name: "NCColorPicker", bundle: nil).instantiateInitialViewController() as? NCColorPicker {
  347. picker.metadata = metadata
  348. let popup = NCPopupViewController(contentController: picker, popupWidth: 200, popupHeight: 320)
  349. popup.backgroundAlpha = 0
  350. self.present(popup, animated: true)
  351. }
  352. }
  353. )
  354. )
  355. }
  356. //
  357. // DELETE
  358. //
  359. if metadata.isDeletable {
  360. actions.append(.deleteAction(selectedMetadatas: [metadata], indexPath: [indexPath], metadataFolder: metadataFolder, viewController: self, order: 170))
  361. }
  362. applicationHandle.addCollectionViewCommonMenu(metadata: metadata, imageIcon: imageIcon, actions: &actions)
  363. presentMenu(with: actions)
  364. }
  365. }
  366. extension TimeInterval {
  367. func format() -> String? {
  368. let formatter = DateComponentsFormatter()
  369. formatter.allowedUnits = [.day, .hour, .minute]
  370. formatter.unitsStyle = .full
  371. formatter.maximumUnitCount = 1
  372. return formatter.string(from: self)
  373. }
  374. }