AppDelegate+Menu.swift 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  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 {
  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.activeAccount)
  42. let isEncrypted = CCUtility.isFolderEncrypted(appDelegate.activeMain.serverUrl, e2eEncrypted: false, account: appDelegate.activeAccount)
  43. let isRichWorkspacesEnabled = appDelegate.activeMain.metadata.richWorkspace == nil ? false : true
  44. let serverVersionMajor = NCManageDatabase.sharedInstance.getCapabilitiesServerInt(account: appDelegate.activeAccount, 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. appDelegate.activeMain.openAssetsPickerController()
  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. appDelegate.activeMain.openImportDocumentPicker()
  60. }
  61. )
  62. )
  63. #if HC
  64. actions.append(
  65. NCMenuAction(
  66. title: NSLocalizedString("_im_create_new_file", tableName: "IMLocalizable", bundle: Bundle.main, value: "", comment: ""),
  67. icon: CCGraphics.scale(UIImage(named: "imagemeter"), to: CGSize(width: 25, height: 25), isAspectRation: true),
  68. action: { menuAction in
  69. _ = IMCreate.init(serverUrl: appDelegate.activeMain.serverUrl, imagemeterViewerDelegate: NCNetworkingMain.sharedInstance)
  70. }
  71. )
  72. )
  73. #endif
  74. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_text}) && !isEncrypted {
  75. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_text})!
  76. actions.append(
  77. 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
  78. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  79. return
  80. }
  81. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  82. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  83. viewController.editorId = k_editor_text
  84. viewController.creatorId = directEditingCreator.identifier
  85. viewController.typeTemplate = k_template_document
  86. viewController.serverUrl = appDelegate.activeMain.serverUrl
  87. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  88. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  89. })
  90. )
  91. }
  92. #if !targetEnvironment(simulator)
  93. actions.append(
  94. NCMenuAction(
  95. title: NSLocalizedString("_scans_document_", comment: ""),
  96. icon: CCGraphics.changeThemingColorImage(UIImage(named: "scan"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  97. action: { menuAction in
  98. NCCreateScanDocument.sharedInstance.openScannerDocument(viewController: appDelegate.activeMain)
  99. }
  100. )
  101. )
  102. #endif
  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. NCMainCommon.sharedInstance.startAudioRecorder()
  109. }
  110. )
  111. )
  112. actions.append(
  113. NCMenuAction(title: NSLocalizedString("_create_folder_", comment: ""),
  114. icon: CCGraphics.changeThemingColorImage(UIImage(named: "folder"), width: 50, height: 50, color: NCBrandColor.sharedInstance.brand),
  115. action: { menuAction in
  116. appDelegate.activeMain.createFolder()
  117. }
  118. )
  119. )
  120. if serverVersionMajor >= k_nextcloud_version_18_0 && isRichWorkspacesEnabled && (self.activeMain.richWorkspaceText == nil || self.activeMain.richWorkspaceText.count == 0) && !isEncrypted && NCCommunication.shared.isNetworkReachable() {
  121. actions.append(
  122. NCMenuAction(
  123. title: NSLocalizedString("_add_folder_info_", comment: ""),
  124. icon: CCGraphics.changeThemingColorImage(UIImage(named: "addFolderInfo"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  125. action: { menuAction in
  126. self.activeMain.createRichWorkspace()
  127. }
  128. )
  129. )
  130. }
  131. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_docx}) && !isEncrypted {
  132. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_docx})!
  133. actions.append(
  134. NCMenuAction(
  135. title: NSLocalizedString("_create_new_document_", comment: ""),
  136. icon: UIImage(named: "create_file_document")!,
  137. action: { menuAction in
  138. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  139. return
  140. }
  141. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  142. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  143. viewController.editorId = k_editor_onlyoffice
  144. viewController.creatorId = directEditingCreator.identifier
  145. viewController.typeTemplate = k_template_document
  146. viewController.serverUrl = appDelegate.activeMain.serverUrl
  147. viewController.titleForm = NSLocalizedString("_create_new_document_", comment: "")
  148. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  149. }
  150. )
  151. )
  152. }
  153. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_xlsx}) && !isEncrypted {
  154. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_xlsx})!
  155. actions.append(
  156. NCMenuAction(
  157. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""),
  158. icon: UIImage(named: "create_file_xls")!,
  159. action: { menuAction in
  160. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  161. return
  162. }
  163. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  164. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  165. viewController.editorId = k_editor_onlyoffice
  166. viewController.creatorId = directEditingCreator.identifier
  167. viewController.typeTemplate = k_template_spreadsheet
  168. viewController.serverUrl = appDelegate.activeMain.serverUrl
  169. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  170. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  171. }
  172. )
  173. )
  174. }
  175. if NCCommunication.shared.isNetworkReachable() && directEditingCreators != nil && directEditingCreators!.contains(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_pptx}) && !isEncrypted {
  176. let directEditingCreator = directEditingCreators!.first(where: { $0.editor == k_editor_onlyoffice && $0.identifier == k_onlyoffice_pptx})!
  177. actions.append(
  178. NCMenuAction(
  179. title: NSLocalizedString("_create_new_presentation_", comment: ""),
  180. icon: UIImage(named: "create_file_ppt")!,
  181. action: { menuAction in
  182. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  183. return
  184. }
  185. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  186. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  187. viewController.editorId = k_editor_onlyoffice
  188. viewController.creatorId = directEditingCreator.identifier
  189. viewController.typeTemplate = k_template_presentation
  190. viewController.serverUrl = appDelegate.activeMain.serverUrl
  191. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  192. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  193. }
  194. )
  195. )
  196. }
  197. if let richdocumentsMimetypes = NCManageDatabase.sharedInstance.getCapabilitiesServerArray(account: appDelegate.activeAccount, elements: NCElementsJSON.shared.capabilitiesRichdocumentsMimetypes) {
  198. if richdocumentsMimetypes.count > 0 && NCCommunication.shared.isNetworkReachable() && !isEncrypted {
  199. actions.append(
  200. NCMenuAction(
  201. title: NSLocalizedString("_create_new_document_", comment: ""),
  202. icon: UIImage(named: "create_file_document")!,
  203. action: { menuAction in
  204. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  205. return
  206. }
  207. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  208. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  209. viewController.editorId = k_editor_collabora
  210. viewController.typeTemplate = k_template_document
  211. viewController.serverUrl = appDelegate.activeMain.serverUrl
  212. viewController.titleForm = NSLocalizedString("_create_nextcloudtext_document_", comment: "")
  213. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  214. }
  215. )
  216. )
  217. actions.append(
  218. NCMenuAction(
  219. title: NSLocalizedString("_create_new_spreadsheet_", comment: ""),
  220. icon: UIImage(named: "create_file_xls")!,
  221. action: { menuAction in
  222. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  223. return
  224. }
  225. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  226. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  227. viewController.editorId = k_editor_collabora
  228. viewController.typeTemplate = k_template_spreadsheet
  229. viewController.serverUrl = appDelegate.activeMain.serverUrl
  230. viewController.titleForm = NSLocalizedString("_create_new_spreadsheet_", comment: "")
  231. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  232. }
  233. )
  234. )
  235. actions.append(
  236. NCMenuAction(
  237. title: NSLocalizedString("_create_new_presentation_", comment: ""),
  238. icon: UIImage(named: "create_file_ppt")!,
  239. action: { menuAction in
  240. guard let navigationController = UIStoryboard(name: "NCCreateFormUploadDocuments", bundle: nil).instantiateInitialViewController() else {
  241. return
  242. }
  243. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  244. let viewController = (navigationController as! UINavigationController).topViewController as! NCCreateFormUploadDocuments
  245. viewController.editorId = k_editor_collabora
  246. viewController.typeTemplate = k_template_presentation
  247. viewController.serverUrl = appDelegate.activeMain.serverUrl
  248. viewController.titleForm = NSLocalizedString("_create_new_presentation_", comment: "")
  249. appDelegate.window.rootViewController?.present(navigationController, animated: true, completion: nil)
  250. }
  251. )
  252. )
  253. }
  254. }
  255. return actions
  256. }
  257. }