AppDelegate+Menu.swift 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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 FloatingPanel
  26. import NCCommunication
  27. extension AppDelegate: NCAudioRecorderViewControllerDelegate {
  28. @objc public func showMenuIn(viewController: UIViewController) {
  29. let mainMenuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateViewController(withIdentifier: "NCMainMenuTableViewController") as! NCMainMenuTableViewController
  30. mainMenuViewController.actions = self.initMenu()
  31. let menuPanelController = NCMenuPanelController()
  32. menuPanelController.parentPresenter = viewController
  33. menuPanelController.delegate = mainMenuViewController
  34. menuPanelController.set(contentViewController: mainMenuViewController)
  35. menuPanelController.track(scrollView: mainMenuViewController.tableView)
  36. viewController.present(menuPanelController, animated: true, completion: nil)
  37. }
  38. private func initMenu() -> [NCMenuAction] {
  39. var actions: [NCMenuAction] = []
  40. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  41. let directEditingCreators = NCManageDatabase.shared.getDirectEditingCreators(account: appDelegate.account)
  42. let isEncrypted = CCUtility.isFolderEncrypted(appDelegate.activeServerUrl, e2eEncrypted: false, account: appDelegate.account, urlBase: appDelegate.urlBase)
  43. let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, appDelegate.activeServerUrl))
  44. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  45. actions.append(
  46. NCMenuAction(
  47. title: NSLocalizedString("_upload_photos_videos_", comment: ""),
  48. icon: CCGraphics.changeThemingColorImage(UIImage(named: "file_photo"), width: 50, height: 50, color: NCBrandColor.shared.icon),
  49. action: { menuAction in
  50. NCPhotosPickerViewController.init(viewController: appDelegate.window.rootViewController!, maxSelectedAssets: 0, singleSelectedMode: false)
  51. }
  52. )
  53. )
  54. actions.append(
  55. NCMenuAction(
  56. title: NSLocalizedString("_upload_file_", comment: ""),
  57. icon: CCGraphics.changeThemingColorImage(UIImage(named: "file"), width: 50, height: 50, color: NCBrandColor.shared.icon),
  58. action: { menuAction in
  59. if let tabBarController = self.window.rootViewController as? UITabBarController {
  60. self.documentPickerViewController = NCDocumentPickerViewController.init(tabBarController: tabBarController)
  61. }
  62. }
  63. )
  64. )
  65. #if HC
  66. actions.append(
  67. NCMenuAction(
  68. title: NSLocalizedString("_im_create_new_file", tableName: "IMLocalizable", bundle: Bundle.main, value: "", comment: ""),
  69. icon: CCGraphics.scale(UIImage(named: "imagemeter"), to: CGSize(width: 25, height: 25), isAspectRation: true),
  70. action: { menuAction in
  71. _ = IMCreate.init(serverUrl: appDelegate.activeServerUrl, imagemeterViewerDelegate: NCNetworkingMain.shared)
  72. }
  73. )
  74. )
  75. #endif
  76. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_text}) && !isEncrypted {
  77. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_text})!
  78. actions.append(
  79. NCMenuAction(title: NSLocalizedString("_create_nextcloudtext_document_", comment: ""), icon: CCGraphics.changeThemingColorImage(UIImage(named: "file_txt"), width: 50, height: 50, color: NCBrandColor.shared.icon), action: { menuAction in
  80. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  81. return
  82. }
  83. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  84. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  85. viewController.editorId = k_editor_text
  86. viewController.creatorId = directEditingCreator.identifier
  87. viewController.typeTemplate = k_template_document
  88. viewController.serverUrl = appDelegate.activeServerUrl
  89. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  90. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  91. })
  92. )
  93. }
  94. if #available(iOS 13.0, *) {
  95. actions.append(
  96. NCMenuAction(
  97. title: NSLocalizedString("_scans_document_", comment: ""),
  98. icon: CCGraphics.changeThemingColorImage(UIImage(named: "scan"), width: 50, height: 50, color: NCBrandColor.shared.icon),
  99. action: { menuAction in
  100. NCCreateScanDocument.shared.openScannerDocument(viewController: appDelegate.window.rootViewController!)
  101. }
  102. )
  103. )
  104. }
  105. actions.append(
  106. NCMenuAction(
  107. title: NSLocalizedString("_create_voice_memo_", comment: ""),
  108. icon: CCGraphics.changeThemingColorImage(UIImage(named: "microphone"), width: 50, height: 50, color: NCBrandColor.shared.icon),
  109. action: { menuAction in
  110. let fileName = CCUtility.createFileNameDate(NSLocalizedString("_voice_memo_filename_", comment: ""), extension: "m4a")!
  111. let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as! NCAudioRecorderViewController
  112. viewController.delegate = self
  113. viewController.createRecorder(fileName: fileName)
  114. viewController.modalTransitionStyle = .crossDissolve
  115. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  116. appDelegate.window.rootViewController?.present(viewController, animated: true, completion: nil)
  117. }
  118. )
  119. )
  120. actions.append(
  121. NCMenuAction(title: NSLocalizedString("_create_folder_", comment: ""),
  122. icon: CCGraphics.changeThemingColorImage(UIImage(named: "folder"), width: 50, height: 50, color: NCBrandColor.shared.brandElement),
  123. action: { menuAction in
  124. guard let serverUrl = appDelegate.activeServerUrl else { return }
  125. let alertController = UIAlertController(title: NSLocalizedString("_create_folder_on_", comment: ""), message: nil, preferredStyle: .alert)
  126. alertController.addTextField { (textField) in
  127. textField.autocapitalizationType = UITextAutocapitalizationType.sentences
  128. }
  129. let cancelAction = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: nil)
  130. let okAction = UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { action in
  131. if let fileNameFolder = alertController.textFields?.first?.text {
  132. NCNetworking.shared.createFolder(fileName: fileNameFolder, serverUrl: serverUrl, account: appDelegate.account, urlBase: appDelegate.urlBase, overwrite: false) { (errorCode, errorDescription) in
  133. if errorCode != 0 {
  134. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  135. }
  136. }
  137. }
  138. })
  139. alertController.addAction(cancelAction)
  140. alertController.addAction(okAction)
  141. appDelegate.window.rootViewController?.present(alertController, animated: true, completion: nil)
  142. }
  143. )
  144. )
  145. if serverVersionMajor >= k_nextcloud_version_18_0 && directory?.richWorkspace == nil && !isEncrypted && NCCommunication.shared.isNetworkReachable() {
  146. actions.append(
  147. NCMenuAction(
  148. title: NSLocalizedString("_add_folder_info_", comment: ""),
  149. icon: CCGraphics.changeThemingColorImage(UIImage(named: "addFolderInfo"), width: 50, height: 50, color: NCBrandColor.shared.icon),
  150. action: { menuAction in
  151. let richWorkspaceCommon = NCRichWorkspaceCommon()
  152. if let viewController = self.activeViewController {
  153. if NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", appDelegate.account, appDelegate.activeServerUrl, k_fileNameRichWorkspace.lowercased())) == nil {
  154. richWorkspaceCommon.createViewerNextcloudText(serverUrl: appDelegate.activeServerUrl, viewController: viewController)
  155. } else {
  156. richWorkspaceCommon.openViewerNextcloudText(serverUrl: appDelegate.activeServerUrl, viewController: viewController)
  157. }
  158. }
  159. }
  160. )
  161. )
  162. }
  163. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_docx}) && !isEncrypted {
  164. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_docx})!
  165. actions.append(
  166. NCMenuAction(
  167. title: NSLocalizedString("_create_new_document_", comment: ""),
  168. icon: UIImage(named: "create_file_document")!,
  169. action: { menuAction in
  170. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  171. return
  172. }
  173. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  174. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  175. viewController.editorId = k_editor_onlyoffice
  176. viewController.creatorId = directEditingCreator.identifier
  177. viewController.typeTemplate = k_template_document
  178. viewController.serverUrl = appDelegate.activeServerUrl
  179. viewController.titleForm = NSLocalizedString("_create_new_document_", comment: "")
  180. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  181. }
  182. )
  183. )
  184. }
  185. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_xlsx}) && !isEncrypted {
  186. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_xlsx})!
  187. actions.append(
  188. NCMenuAction(
  189. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""),
  190. icon: UIImage(named: "create_file_xls")!,
  191. action: { menuAction in
  192. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  193. return
  194. }
  195. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  196. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  197. viewController.editorId = k_editor_onlyoffice
  198. viewController.creatorId = directEditingCreator.identifier
  199. viewController.typeTemplate = k_template_spreadsheet
  200. viewController.serverUrl = appDelegate.activeServerUrl
  201. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  202. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  203. }
  204. )
  205. )
  206. }
  207. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_pptx}) && !isEncrypted {
  208. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_pptx})!
  209. actions.append(
  210. NCMenuAction(
  211. title: NSLocalizedString("_create_new_presentation_", comment: ""),
  212. icon: UIImage(named: "create_file_ppt")!,
  213. action: { menuAction in
  214. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  215. return
  216. }
  217. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  218. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  219. viewController.editorId = k_editor_onlyoffice
  220. viewController.creatorId = directEditingCreator.identifier
  221. viewController.typeTemplate = k_template_presentation
  222. viewController.serverUrl = appDelegate.activeServerUrl
  223. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  224. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  225. }
  226. )
  227. )
  228. }
  229. if let richdocumentsMimetypes = NCManageDatabase.shared.getCapabilitiesServerArray(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesRichdocumentsMimetypes) {
  230. if richdocumentsMimetypes.count > 0 && NCCommunication.shared.isNetworkReachable() && !isEncrypted {
  231. actions.append(
  232. NCMenuAction(
  233. title: NSLocalizedString("_create_new_document_", comment: ""),
  234. icon: UIImage(named: "create_file_document")!,
  235. action: { menuAction in
  236. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  237. return
  238. }
  239. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  240. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  241. viewController.editorId = k_editor_collabora
  242. viewController.typeTemplate = k_template_document
  243. viewController.serverUrl = appDelegate.activeServerUrl
  244. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  245. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  246. }
  247. )
  248. )
  249. actions.append(
  250. NCMenuAction(
  251. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""),
  252. icon: UIImage(named: "create_file_xls")!,
  253. action: { menuAction in
  254. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  255. return
  256. }
  257. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  258. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  259. viewController.editorId = k_editor_collabora
  260. viewController.typeTemplate = k_template_spreadsheet
  261. viewController.serverUrl = appDelegate.activeServerUrl
  262. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  263. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  264. }
  265. )
  266. )
  267. actions.append(
  268. NCMenuAction(
  269. title: NSLocalizedString("_create_new_presentation_", comment: ""),
  270. icon: UIImage(named: "create_file_ppt")!,
  271. action: { menuAction in
  272. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  273. return
  274. }
  275. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  276. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  277. viewController.editorId = k_editor_collabora
  278. viewController.typeTemplate = k_template_presentation
  279. viewController.serverUrl = appDelegate.activeServerUrl
  280. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  281. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  282. }
  283. )
  284. )
  285. }
  286. }
  287. return actions
  288. }
  289. // MARK: - NCAudioRecorder ViewController Delegate
  290. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  291. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() else { return }
  292. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  293. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  294. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadVoiceNote
  295. viewController.setup(serverUrl: appDelegate.activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  296. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  297. }
  298. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) { }
  299. }