NCViewer.swift 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //
  2. // NCViewer.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 16/10/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. class NCViewer: NSObject {
  25. @objc static let shared: NCViewer = {
  26. let instance = NCViewer()
  27. return instance
  28. }()
  29. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  30. private var viewerQuickLook: NCViewerQuickLook?
  31. func view(viewController: UIViewController, metadata: tableMetadata) {
  32. // VIDEO AUDIO
  33. if metadata.typeFile == k_metadataTypeFile_audio || metadata.typeFile == k_metadataTypeFile_video {
  34. if let navigationController = getPushNavigationController(viewController: viewController, serverUrl: metadata.serverUrl) {
  35. let viewController:NCViewerVideo = UIStoryboard(name: "NCViewerVideo", bundle: nil).instantiateInitialViewController() as! NCViewerVideo
  36. viewController.metadata = metadata
  37. navigationController.pushViewController(viewController, animated: true)
  38. }
  39. return
  40. }
  41. // DOCUMENTS
  42. if metadata.typeFile == k_metadataTypeFile_document {
  43. // PDF
  44. if metadata.contentType == "application/pdf" {
  45. if let navigationController = getPushNavigationController(viewController: viewController, serverUrl: metadata.serverUrl) {
  46. let viewController:NCViewerPDF = UIStoryboard(name: "NCViewerPDF", bundle: nil).instantiateInitialViewController() as! NCViewerPDF
  47. viewController.metadata = metadata
  48. navigationController.pushViewController(viewController, animated: true)
  49. }
  50. return
  51. }
  52. }
  53. // OTHER
  54. let fileNamePath = NSTemporaryDirectory() + metadata.fileNameView
  55. CCUtility.copyFile(atPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView), toPath: fileNamePath)
  56. viewerQuickLook = NCViewerQuickLook.init()
  57. viewerQuickLook?.quickLook(url: URL(fileURLWithPath: fileNamePath))
  58. }
  59. private func getPushNavigationController(viewController: UIViewController, serverUrl: String) -> UINavigationController? {
  60. if viewController is NCFiles || viewController is NCFavorite || viewController is NCOffline || viewController is NCRecent || viewController is NCFileViewInFolder {
  61. if serverUrl == appDelegate.activeServerUrl {
  62. return viewController.navigationController
  63. }
  64. }
  65. return nil
  66. }
  67. }