NCViewerNextcloudText.swift 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. //
  2. // NCViewerNextcloudText.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 12/12/19.
  6. // Copyright © 2019 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@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 UIKit
  24. import WebKit
  25. class NCViewerNextcloudText: UIViewController, WKNavigationDelegate, WKScriptMessageHandler {
  26. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  27. var webView = WKWebView()
  28. var bottomConstraint: NSLayoutConstraint?
  29. var link: String = ""
  30. var editor: String = ""
  31. var metadata: tableMetadata = tableMetadata()
  32. var imageIcon: UIImage?
  33. // MARK: - View Life Cycle
  34. required init?(coder: NSCoder) {
  35. super.init(coder: coder)
  36. }
  37. override func viewDidLoad() {
  38. super.viewDidLoad()
  39. navigationItem.rightBarButtonItem = UIBarButtonItem(image: UIImage(named: "more")!.image(color: .label, size: 25), style: .plain, target: self, action: #selector(self.openMenuMore))
  40. navigationController?.navigationBar.prefersLargeTitles = false
  41. navigationItem.title = metadata.fileNameView
  42. let config = WKWebViewConfiguration()
  43. config.websiteDataStore = WKWebsiteDataStore.nonPersistent()
  44. let contentController = config.userContentController
  45. contentController.add(self, name: "DirectEditingMobileInterface")
  46. webView = WKWebView(frame: CGRect.zero, configuration: config)
  47. webView.navigationDelegate = self
  48. view.addSubview(webView)
  49. webView.translatesAutoresizingMaskIntoConstraints = false
  50. webView.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
  51. webView.rightAnchor.constraint(equalTo: view.rightAnchor, constant: 0).isActive = true
  52. webView.topAnchor.constraint(equalTo: view.topAnchor, constant: 0).isActive = true
  53. bottomConstraint = webView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0)
  54. bottomConstraint?.isActive = true
  55. var request = URLRequest(url: URL(string: link)!)
  56. request.addValue("true", forHTTPHeaderField: "OCS-APIRequest")
  57. let language = NSLocale.preferredLanguages[0] as String
  58. request.addValue(language, forHTTPHeaderField: "Accept-Language")
  59. if editor == NCGlobal.shared.editorOnlyoffice {
  60. webView.customUserAgent = NCUtility.shared.getCustomUserAgentOnlyOffice()
  61. } else if editor == NCGlobal.shared.editorText {
  62. webView.customUserAgent = NCUtility.shared.getCustomUserAgentNCText()
  63. } // else: use default
  64. webView.load(request)
  65. }
  66. override func viewWillAppear(_ animated: Bool) {
  67. super.viewWillAppear(animated)
  68. appDelegate.activeViewController = self
  69. //
  70. NotificationCenter.default.addObserver(self, selector: #selector(favoriteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterFavoriteFile), object: nil)
  71. NotificationCenter.default.addObserver(self, selector: #selector(viewUnload), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMenuDetailClose), object: nil)
  72. NotificationCenter.default.addObserver(self, selector: #selector(keyboardDidShow), name: UIResponder.keyboardDidShowNotification, object: nil)
  73. NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillHide), name: UIResponder.keyboardWillHideNotification, object: nil)
  74. }
  75. override func viewWillDisappear(_ animated: Bool) {
  76. super.viewWillDisappear(animated)
  77. if let navigationController = self.navigationController {
  78. if !navigationController.viewControllers.contains(self) {
  79. }
  80. }
  81. //
  82. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterFavoriteFile), object: nil)
  83. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMenuDetailClose), object: nil)
  84. NotificationCenter.default.removeObserver(self, name: UIResponder.keyboardDidShowNotification, object: nil)
  85. NotificationCenter.default.removeObserver(self, name: UIResponder.keyboardWillHideNotification, object: nil)
  86. }
  87. @objc func viewUnload() {
  88. navigationController?.popViewController(animated: true)
  89. }
  90. // MARK: - NotificationCenter
  91. @objc func favoriteFile(_ notification: NSNotification) {
  92. guard let userInfo = notification.userInfo as NSDictionary?,
  93. let ocId = userInfo["ocId"] as? String,
  94. ocId == self.metadata.ocId,
  95. let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId)
  96. else { return }
  97. self.metadata = metadata
  98. }
  99. @objc func keyboardDidShow(notification: Notification) {
  100. guard let info = notification.userInfo else { return }
  101. guard let frameInfo = info[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue else { return }
  102. let keyboardFrame = frameInfo.cgRectValue
  103. let height = keyboardFrame.size.height
  104. bottomConstraint?.constant = -height
  105. }
  106. @objc func keyboardWillHide(notification: Notification) {
  107. bottomConstraint?.constant = 0
  108. }
  109. // MARK: - Action
  110. @objc func openMenuMore() {
  111. if imageIcon == nil { imageIcon = UIImage(named: "file_txt") }
  112. NCViewer.shared.toggleMenu(viewController: self, metadata: metadata, webView: true, imageIcon: imageIcon)
  113. }
  114. // MARK: -
  115. public func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
  116. if message.name == "DirectEditingMobileInterface" {
  117. if message.body as? String == "close" {
  118. viewUnload()
  119. }
  120. if message.body as? String == "share" {
  121. NCFunctionCenter.shared.openShare(viewController: self, metadata: metadata, indexPage: .sharing)
  122. }
  123. if message.body as? String == "loading" {
  124. print("loading")
  125. }
  126. if message.body as? String == "loaded" {
  127. print("loaded")
  128. }
  129. if message.body as? String == "paste" {
  130. self.paste(self)
  131. }
  132. }
  133. }
  134. // MARK: -
  135. public func webView(_ webView: WKWebView, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) {
  136. if let serverTrust = challenge.protectionSpace.serverTrust {
  137. completionHandler(Foundation.URLSession.AuthChallengeDisposition.useCredential, URLCredential(trust: serverTrust))
  138. } else {
  139. completionHandler(URLSession.AuthChallengeDisposition.useCredential, nil)
  140. }
  141. }
  142. public func webView(_ webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) {
  143. print("didStartProvisionalNavigation")
  144. }
  145. public func webView(_ webView: WKWebView, didReceiveServerRedirectForProvisionalNavigation navigation: WKNavigation!) {
  146. print("didReceiveServerRedirectForProvisionalNavigation")
  147. }
  148. public func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
  149. NCActivityIndicator.shared.stop()
  150. }
  151. }
  152. extension NCViewerNextcloudText: UINavigationControllerDelegate {
  153. override func didMove(toParent parent: UIViewController?) {
  154. super.didMove(toParent: parent)
  155. if parent == nil {
  156. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced, userInfo: ["serverUrl": self.metadata.serverUrl])
  157. }
  158. }
  159. }