NCDetailViewController.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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 viewerImageView: NCViewerImageView!
  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. func viewUnload() {
  54. if let splitViewController = self.splitViewController as? NCSplitViewController {
  55. if splitViewController.isCollapsed {
  56. if let navigationController = splitViewController.viewControllers.last as? UINavigationController {
  57. navigationController.popToRootViewController(animated: true)
  58. }
  59. } else {
  60. for view in viewerImageView.subviews {
  61. view.removeFromSuperview()
  62. }
  63. self.navigationController?.navigationBar.topItem?.title = ""
  64. }
  65. }
  66. }
  67. @objc func changeTheming() {
  68. //backgroundView.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "logo"), multiplier: 2, color: NCBrandColor.sharedInstance.brand.withAlphaComponent(0.4))
  69. view.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  70. }
  71. func subViewActive() -> UIView? {
  72. return viewerImageView.subviews.first
  73. }
  74. @objc func viewFile(metadata: tableMetadata, selector: String?) {
  75. self.metadata = metadata
  76. self.selector = selector
  77. self.navigationController?.navigationBar.topItem?.title = metadata.fileNameView
  78. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, fileNameView: metadata.fileNameView)) == false {
  79. CCGraphics.createNewImage(from: metadata.fileNameView, ocId: metadata.ocId, extension: (metadata.fileNameView as NSString).pathExtension, filterGrayScale: false, typeFile: metadata.typeFile, writeImage: true)
  80. }
  81. if appDelegate.isMediaObserver {
  82. appDelegate.isMediaObserver = false
  83. NCViewerMedia.sharedInstance.removeObserver()
  84. }
  85. // IMAGE
  86. if metadata.typeFile == k_metadataTypeFile_image {
  87. if let metadatas = NCManageDatabase.sharedInstance.getMetadatas(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND typeFile == %@", metadata.account, metadata.serverUrl, k_metadataTypeFile_image), sorted: "fileName", ascending: true) {
  88. var assets: [NCViewerImageAsset?] = [NCViewerImageAsset]()
  89. for metadata in metadatas {
  90. let imagePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  91. if let image = UIImage(contentsOfFile: imagePath) {
  92. let asset = NCViewerImageAsset(image: image)
  93. assets.append(asset)
  94. }
  95. }
  96. viewerImageView.assets = assets
  97. }
  98. return
  99. }
  100. // AUDIO VIDEO
  101. if metadata.typeFile == k_metadataTypeFile_audio || metadata.typeFile == k_metadataTypeFile_video {
  102. NCViewerMedia.sharedInstance.viewMedia(metadata, view: viewerImageView)
  103. return
  104. }
  105. // DOCUMENT - INTERNAL VIEWER
  106. if metadata.typeFile == k_metadataTypeFile_document && selector != nil && selector == selectorLoadFileInternalView {
  107. NCViewerDocumentWeb.sharedInstance.viewDocumentWebAt(metadata, view: viewerImageView)
  108. return
  109. }
  110. // DOCUMENT
  111. if metadata.typeFile == k_metadataTypeFile_document {
  112. // PDF
  113. if metadata.contentType == "application/pdf" {
  114. if #available(iOS 11.0, *) {
  115. let viewerPDF = NCViewerPDF.init(frame: viewerImageView.frame)
  116. let filePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  117. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) == false {
  118. return
  119. }
  120. viewerPDF.setupPdfView(filePath: URL(fileURLWithPath: filePath), view: viewerImageView)
  121. }
  122. return
  123. }
  124. // DirectEditinf: Nextcloud Text - OnlyOffice
  125. if NCUtility.sharedInstance.isDirectEditing(metadata) != nil && appDelegate.reachability.isReachable() {
  126. let editor = NCUtility.sharedInstance.isDirectEditing(metadata)!
  127. if editor == k_editor_text || editor == k_editor_onlyoffice {
  128. NCUtility.sharedInstance.startActivityIndicator(view: viewerImageView, bottom: 0)
  129. if metadata.url == "" {
  130. var customUserAgent: String?
  131. let fileNamePath = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: metadata.serverUrl, activeUrl: appDelegate.activeUrl)!
  132. if editor == k_editor_onlyoffice {
  133. customUserAgent = NCUtility.sharedInstance.getCustomUserAgentOnlyOffice()
  134. }
  135. NCCommunication.sharedInstance.NCTextOpenFile(urlString: appDelegate.activeUrl, fileNamePath: fileNamePath, editor: editor, customUserAgent: customUserAgent, account: appDelegate.activeAccount) { (account, url, errorCode, errorMessage) in
  136. if errorCode == 0 && account == self.appDelegate.activeAccount && url != nil {
  137. let nextcloudText = NCViewerNextcloudText.init(frame: self.viewerImageView.frame, configuration: WKWebViewConfiguration())
  138. nextcloudText.viewerAt(url!, metadata: metadata, editor: editor, view: self.viewerImageView, viewController: self)
  139. if editor == k_editor_text && self.splitViewController!.isCollapsed {
  140. self.navigationController?.navigationItem.hidesBackButton = true
  141. }
  142. } else if errorCode != 0 {
  143. NCContentPresenter.shared.messageNotification("_error_", description: errorMessage, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  144. self.navigationController?.popViewController(animated: true)
  145. } else {
  146. self.navigationController?.popViewController(animated: true)
  147. }
  148. }
  149. } else {
  150. let nextcloudText = NCViewerNextcloudText.init(frame: viewerImageView.frame, configuration: WKWebViewConfiguration())
  151. nextcloudText.viewerAt(metadata.url, metadata: metadata, editor: editor, view: viewerImageView, viewController: self)
  152. if editor == k_editor_text && self.splitViewController!.isCollapsed {
  153. self.navigationController?.navigationItem.hidesBackButton = true
  154. }
  155. }
  156. }
  157. return
  158. }
  159. // RichDocument: Collabora
  160. if NCUtility.sharedInstance.isRichDocument(metadata) && appDelegate.reachability.isReachable() {
  161. NCUtility.sharedInstance.startActivityIndicator(view: viewerImageView, bottom: 0)
  162. if metadata.url == "" {
  163. OCNetworking.sharedManager()?.createLinkRichdocuments(withAccount: appDelegate.activeAccount, fileId: metadata.fileId, completion: { (account, url, errorMessage, errorCode) in
  164. if errorCode == 0 && account == self.appDelegate.activeAccount && url != nil {
  165. let richDocument = NCViewerRichdocument.init(frame: self.viewerImageView.frame, configuration: WKWebViewConfiguration())
  166. richDocument.viewRichDocumentAt(url!, metadata: metadata, view: self.viewerImageView, viewController: self)
  167. if self.splitViewController != nil && self.splitViewController!.isCollapsed {
  168. self.navigationController?.navigationItem.hidesBackButton = true
  169. }
  170. } else if errorCode != 0 {
  171. NCContentPresenter.shared.messageNotification("_error_", description: errorMessage, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  172. self.navigationController?.popViewController(animated: true)
  173. } else {
  174. self.navigationController?.popViewController(animated: true)
  175. }
  176. })
  177. } else {
  178. let richDocument = NCViewerRichdocument.init(frame: viewerImageView.frame, configuration: WKWebViewConfiguration())
  179. richDocument.viewRichDocumentAt(metadata.url, metadata: metadata, view: viewerImageView, viewController: self)
  180. if self.splitViewController != nil && self.splitViewController!.isCollapsed {
  181. self.navigationController?.navigationItem.hidesBackButton = true
  182. }
  183. }
  184. }
  185. }
  186. // OTHER
  187. NCViewerDocumentWeb.sharedInstance.viewDocumentWebAt(metadata, view: viewerImageView)
  188. }
  189. }