NCCollectionViewCommon+Menu.swift 17 KB

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