NCViewerVideo.swift 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. //
  2. // NCViewerVideo.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 27/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. protocol NCViewerVideoDelegate {
  25. func stopPictureInPicture(metadata: tableMetadata)
  26. func startPictureInPicture(metadata: tableMetadata)
  27. func playerCurrentTime(_ time: CMTime?)
  28. }
  29. class NCViewerVideo: AVPlayerViewController {
  30. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. var metadata = tableMetadata()
  32. var seekTime: CMTime?
  33. var pictureInPicture: Bool = false
  34. // weak var delegateViewerImage: NCViewerImage?
  35. var delegateViewerVideo: NCViewerVideoDelegate?
  36. private var rateObserverToken: Any?
  37. override func viewDidLoad() {
  38. super.viewDidLoad()
  39. delegate = self
  40. }
  41. override func viewDidAppear(_ animated: Bool) {
  42. super.viewDidAppear(animated)
  43. var videoURL: URL?
  44. NCKTVHTTPCache.shared.startProxy(user: appDelegate.user, password: appDelegate.password, metadata: metadata)
  45. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  46. videoURL = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView))
  47. } else {
  48. guard let stringURL = (metadata.serverUrl + "/" + metadata.fileName).addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {
  49. return
  50. }
  51. allowsPictureInPicturePlayback = false
  52. videoURL = NCKTVHTTPCache.shared.getProxyURL(stringURL: stringURL)
  53. }
  54. if let url = videoURL {
  55. player = AVPlayer(url: url)
  56. // At end go back to start
  57. NotificationCenter.default.addObserver(forName: .AVPlayerItemDidPlayToEndTime, object: nil, queue: nil) { (notification) in
  58. self.player?.seek(to: CMTime.zero)
  59. }
  60. rateObserverToken = player?.addObserver(self, forKeyPath: "rate", options: [], context: nil)
  61. player?.play()
  62. if seekTime != nil {
  63. player?.seek(to: seekTime!)
  64. seekTime = nil
  65. }
  66. }
  67. }
  68. override func viewWillDisappear(_ animated: Bool) {
  69. super.viewWillDisappear(animated)
  70. if !pictureInPicture {
  71. player?.pause()
  72. if rateObserverToken != nil {
  73. player?.removeObserver(self, forKeyPath: "rate")
  74. NotificationCenter.default.removeObserver(self, name: NSNotification.Name.AVPlayerItemDidPlayToEndTime, object: nil)
  75. NCKTVHTTPCache.shared.stopProxy()
  76. self.delegateViewerVideo?.playerCurrentTime(player?.currentTime())
  77. self.rateObserverToken = nil
  78. }
  79. }
  80. }
  81. override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
  82. if keyPath != nil && keyPath == "rate" {
  83. NCKTVHTTPCache.shared.saveCache(metadata: metadata)
  84. }
  85. }
  86. }
  87. extension NCViewerVideo: AVPlayerViewControllerDelegate {
  88. func playerViewControllerDidStartPictureInPicture(_ playerViewController: AVPlayerViewController) {
  89. pictureInPicture = true
  90. delegateViewerVideo?.startPictureInPicture(metadata: metadata)
  91. }
  92. func playerViewControllerDidStopPictureInPicture(_ playerViewController: AVPlayerViewController) {
  93. pictureInPicture = false
  94. delegateViewerVideo?.stopPictureInPicture(metadata: metadata)
  95. }
  96. }