NCCollectionViewCommon+Menu.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  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, 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. let serverUrlHome = NCUtilityFileSystem.shared.getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId)
  37. let isOffline: Bool
  38. if metadata.directory, let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl)) {
  39. isOffline = directory.offline
  40. } else if let localFile = NCManageDatabase.shared.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId)) {
  41. isOffline = localFile.offline
  42. } else { isOffline = false }
  43. let editors = NCUtility.shared.isDirectEditing(account: metadata.account, contentType: metadata.contentType)
  44. let isRichDocument = NCUtility.shared.isRichDocument(metadata)
  45. let applicationHandle = NCApplicationHandle()
  46. var iconHeader: UIImage!
  47. if imageIcon != nil {
  48. iconHeader = imageIcon!
  49. } else {
  50. if metadata.directory {
  51. iconHeader = NCBrandColor.cacheImages.folder
  52. } else {
  53. iconHeader = NCBrandColor.cacheImages.file
  54. }
  55. }
  56. actions.append(
  57. NCMenuAction(
  58. title: metadata.fileNameView,
  59. icon: iconHeader,
  60. order: 0,
  61. action: nil
  62. )
  63. )
  64. //
  65. // DETAILS
  66. //
  67. if !appDelegate.disableSharesView {
  68. actions.append(
  69. NCMenuAction(
  70. title: NSLocalizedString("_details_", comment: ""),
  71. icon: NCUtility.shared.loadImage(named: "info"),
  72. order: 10,
  73. action: { _ in
  74. NCActionCenter.shared.openShare(viewController: self, metadata: metadata, indexPage: .activity)
  75. }
  76. )
  77. )
  78. }
  79. if metadata.lock {
  80. var lockOwnerName = metadata.lockOwnerDisplayName.isEmpty ? metadata.lockOwner : metadata.lockOwnerDisplayName
  81. var lockIcon = NCUtility.shared.loadUserImage(for: metadata.lockOwner, displayName: lockOwnerName, userBaseUrl: metadata)
  82. if metadata.lockOwnerType != 0 {
  83. lockOwnerName += " app"
  84. if !metadata.lockOwnerEditor.isEmpty, let appIcon = UIImage(named: metadata.lockOwnerEditor) {
  85. lockIcon = appIcon
  86. }
  87. }
  88. var lockTimeString: String?
  89. if let lockTime = metadata.lockTimeOut {
  90. if lockTime >= Date().addingTimeInterval(60),
  91. let timeInterval = (lockTime.timeIntervalSince1970 - Date().timeIntervalSince1970).format() {
  92. lockTimeString = String(format: NSLocalizedString("_time_remaining_", comment: ""), timeInterval)
  93. } else if lockTime > Date() {
  94. lockTimeString = NSLocalizedString("_less_a_minute_", comment: "")
  95. } // else: don't show negative time
  96. }
  97. if let lockTime = metadata.lockTime, lockTimeString == nil {
  98. lockTimeString = DateFormatter.localizedString(from: lockTime, dateStyle: .short, timeStyle: .short)
  99. }
  100. actions.append(
  101. NCMenuAction(
  102. title: String(format: NSLocalizedString("_locked_by_", comment: ""), lockOwnerName),
  103. details: lockTimeString,
  104. icon: lockIcon,
  105. order: 20,
  106. action: nil)
  107. )
  108. }
  109. //
  110. // LOCK / UNLOCK
  111. //
  112. let hasLockCapability = NCManageDatabase.shared.getCapabilitiesServerInt(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesFilesLockVersion) >= 1
  113. if !metadata.directory, metadata.canUnlock(as: appDelegate.userId), hasLockCapability {
  114. actions.append(NCMenuAction.lockUnlockFiles(shouldLock: !metadata.lock, metadatas: [metadata], order: 30))
  115. }
  116. //
  117. // SET FOLDER E2EE (ONLY ROOT)
  118. //
  119. if metadata.serverUrl == serverUrlHome, metadata.isDirectoySettableE2EE {
  120. actions.append(
  121. NCMenuAction(
  122. title: NSLocalizedString("_e2e_set_folder_encrypted_", comment: ""),
  123. icon: NCUtility.shared.loadImage(named: "lock"),
  124. order: 30,
  125. action: { _ in
  126. NextcloudKit.shared.markE2EEFolder(fileId: metadata.fileId, delete: false) { account, error in
  127. if error == .success {
  128. NCManageDatabase.shared.deleteE2eEncryption(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", self.appDelegate.account, serverUrl))
  129. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, serverUrlTo: nil, etag: nil, ocId: nil, fileId: nil, encrypted: true, richWorkspace: nil, account: metadata.account)
  130. NCManageDatabase.shared.setMetadataEncrypted(ocId: metadata.ocId, encrypted: true)
  131. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeStatusFolderE2EE, userInfo: ["serverUrl": metadata.serverUrl])
  132. } else {
  133. NCContentPresenter.shared.messageNotification(NSLocalizedString("_e2e_error_mark_folder_", comment: ""), error: error, delay: NCGlobal.shared.dismissAfterSecond, type: .error)
  134. }
  135. }
  136. }
  137. )
  138. )
  139. }
  140. //
  141. // UNSET FOLDER E2EE
  142. //
  143. if metadata.isDirectoryUnsettableE2EE {
  144. actions.append(
  145. NCMenuAction(
  146. title: NSLocalizedString("_e2e_remove_folder_encrypted_", comment: ""),
  147. icon: NCUtility.shared.loadImage(named: "lock"),
  148. order: 30,
  149. action: { _ in
  150. NextcloudKit.shared.markE2EEFolder(fileId: metadata.fileId, delete: true) { account, error in
  151. if error == .success {
  152. NCManageDatabase.shared.deleteE2eEncryption(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", self.appDelegate.account, serverUrl))
  153. NCManageDatabase.shared.setDirectory(serverUrl: serverUrl, serverUrlTo: nil, etag: nil, ocId: nil, fileId: nil, encrypted: false, richWorkspace: nil, account: metadata.account)
  154. NCManageDatabase.shared.setMetadataEncrypted(ocId: metadata.ocId, encrypted: false)
  155. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeStatusFolderE2EE, userInfo: ["serverUrl": metadata.serverUrl])
  156. } else {
  157. NCContentPresenter.shared.messageNotification(NSLocalizedString("_e2e_error_delete_mark_folder_", comment: ""), error: error, delay: NCGlobal.shared.dismissAfterSecond, type: .error)
  158. }
  159. }
  160. }
  161. )
  162. )
  163. }
  164. actions.append(.seperator(order: 40))
  165. //
  166. // FAVORITE
  167. // FIXME: PROPPATCH doesn't work
  168. // https://github.com/nextcloud/files_lock/issues/68
  169. if !metadata.lock {
  170. actions.append(
  171. NCMenuAction(
  172. title: metadata.favorite ? NSLocalizedString("_remove_favorites_", comment: "") : NSLocalizedString("_add_favorites_", comment: ""),
  173. icon: NCUtility.shared.loadImage(named: "star.fill", color: NCBrandColor.shared.yellowFavorite),
  174. order: 50,
  175. action: { _ in
  176. NCNetworking.shared.favoriteMetadata(metadata) { error in
  177. if error != .success {
  178. NCContentPresenter.shared.showError(error: error)
  179. }
  180. }
  181. }
  182. )
  183. )
  184. }
  185. //
  186. // OFFLINE
  187. //
  188. if metadata.isSettableOnOffline {
  189. actions.append(.setAvailableOfflineAction(selectedMetadatas: [metadata], isAnyOffline: isOffline, viewController: self, order: 60, completion: {
  190. self.reloadDataSource()
  191. }))
  192. }
  193. //
  194. // OPEN with external editor
  195. //
  196. if metadata.canOpenExternalEditor {
  197. var editor = ""
  198. var title = ""
  199. var icon: UIImage?
  200. if editors.contains(NCGlobal.shared.editorOnlyoffice) {
  201. editor = NCGlobal.shared.editorOnlyoffice
  202. title = NSLocalizedString("_open_in_onlyoffice_", comment: "")
  203. icon = NCUtility.shared.loadImage(named: "onlyoffice")
  204. } else if isRichDocument {
  205. editor = NCGlobal.shared.editorCollabora
  206. title = NSLocalizedString("_open_in_collabora_", comment: "")
  207. icon = NCUtility.shared.loadImage(named: "collabora")
  208. }
  209. if editor != "" {
  210. actions.append(
  211. NCMenuAction(
  212. title: title,
  213. icon: icon!,
  214. order: 70,
  215. action: { _ in
  216. NCViewer.shared.view(viewController: self, metadata: metadata, metadatas: [metadata], imageIcon: imageIcon, editor: editor, isRichDocument: isRichDocument)
  217. }
  218. )
  219. )
  220. }
  221. }
  222. //
  223. // OPEN IN
  224. //
  225. if metadata.canOpenIn {
  226. actions.append(.openInAction(selectedMetadatas: [metadata], viewController: self, order: 80))
  227. }
  228. //
  229. // PRINT
  230. //
  231. if metadata.isPrintable {
  232. actions.append(.printAction(metadata: metadata, order: 90))
  233. }
  234. //
  235. // SAVE CAMERA ROLL
  236. //
  237. if metadata.isSavebleInCameraRoll {
  238. actions.append(.saveMediaAction(selectedMediaMetadatas: [metadata], order: 100))
  239. }
  240. //
  241. // SAVE AS SCAN
  242. //
  243. if metadata.isSavebleAsScan {
  244. actions.append(
  245. NCMenuAction(
  246. title: NSLocalizedString("_save_as_scan_", comment: ""),
  247. icon: NCUtility.shared.loadImage(named: "viewfinder.circle"),
  248. order: 110,
  249. action: { _ in
  250. if CCUtility.fileProviderStorageExists(metadata) {
  251. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDownloadedFile, userInfo: ["ocId": metadata.ocId, "selector": NCGlobal.shared.selectorSaveAsScan, "error": NKError(), "account": metadata.account])
  252. } else {
  253. NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAsScan) { _, _ in }
  254. }
  255. }
  256. )
  257. )
  258. }
  259. //
  260. // RENAME
  261. //
  262. if metadata.isRenameable {
  263. actions.append(
  264. NCMenuAction(
  265. title: NSLocalizedString("_rename_", comment: ""),
  266. icon: NCUtility.shared.loadImage(named: "pencil"),
  267. order: 120,
  268. action: { _ in
  269. if let vcRename = UIStoryboard(name: "NCRenameFile", bundle: nil).instantiateInitialViewController() as? NCRenameFile {
  270. vcRename.metadata = metadata
  271. vcRename.imagePreview = imageIcon
  272. let popup = NCPopupViewController(contentController: vcRename, popupWidth: vcRename.width, popupHeight: vcRename.height)
  273. self.present(popup, animated: true)
  274. }
  275. }
  276. )
  277. )
  278. }
  279. //
  280. // COPY - MOVE
  281. //
  282. if metadata.isCopyableMovable {
  283. actions.append(.moveOrCopyAction(selectedMetadatas: [metadata], order: 130))
  284. }
  285. //
  286. // COPY IN PASTEBOARD
  287. //
  288. if metadata.isCopyableInPasteboard {
  289. actions.append(.copyAction(selectOcId: [metadata.ocId], hudView: self.view, order: 140))
  290. }
  291. //
  292. // MODIFY WITH QUICK LOOK
  293. //
  294. if metadata.isModifiableWithQuickLook {
  295. actions.append(
  296. NCMenuAction(
  297. title: NSLocalizedString("_modify_", comment: ""),
  298. icon: NCUtility.shared.loadImage(named: "pencil.tip.crop.circle"),
  299. order: 150,
  300. action: { menuAction in
  301. if CCUtility.fileProviderStorageExists(metadata) {
  302. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterDownloadedFile, userInfo: ["ocId": metadata.ocId, "selector": NCGlobal.shared.selectorLoadFileQuickLook, "error": NKError(), "account": metadata.account])
  303. } else {
  304. NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorLoadFileQuickLook) { _, _ in }
  305. }
  306. }
  307. )
  308. )
  309. }
  310. //
  311. // COLOR FOLDER
  312. //
  313. if self is NCFiles, metadata.directory {
  314. actions.append(
  315. NCMenuAction(
  316. title: NSLocalizedString("_change_color_", comment: ""),
  317. icon: NCUtility.shared.loadImage(named: "palette"),
  318. order: 160,
  319. action: { _ in
  320. if let picker = UIStoryboard(name: "NCColorPicker", bundle: nil).instantiateInitialViewController() as? NCColorPicker {
  321. picker.metadata = metadata
  322. let popup = NCPopupViewController(contentController: picker, popupWidth: 200, popupHeight: 320)
  323. popup.backgroundAlpha = 0
  324. self.present(popup, animated: true)
  325. }
  326. }
  327. )
  328. )
  329. }
  330. //
  331. // DELETE
  332. //
  333. if metadata.isDeletable {
  334. actions.append(.deleteAction(selectedMetadatas: [metadata], metadataFolder: metadataFolder, viewController: self, order: 170))
  335. }
  336. applicationHandle.addCollectionViewCommonMenu(metadata: metadata, imageIcon: imageIcon, actions: &actions)
  337. presentMenu(with: actions)
  338. }
  339. }
  340. extension TimeInterval {
  341. func format() -> String? {
  342. let formatter = DateComponentsFormatter()
  343. formatter.allowedUnits = [.day, .hour, .minute]
  344. formatter.unitsStyle = .full
  345. formatter.maximumUnitCount = 1
  346. return formatter.string(from: self)
  347. }
  348. }