UIViewController+Menu.swift 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. //
  2. // UIViewController+Menu.swift
  3. // Nextcloud
  4. //
  5. // Created by Henrik Storch on 10.11.21.
  6. // Copyright © 2021 Henrik Storch All rights reserved.
  7. //
  8. // Author Henrik Storch <henrik.storch@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. import SVGKit
  25. import NCCommunication
  26. extension UIViewController {
  27. fileprivate func handleProfileAction(_ action: NCHovercard.Action, for userId: String) {
  28. switch action.appId {
  29. case "email":
  30. guard let url = action.hyperlinkUrl,
  31. url.scheme == "mailto",
  32. let components = URLComponents(url: url, resolvingAgainstBaseURL: false) else {
  33. NCContentPresenter.shared.showGenericError(description: "_cannot_send_mail_error_")
  34. return
  35. }
  36. sendEmail(to: components.path)
  37. case "spreed":
  38. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  39. if let talkUrl = URL(string: "nextcloudtalk://open-conversation?server=\(appDelegate.urlBase)&user=\(appDelegate.userId)&withUser=\(userId)"),
  40. UIApplication.shared.canOpenURL(talkUrl) {
  41. UIApplication.shared.open(talkUrl)
  42. } else if let url = action.hyperlinkUrl {
  43. UIApplication.shared.open(url)
  44. } else { fallthrough }
  45. default:
  46. guard let url = action.hyperlinkUrl, UIApplication.shared.canOpenURL(url) else {
  47. NCContentPresenter.shared.showGenericError(description: "_open_url_error_")
  48. return
  49. }
  50. UIApplication.shared.open(url, options: [:])
  51. }
  52. }
  53. func showProfileMenu(userId: String) {
  54. NCCommunication.shared.getHovercard(for: userId) { (card, errCode, err) in
  55. guard let card = card else {
  56. return
  57. }
  58. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  59. let personHeader = NCMenuAction(
  60. title: card.displayName,
  61. icon: NCUtility.shared.loadUserImage(for: userId, displayName: card.displayName, urlBase: appDelegate.urlBase),
  62. action: nil)
  63. let actions = card.actions.map { action -> NCMenuAction in
  64. var image = UIImage()
  65. if let url = URL(string: action.icon), let svg = SVGKImage(contentsOf: url) {
  66. image = svg.uiImage
  67. }
  68. return NCMenuAction(
  69. title: action.title,
  70. icon: image,
  71. action: { _ in self.handleProfileAction(action, for: userId) })
  72. }
  73. let allActions = [personHeader] + actions
  74. self.presentMenu(with: allActions)
  75. }
  76. }
  77. func sendEmail(to email: String) {
  78. guard MFMailComposeViewController.canSendMail() else {
  79. NCContentPresenter.shared.showGenericError(description: "_cannot_send_mail_error_")
  80. return
  81. }
  82. let mail = MFMailComposeViewController()
  83. mail.mailComposeDelegate = self
  84. mail.setToRecipients([email])
  85. present(mail, animated: true)
  86. }
  87. func presentMenu(with actions: [NCMenuAction]) {
  88. let menuViewController = NCMenu.makeNCMenu(with: actions)
  89. let menuPanelController = NCMenuPanelController()
  90. menuPanelController.parentPresenter = self
  91. menuPanelController.delegate = menuViewController
  92. menuPanelController.set(contentViewController: menuViewController)
  93. menuPanelController.track(scrollView: menuViewController.tableView)
  94. present(menuPanelController, animated: true, completion: nil)
  95. }
  96. }
  97. extension UIViewController: MFMailComposeViewControllerDelegate {
  98. public func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
  99. controller.dismiss(animated: true)
  100. }
  101. }