AppDelegate+Menu.swift 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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.sharedInstance.getDirectEditingCreators(account: appDelegate.account)
  42. let isEncrypted = CCUtility.isFolderEncrypted(appDelegate.activeServerUrl, e2eEncrypted: false, account: appDelegate.account, urlBase: appDelegate.urlBase)
  43. let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, appDelegate.activeServerUrl))
  44. let serverVersionMajor = NCManageDatabase.sharedInstance.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.sharedInstance.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.sharedInstance.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.sharedInstance)
  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.sharedInstance.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. actions.append(
  95. NCMenuAction(
  96. title: NSLocalizedString("_scans_document_", comment: ""),
  97. icon: CCGraphics.changeThemingColorImage(UIImage(named: "scan"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  98. action: { menuAction in
  99. NCCreateScanDocument.sharedInstance.openScannerDocument(viewController: appDelegate.window.rootViewController!)
  100. }
  101. )
  102. )
  103. actions.append(
  104. NCMenuAction(
  105. title: NSLocalizedString("_create_voice_memo_", comment: ""),
  106. icon: CCGraphics.changeThemingColorImage(UIImage(named: "microphone"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  107. action: { menuAction in
  108. let fileName = CCUtility.createFileNameDate(NSLocalizedString("_voice_memo_filename_", comment: ""), extension: "m4a")!
  109. let viewController = UIStoryboard(name: "NCAudioRecorderViewController", bundle: nil).instantiateInitialViewController() as! NCAudioRecorderViewController
  110. viewController.delegate = self
  111. viewController.createRecorder(fileName: fileName)
  112. viewController.modalTransitionStyle = .crossDissolve
  113. viewController.modalPresentationStyle = UIModalPresentationStyle.overCurrentContext
  114. appDelegate.window.rootViewController?.present(viewController, animated: true, completion: nil)
  115. }
  116. )
  117. )
  118. actions.append(
  119. NCMenuAction(title: NSLocalizedString("_create_folder_", comment: ""),
  120. icon: CCGraphics.changeThemingColorImage(UIImage(named: "folder"), width: 50, height: 50, color: NCBrandColor.sharedInstance.brandElement),
  121. action: { menuAction in
  122. guard let serverUrl = appDelegate.activeServerUrl else { return }
  123. let alertController = UIAlertController(title: NSLocalizedString("_create_folder_on_", comment: ""), message: nil, preferredStyle: .alert)
  124. alertController.addTextField { (textField) in
  125. textField.autocapitalizationType = UITextAutocapitalizationType.sentences
  126. }
  127. let cancelAction = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: nil)
  128. let okAction = UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .default, handler: { action in
  129. if let fileNameFolder = alertController.textFields?.first?.text {
  130. NCNetworking.shared.createFolder(fileName: fileNameFolder, serverUrl: serverUrl, account: appDelegate.account, urlBase: appDelegate.urlBase, overwrite: false) { (errorCode, errorDescription) in
  131. if errorCode != 0 {
  132. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  133. }
  134. }
  135. }
  136. })
  137. alertController.addAction(cancelAction)
  138. alertController.addAction(okAction)
  139. appDelegate.window.rootViewController?.present(alertController, animated: true, completion: nil)
  140. }
  141. )
  142. )
  143. if serverVersionMajor >= k_nextcloud_version_18_0 && directory?.richWorkspace == nil && !isEncrypted && NCCommunication.shared.isNetworkReachable() {
  144. actions.append(
  145. NCMenuAction(
  146. title: NSLocalizedString("_add_folder_info_", comment: ""),
  147. icon: CCGraphics.changeThemingColorImage(UIImage(named: "addFolderInfo"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  148. action: { menuAction in
  149. let richWorkspaceCommon = NCRichWorkspaceCommon()
  150. if let viewController = self.activeViewController {
  151. if NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", appDelegate.account, appDelegate.activeServerUrl, k_fileNameRichWorkspace.lowercased())) == nil {
  152. richWorkspaceCommon.createViewerNextcloudText(serverUrl: appDelegate.activeServerUrl, viewController: viewController)
  153. } else {
  154. richWorkspaceCommon.openViewerNextcloudText(serverUrl: appDelegate.activeServerUrl, viewController: viewController)
  155. }
  156. }
  157. }
  158. )
  159. )
  160. }
  161. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_docx}) && !isEncrypted {
  162. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_docx})!
  163. actions.append(
  164. NCMenuAction(
  165. title: NSLocalizedString("_create_new_document_", comment: ""),
  166. icon: UIImage(named: "create_file_document")!,
  167. action: { menuAction in
  168. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  169. return
  170. }
  171. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  172. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  173. viewController.editorId = k_editor_onlyoffice
  174. viewController.creatorId = directEditingCreator.identifier
  175. viewController.typeTemplate = k_template_document
  176. viewController.serverUrl = appDelegate.activeServerUrl
  177. viewController.titleForm = NSLocalizedString("_create_new_document_", comment: "")
  178. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  179. }
  180. )
  181. )
  182. }
  183. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_xlsx}) && !isEncrypted {
  184. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_xlsx})!
  185. actions.append(
  186. NCMenuAction(
  187. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""),
  188. icon: UIImage(named: "create_file_xls")!,
  189. action: { menuAction in
  190. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  191. return
  192. }
  193. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  194. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  195. viewController.editorId = k_editor_onlyoffice
  196. viewController.creatorId = directEditingCreator.identifier
  197. viewController.typeTemplate = k_template_spreadsheet
  198. viewController.serverUrl = appDelegate.activeServerUrl
  199. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  200. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  201. }
  202. )
  203. )
  204. }
  205. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_pptx}) && !isEncrypted {
  206. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_pptx})!
  207. actions.append(
  208. NCMenuAction(
  209. title: NSLocalizedString("_create_new_presentation_", comment: ""),
  210. icon: UIImage(named: "create_file_ppt")!,
  211. action: { menuAction in
  212. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  213. return
  214. }
  215. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  216. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  217. viewController.editorId = k_editor_onlyoffice
  218. viewController.creatorId = directEditingCreator.identifier
  219. viewController.typeTemplate = k_template_presentation
  220. viewController.serverUrl = appDelegate.activeServerUrl
  221. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  222. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  223. }
  224. )
  225. )
  226. }
  227. if let richdocumentsMimetypes = NCManageDatabase.sharedInstance.getCapabilitiesServerArray(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesRichdocumentsMimetypes) {
  228. if richdocumentsMimetypes.count > 0 && NCCommunication.shared.isNetworkReachable() && !isEncrypted {
  229. actions.append(
  230. NCMenuAction(
  231. title: NSLocalizedString("_create_new_document_", comment: ""),
  232. icon: UIImage(named: "create_file_document")!,
  233. action: { menuAction in
  234. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  235. return
  236. }
  237. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  238. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  239. viewController.editorId = k_editor_collabora
  240. viewController.typeTemplate = k_template_document
  241. viewController.serverUrl = appDelegate.activeServerUrl
  242. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  243. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  244. }
  245. )
  246. )
  247. actions.append(
  248. NCMenuAction(
  249. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""),
  250. icon: UIImage(named: "create_file_xls")!,
  251. action: { menuAction in
  252. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  253. return
  254. }
  255. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  256. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  257. viewController.editorId = k_editor_collabora
  258. viewController.typeTemplate = k_template_spreadsheet
  259. viewController.serverUrl = appDelegate.activeServerUrl
  260. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  261. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  262. }
  263. )
  264. )
  265. actions.append(
  266. NCMenuAction(
  267. title: NSLocalizedString("_create_new_presentation_", comment: ""),
  268. icon: UIImage(named: "create_file_ppt")!,
  269. action: { menuAction in
  270. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  271. return
  272. }
  273. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  274. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  275. viewController.editorId = k_editor_collabora
  276. viewController.typeTemplate = k_template_presentation
  277. viewController.serverUrl = appDelegate.activeServerUrl
  278. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  279. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  280. }
  281. )
  282. )
  283. }
  284. }
  285. return actions
  286. }
  287. // MARK: - NCAudioRecorder ViewController Delegate
  288. func didFinishRecording(_ viewController: NCAudioRecorderViewController, fileName: String) {
  289. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadVoiceNote", bundle: nil).instantiateInitialViewController() else { return }
  290. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  291. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  292. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadVoiceNote
  293. viewController.setup(serverUrl: appDelegate.activeServerUrl, fileNamePath: NSTemporaryDirectory() + fileName, fileName: fileName)
  294. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  295. }
  296. func didFinishWithoutRecording(_ viewController: NCAudioRecorderViewController, fileName: String) { }
  297. }