NCDetailViewController.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. //
  2. // NCDetailViewController.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 07/02/2020.
  6. // Copyright © 2020 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 Foundation
  24. import WebKit
  25. import NCCommunication
  26. class NCDetailViewController: UIViewController {
  27. @IBOutlet weak var backgroundView: UIImageView!
  28. @objc var metadata: tableMetadata?
  29. @objc var selector: String?
  30. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. required init?(coder: NSCoder) {
  32. super.init(coder: coder)
  33. appDelegate.activeDetail = self
  34. }
  35. override func viewDidLoad() {
  36. super.viewDidLoad()
  37. NotificationCenter.default.addObserver(self, selector: #selector(self.changeTheming), name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
  38. changeTheming()
  39. if metadata != nil {
  40. viewFile(metadata: metadata!, selector: selector)
  41. }
  42. }
  43. override func viewDidDisappear(_ animated: Bool) {
  44. super.viewDidDisappear(animated)
  45. if appDelegate.player != nil && appDelegate.player.rate != 0 {
  46. appDelegate.player.pause()
  47. }
  48. if appDelegate.isMediaObserver {
  49. appDelegate.isMediaObserver = false
  50. NCViewerMedia.sharedInstance.removeObserver()
  51. }
  52. }
  53. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  54. super.viewWillTransition(to: size, with: coordinator)
  55. coordinator.animate(alongsideTransition: nil) { _ in
  56. }
  57. }
  58. func viewUnload() {
  59. if let splitViewController = self.splitViewController as? NCSplitViewController {
  60. if splitViewController.isCollapsed {
  61. if let navigationController = splitViewController.viewControllers.last as? UINavigationController {
  62. navigationController.popToRootViewController(animated: true)
  63. }
  64. } else {
  65. for view in backgroundView.subviews {
  66. view.removeFromSuperview()
  67. }
  68. self.navigationController?.navigationBar.topItem?.title = ""
  69. }
  70. }
  71. }
  72. @objc func changeTheming() {
  73. backgroundView.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "logo"), multiplier: 2, color: NCBrandColor.sharedInstance.brand.withAlphaComponent(0.4))
  74. view.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  75. }
  76. func subViewActive() -> UIView? {
  77. return backgroundView.subviews.first
  78. }
  79. @objc func viewFile(metadata: tableMetadata, selector: String?) {
  80. self.metadata = metadata
  81. self.selector = selector
  82. self.navigationController?.navigationBar.topItem?.title = metadata.fileNameView
  83. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, fileNameView: metadata.fileNameView)) == false {
  84. CCGraphics.createNewImage(from: metadata.fileNameView, ocId: metadata.ocId, extension: (metadata.fileNameView as NSString).pathExtension, filterGrayScale: false, typeFile: metadata.typeFile, writeImage: true)
  85. }
  86. if appDelegate.isMediaObserver {
  87. appDelegate.isMediaObserver = false
  88. NCViewerMedia.sharedInstance.removeObserver()
  89. }
  90. // IMAGE
  91. if metadata.typeFile == k_metadataTypeFile_image {
  92. return
  93. }
  94. // AUDIO VIDEO
  95. if metadata.typeFile == k_metadataTypeFile_audio || metadata.typeFile == k_metadataTypeFile_video {
  96. NCViewerMedia.sharedInstance.viewMedia(metadata, view: backgroundView)
  97. return
  98. }
  99. // DOCUMENT - INTERNAL VIEWER
  100. if metadata.typeFile == k_metadataTypeFile_document && selector != nil && selector == selectorLoadFileInternalView {
  101. NCViewerDocumentWeb.sharedInstance.viewDocumentWebAt(metadata, view: backgroundView)
  102. return
  103. }
  104. // DOCUMENT
  105. if metadata.typeFile == k_metadataTypeFile_document {
  106. // PDF
  107. if metadata.contentType == "application/pdf" {
  108. if #available(iOS 11.0, *) {
  109. let viewerPDF = NCViewerPDF.init(frame: backgroundView.frame)
  110. let filePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  111. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) == false {
  112. return
  113. }
  114. viewerPDF.setupPdfView(filePath: URL(fileURLWithPath: filePath), view: backgroundView)
  115. }
  116. return
  117. }
  118. // DirectEditinf: Nextcloud Text - OnlyOffice
  119. if NCUtility.sharedInstance.isDirectEditing(metadata) != nil && appDelegate.reachability.isReachable() {
  120. let editor = NCUtility.sharedInstance.isDirectEditing(metadata)!
  121. if editor == k_editor_text || editor == k_editor_onlyoffice {
  122. NCUtility.sharedInstance.startActivityIndicator(view: backgroundView, bottom: 0)
  123. if metadata.url == "" {
  124. var customUserAgent: String?
  125. let fileNamePath = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: metadata.serverUrl, activeUrl: appDelegate.activeUrl)!
  126. if editor == k_editor_onlyoffice {
  127. customUserAgent = NCUtility.sharedInstance.getCustomUserAgentOnlyOffice()
  128. }
  129. NCCommunication.sharedInstance.NCTextOpenFile(urlString: appDelegate.activeUrl, fileNamePath: fileNamePath, editor: editor, customUserAgent: customUserAgent, account: appDelegate.activeAccount) { (account, url, errorCode, errorMessage) in
  130. if errorCode == 0 && account == self.appDelegate.activeAccount && url != nil {
  131. let nextcloudText = NCViewerNextcloudText.init(frame: self.backgroundView.frame, configuration: WKWebViewConfiguration())
  132. nextcloudText.viewerAt(url!, metadata: metadata, editor: editor, view: self.backgroundView, viewController: self)
  133. if editor == k_editor_text && self.splitViewController!.isCollapsed {
  134. self.navigationController?.navigationItem.hidesBackButton = true
  135. }
  136. } else if errorCode != 0 {
  137. NCContentPresenter.shared.messageNotification("_error_", description: errorMessage, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  138. self.navigationController?.popViewController(animated: true)
  139. } else {
  140. self.navigationController?.popViewController(animated: true)
  141. }
  142. }
  143. } else {
  144. let nextcloudText = NCViewerNextcloudText.init(frame: backgroundView.frame, configuration: WKWebViewConfiguration())
  145. nextcloudText.viewerAt(metadata.url, metadata: metadata, editor: editor, view: backgroundView, viewController: self)
  146. if editor == k_editor_text && self.splitViewController!.isCollapsed {
  147. self.navigationController?.navigationItem.hidesBackButton = true
  148. }
  149. }
  150. }
  151. return
  152. }
  153. // RichDocument: Collabora
  154. if NCUtility.sharedInstance.isRichDocument(metadata) && appDelegate.reachability.isReachable() {
  155. NCUtility.sharedInstance.startActivityIndicator(view: backgroundView, bottom: 0)
  156. if metadata.url == "" {
  157. OCNetworking.sharedManager()?.createLinkRichdocuments(withAccount: appDelegate.activeAccount, fileId: metadata.fileId, completion: { (account, url, errorMessage, errorCode) in
  158. if errorCode == 0 && account == self.appDelegate.activeAccount && url != nil {
  159. let richDocument = NCViewerRichdocument.init(frame: self.backgroundView.frame, configuration: WKWebViewConfiguration())
  160. richDocument.viewRichDocumentAt(url!, metadata: metadata, view: self.backgroundView, viewController: self)
  161. if self.splitViewController != nil && self.splitViewController!.isCollapsed {
  162. self.navigationController?.navigationItem.hidesBackButton = true
  163. }
  164. } else if errorCode != 0 {
  165. NCContentPresenter.shared.messageNotification("_error_", description: errorMessage, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  166. self.navigationController?.popViewController(animated: true)
  167. } else {
  168. self.navigationController?.popViewController(animated: true)
  169. }
  170. })
  171. } else {
  172. let richDocument = NCViewerRichdocument.init(frame: backgroundView.frame, configuration: WKWebViewConfiguration())
  173. richDocument.viewRichDocumentAt(metadata.url, metadata: metadata, view: backgroundView, viewController: self)
  174. if self.splitViewController != nil && self.splitViewController!.isCollapsed {
  175. self.navigationController?.navigationItem.hidesBackButton = true
  176. }
  177. }
  178. }
  179. }
  180. // OTHER
  181. NCViewerDocumentWeb.sharedInstance.viewDocumentWebAt(metadata, view: backgroundView)
  182. }
  183. }