AppDelegate+Menu.swift 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. //
  2. // AppDelegate+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 <philippe.weidmann@infomaniak.com>
  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 UIKit
  26. import FloatingPanel
  27. import NextcloudKit
  28. extension AppDelegate {
  29. func toggleMenu(viewController: UIViewController) {
  30. var actions: [NCMenuAction] = []
  31. let appDelegate = (UIApplication.shared.delegate as? AppDelegate)!
  32. let directEditingCreators = NCManageDatabase.shared.getDirectEditingCreators(account: appDelegate.account)
  33. let isDirectoryE2EE = NCUtilityFileSystem().isDirectoryE2EE(serverUrl: appDelegate.activeServerUrl, userBase: appDelegate)
  34. let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, appDelegate.activeServerUrl))
  35. actions.append(
  36. NCMenuAction(
  37. title: NSLocalizedString("_upload_photos_videos_", comment: ""), icon: UIImage(named: "file_photo")!.image(color: UIColor.systemGray, size: 50), action: { _ in
  38. NCAskAuthorization().askAuthorizationPhotoLibrary(viewController: viewController) { hasPermission in
  39. if hasPermission {NCPhotosPickerViewController(viewController: viewController, maxSelectedAssets: 0, singleSelectedMode: false)
  40. }
  41. }
  42. }
  43. )
  44. )
  45. actions.append(
  46. NCMenuAction(
  47. title: NSLocalizedString("_upload_file_", comment: ""), icon: UIImage(named: "file")!.image(color: UIColor.systemGray, size: 50), action: { _ in
  48. if let tabBarController = self.window?.rootViewController as? UITabBarController {
  49. self.documentPickerViewController = NCDocumentPickerViewController(tabBarController: tabBarController, isViewerMedia: false, allowsMultipleSelection: true)
  50. }
  51. }
  52. )
  53. )
  54. if NextcloudKit.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == NCGlobal.shared.editorText}) && !isDirectoryE2EE {
  55. actions.append(
  56. NCMenuAction(title: NSLocalizedString("_create_nextcloudtext_document_", comment: ""), icon: UIImage(named: "file_txt")!.image(color: UIColor.systemGray, size: 50), action: { _ in
  57. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == NCGlobal.shared.editorText})!
  58. Task {
  59. let fileName = await NCNetworking.shared.createFileName(fileNameBase: NSLocalizedString("_untitled_", comment: "") + ".md", account: appDelegate.account, serverUrl: self.activeServerUrl)
  60. let fileNamePath = NCUtilityFileSystem().getFileNamePath(String(describing: fileName), serverUrl: appDelegate.activeServerUrl, urlBase: appDelegate.urlBase, userId: appDelegate.userId)
  61. self.createTextDocument(fileNamePath: fileNamePath, fileName: String(describing: fileName), creatorId: directEditingCreator.identifier)
  62. }
  63. })
  64. )
  65. }
  66. actions.append(
  67. NCMenuAction(
  68. title: NSLocalizedString("_scans_document_", comment: ""), icon: NCUtility().loadImage(named: "doc.text.viewfinder"), action: { _ in
  69. if let viewController = appDelegate.window?.rootViewController {
  70. NCDocumentCamera.shared.openScannerDocument(viewController: viewController)
  71. }
  72. }
  73. )
  74. )
  75. actions.append(
  76. NCMenuAction(
  77. title: NSLocalizedString("_create_voice_memo_", comment: ""), icon: UIImage(named: "microphone")!.image(color: UIColor.systemGray, size: 50), action: { _ in
  78. NCAskAuthorization().askAuthorizationAudioRecord(viewController: viewController) { hasPermission in
  79. if hasPermission {
  80. if let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as? NCAudioRecorderViewController {
  81. viewController.modalTransitionStyle = .crossDissolve
  82. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  83. appDelegate.window?.rootViewController?.present(viewController, animated: true, completion: nil)
  84. }
  85. }
  86. }
  87. }
  88. )
  89. )
  90. if NCKeychain().isEndToEndEnabled(account: appDelegate.account) {
  91. actions.append(.seperator(order: 0))
  92. }
  93. let titleCreateFolder = isDirectoryE2EE ? NSLocalizedString("_create_folder_e2ee_", comment: "") : NSLocalizedString("_create_folder_", comment: "")
  94. let imageCreateFolder = isDirectoryE2EE ? UIImage(named: "folderEncrypted")! : UIImage(named: "folder")!
  95. actions.append(
  96. NCMenuAction(title: titleCreateFolder,
  97. icon: imageCreateFolder.image(color: NCBrandColor.shared.brandElement, size: 50), action: { _ in
  98. guard !appDelegate.activeServerUrl.isEmpty else { return }
  99. let alertController = UIAlertController.createFolder(serverUrl: appDelegate.activeServerUrl, urlBase: appDelegate)
  100. appDelegate.window?.rootViewController?.present(alertController, animated: true, completion: nil)
  101. }
  102. )
  103. )
  104. // Folder encrypted
  105. if !isDirectoryE2EE && NCKeychain().isEndToEndEnabled(account: appDelegate.account) {
  106. actions.append(
  107. NCMenuAction(title: NSLocalizedString("_create_folder_e2ee_", comment: ""),
  108. icon: UIImage(named: "folderEncrypted")!.image(color: NCBrandColor.shared.brandElement, size: 50),
  109. action: { _ in
  110. guard !appDelegate.activeServerUrl.isEmpty else { return }
  111. let alertController = UIAlertController.createFolder(serverUrl: appDelegate.activeServerUrl, urlBase: appDelegate, markE2ee: true)
  112. appDelegate.window?.rootViewController?.present(alertController, animated: true, completion: nil)
  113. })
  114. )
  115. }
  116. if NCKeychain().isEndToEndEnabled(account: appDelegate.account) {
  117. actions.append(.seperator(order: 0))
  118. }
  119. if NCGlobal.shared.capabilityServerVersionMajor >= NCGlobal.shared.nextcloudVersion18 && directory?.richWorkspace == nil && !isDirectoryE2EE && NextcloudKit.shared.isNetworkReachable() {
  120. actions.append(
  121. NCMenuAction(
  122. title: NSLocalizedString("_add_folder_info_", comment: ""), icon: UIImage(named: "addFolderInfo")!.image(color: UIColor.systemGray, size: 50), action: { _ in
  123. let richWorkspaceCommon = NCRichWorkspaceCommon()
  124. if let viewController = self.activeViewController {
  125. if NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", appDelegate.account, appDelegate.activeServerUrl, NCGlobal.shared.fileNameRichWorkspace.lowercased())) == nil {
  126. richWorkspaceCommon.createViewerNextcloudText(serverUrl: appDelegate.activeServerUrl, viewController: viewController)
  127. } else {
  128. richWorkspaceCommon.openViewerNextcloudText(serverUrl: appDelegate.activeServerUrl, viewController: viewController)
  129. }
  130. }
  131. }
  132. )
  133. )
  134. }
  135. if NextcloudKit.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == NCGlobal.shared.editorOnlyoffice && $0.identifier == NCGlobal.shared.onlyofficeDocx}) && !isDirectoryE2EE {
  136. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == NCGlobal.shared.editorOnlyoffice && $0.identifier == NCGlobal.shared.onlyofficeDocx})!
  137. actions.append(
  138. NCMenuAction(
  139. title: NSLocalizedString("_create_new_document_", comment: ""), icon: UIImage(named: "create_file_document")!, action: { _ in
  140. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  141. return
  142. }
  143. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  144. if let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments {
  145. viewController.editorId = NCGlobal.shared.editorOnlyoffice
  146. viewController.creatorId = directEditingCreator.identifier
  147. viewController.typeTemplate = NCGlobal.shared.templateDocument
  148. viewController.serverUrl = appDelegate.activeServerUrl
  149. viewController.titleForm = NSLocalizedString("_create_new_document_", comment: "")
  150. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  151. }
  152. }
  153. )
  154. )
  155. }
  156. if NextcloudKit.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == NCGlobal.shared.editorOnlyoffice && $0.identifier == NCGlobal.shared.onlyofficeXlsx}) && !isDirectoryE2EE {
  157. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == NCGlobal.shared.editorOnlyoffice && $0.identifier == NCGlobal.shared.onlyofficeXlsx})!
  158. actions.append(
  159. NCMenuAction(
  160. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""), icon: UIImage(named: "create_file_xls")!, action: { _ in
  161. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  162. return
  163. }
  164. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  165. if let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments {
  166. viewController.editorId = NCGlobal.shared.editorOnlyoffice
  167. viewController.creatorId = directEditingCreator.identifier
  168. viewController.typeTemplate = NCGlobal.shared.templateSpreadsheet
  169. viewController.serverUrl = appDelegate.activeServerUrl
  170. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  171. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  172. }
  173. }
  174. )
  175. )
  176. }
  177. if NextcloudKit.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == NCGlobal.shared.editorOnlyoffice && $0.identifier == NCGlobal.shared.onlyofficePptx}) && !isDirectoryE2EE {
  178. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == NCGlobal.shared.editorOnlyoffice && $0.identifier == NCGlobal.shared.onlyofficePptx})!
  179. actions.append(
  180. NCMenuAction(
  181. title: NSLocalizedString("_create_new_presentation_", comment: ""), icon: UIImage(named: "create_file_ppt")!, action: { _ in
  182. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  183. return
  184. }
  185. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  186. if let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments {
  187. viewController.editorId = NCGlobal.shared.editorOnlyoffice
  188. viewController.creatorId = directEditingCreator.identifier
  189. viewController.typeTemplate = NCGlobal.shared.templatePresentation
  190. viewController.serverUrl = appDelegate.activeServerUrl
  191. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  192. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  193. }
  194. }
  195. )
  196. )
  197. }
  198. if NCGlobal.shared.capabilityRichdocumentsEnabled {
  199. if NextcloudKit.shared.isNetworkReachable() && !isDirectoryE2EE {
  200. actions.append(
  201. NCMenuAction(
  202. title: NSLocalizedString("_create_new_document_", comment: ""), icon: UIImage(named: "create_file_document")!, action: { _ in
  203. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  204. return
  205. }
  206. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  207. if let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments {
  208. viewController.editorId = NCGlobal.shared.editorCollabora
  209. viewController.typeTemplate = NCGlobal.shared.templateDocument
  210. viewController.serverUrl = appDelegate.activeServerUrl
  211. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  212. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  213. }
  214. }
  215. )
  216. )
  217. actions.append(
  218. NCMenuAction(
  219. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""), icon: UIImage(named: "create_file_xls")!, action: { _ in
  220. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  221. return
  222. }
  223. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  224. if let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments {
  225. viewController.editorId = NCGlobal.shared.editorCollabora
  226. viewController.typeTemplate = NCGlobal.shared.templateSpreadsheet
  227. viewController.serverUrl = appDelegate.activeServerUrl
  228. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  229. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  230. }
  231. }
  232. )
  233. )
  234. actions.append(
  235. NCMenuAction(
  236. title: NSLocalizedString("_create_new_presentation_", comment: ""), icon: UIImage(named: "create_file_ppt")!, action: { _ in
  237. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  238. return
  239. }
  240. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  241. if let viewController = (navigationController as? UINavigationController)?.topViewController as? NCCreateFormUploadDocuments {
  242. viewController.editorId = NCGlobal.shared.editorCollabora
  243. viewController.typeTemplate = NCGlobal.shared.templatePresentation
  244. viewController.serverUrl = appDelegate.activeServerUrl
  245. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  246. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  247. }
  248. }
  249. )
  250. )
  251. }
  252. }
  253. viewController.presentMenu(with: actions)
  254. }
  255. func createTextDocument(fileNamePath: String, fileName: String, creatorId: String) {
  256. var UUID = NSUUID().uuidString
  257. UUID = "TEMP" + UUID.replacingOccurrences(of: "-", with: "")
  258. let options = NKRequestOptions(customUserAgent: NCUtility().getCustomUserAgentNCText())
  259. NextcloudKit.shared.NCTextCreateFile(fileNamePath: fileNamePath, editorId: NCGlobal.shared.editorText, creatorId: creatorId, templateId: NCGlobal.shared.templateDocument, options: options) { account, url, _, error in
  260. guard error == .success, account == self.account, let url = url else {
  261. NCContentPresenter().showError(error: error)
  262. return
  263. }
  264. var results = NextcloudKit.shared.nkCommonInstance.getInternalType(fileName: fileName, mimeType: "", directory: false)
  265. // FIXME: iOS 12.0,* don't detect UTI text/markdown, text/x-markdown
  266. if results.mimeType.isEmpty {
  267. results.mimeType = "text/x-markdown"
  268. }
  269. let metadata = NCManageDatabase.shared.createMetadata(account: self.account, user: self.user, userId: self.userId, fileName: fileName, fileNameView: fileName, ocId: UUID, serverUrl: self.activeServerUrl, urlBase: self.urlBase, url: url, contentType: results.mimeType)
  270. if let viewController = self.activeViewController {
  271. NCViewer().view(viewController: viewController, metadata: metadata, metadatas: [metadata], imageIcon: nil)
  272. }
  273. }
  274. }
  275. }