NCViewerQuickLook.swift 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //
  2. // NCViewerQuickLook.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 03/05/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 QuickLook
  25. @objc class NCViewerQuickLook: NSObject, QLPreviewControllerDelegate, QLPreviewControllerDataSource {
  26. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  27. let previewController = QLPreviewController()
  28. var previewItems: [PreviewItem] = []
  29. var viewController: UIViewController?
  30. @objc func quickLook(url: URL) {
  31. self.viewController = appDelegate.window.rootViewController
  32. URLSession.shared.dataTask(with: url) { data, response, error in
  33. guard let _ = data, error == nil else {
  34. self.presentAlertController(with: error?.localizedDescription ?? "Failed to look the file")
  35. return
  36. }
  37. //let httpURLResponse = response as? HTTPURLResponse
  38. //let mimeType = httpURLResponse?.mimeType
  39. var previewURL = url
  40. previewURL.hasHiddenExtension = true
  41. let previewItem = PreviewItem()
  42. previewItem.previewItemURL = previewURL
  43. self.previewItems.append(previewItem)
  44. DispatchQueue.main.async {
  45. UIApplication.shared.isNetworkActivityIndicatorVisible = false
  46. self.previewController.delegate = self
  47. self.previewController.dataSource = self
  48. self.previewController.currentPreviewItemIndex = 0
  49. self.viewController?.present(self.previewController, animated: true)
  50. }
  51. }.resume()
  52. UIApplication.shared.isNetworkActivityIndicatorVisible = true
  53. }
  54. func previewController(_ controller: QLPreviewController, previewItemAt index: Int) -> QLPreviewItem { previewItems[index] }
  55. func numberOfPreviewItems(in controller: QLPreviewController) -> Int {
  56. previewItems.count
  57. }
  58. func presentAlertController(with message: String) {
  59. // present your alert controller from the main thread
  60. DispatchQueue.main.async {
  61. UIApplication.shared.isNetworkActivityIndicatorVisible = false
  62. let alert = UIAlertController(title: "Alert", message: message, preferredStyle: .alert)
  63. alert.addAction(.init(title: "OK", style: .default))
  64. self.viewController?.present(alert, animated: true)
  65. }
  66. }
  67. }
  68. extension URL {
  69. var hasHiddenExtension: Bool {
  70. get { (try? resourceValues(forKeys: [.hasHiddenExtensionKey]))?.hasHiddenExtension == true }
  71. set {
  72. var resourceValues = URLResourceValues()
  73. resourceValues.hasHiddenExtension = newValue
  74. try? setResourceValues(resourceValues)
  75. }
  76. }
  77. }
  78. import QuickLook
  79. class PreviewItem: NSObject, QLPreviewItem {
  80. var previewItemURL: URL?
  81. }