NCPlayerToolBar.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. //
  2. // NCPlayerToolBar.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/07/21.
  6. // Copyright © 2021 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 NCCommunication
  25. import CoreMedia
  26. class NCPlayerToolBar: UIView {
  27. @IBOutlet weak var playButton: UIButton!
  28. @IBOutlet weak var muteButton: UIButton!
  29. @IBOutlet weak var forwardButton: UIButton!
  30. @IBOutlet weak var backButton: UIButton!
  31. @IBOutlet weak var playbackSlider: UISlider!
  32. @IBOutlet weak var labelOverallDuration: UILabel!
  33. @IBOutlet weak var labelCurrentTime: UILabel!
  34. enum sliderEventType {
  35. case began
  36. case ended
  37. case moved
  38. }
  39. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  40. private var ncplayer: NCPlayer?
  41. private var wasInPlay: Bool = false
  42. private var playbackSliderEvent: sliderEventType = .ended
  43. private let timeToAdd: CMTime = CMTimeMakeWithSeconds(15, preferredTimescale: 1)
  44. private var durationTime: CMTime = .zero
  45. private var timeObserver: Any?
  46. private var timerAutoHide: Timer?
  47. private var metadata: tableMetadata?
  48. // MARK: - View Life Cycle
  49. override func awakeFromNib() {
  50. super.awakeFromNib()
  51. // for disable gesture of UIPageViewController
  52. let panRecognizer = UIPanGestureRecognizer(target: self, action: nil)
  53. addGestureRecognizer(panRecognizer)
  54. let singleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didSingleTapWith(gestureRecognizer:)))
  55. addGestureRecognizer(singleTapGestureRecognizer)
  56. let blurEffect = UIBlurEffect(style: .dark)
  57. let blurEffectView = UIVisualEffectView(effect: blurEffect)
  58. self.layer.cornerRadius = 15
  59. self.layer.masksToBounds = true
  60. blurEffectView.frame = self.bounds
  61. blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  62. self.insertSubview(blurEffectView, at:0)
  63. playbackSlider.value = 0
  64. playbackSlider.minimumValue = 0
  65. playbackSlider.maximumValue = 0
  66. playbackSlider.isContinuous = true
  67. playbackSlider.tintColor = .lightGray
  68. labelCurrentTime.text = NCUtility.shared.stringFromTime(.zero)
  69. labelCurrentTime.textColor = .lightGray
  70. labelOverallDuration.text = NCUtility.shared.stringFromTime(.zero)
  71. labelOverallDuration.textColor = .lightGray
  72. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.15", color: .lightGray), for: .normal)
  73. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .lightGray), for: .normal)
  74. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.15", color: .lightGray), for: .normal)
  75. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .lightGray), for: .normal)
  76. }
  77. deinit {
  78. print("deinit NCPlayerToolBar")
  79. if self.timeObserver != nil {
  80. appDelegate.player?.removeTimeObserver(self.timeObserver!)
  81. }
  82. }
  83. func setBarPlayer(ncplayer: NCPlayer, timeSeek: CMTime, metadata: tableMetadata?) {
  84. self.ncplayer = ncplayer
  85. self.metadata = metadata
  86. if let durationTime = NCManageDatabase.shared.getVideoDurationTime(metadata: ncplayer.metadata) {
  87. self.durationTime = durationTime
  88. playbackSlider.value = 0
  89. playbackSlider.minimumValue = 0
  90. playbackSlider.maximumValue = Float(durationTime.value)
  91. playbackSlider.addTarget(self, action: #selector(onSliderValChanged(slider:event:)), for: .valueChanged)
  92. labelCurrentTime.text = NCUtility.shared.stringFromTime(.zero)
  93. labelOverallDuration.text = "-" + NCUtility.shared.stringFromTime(durationTime)
  94. }
  95. updateToolBar(timeSeek: timeSeek)
  96. self.timeObserver = appDelegate.player?.addPeriodicTimeObserver(forInterval: CMTimeMakeWithSeconds(1, preferredTimescale: 1), queue: .main, using: { (CMTime) in
  97. if self.appDelegate.player?.currentItem?.status == .readyToPlay {
  98. if self.isHidden == false {
  99. self.updateToolBar()
  100. }
  101. }
  102. })
  103. }
  104. public func hideToolBar() {
  105. UIView.animate(withDuration: 0.3, animations: {
  106. self.alpha = 0
  107. }, completion: { (value: Bool) in
  108. self.isHidden = true
  109. })
  110. }
  111. @objc private func automaticHideToolBar() {
  112. if let metadata = self.metadata {
  113. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterHidePlayerToolBar, userInfo: ["ocId":metadata.ocId])
  114. }
  115. }
  116. private func startTimerAutoHide() {
  117. timerAutoHide?.invalidate()
  118. timerAutoHide = Timer.scheduledTimer(timeInterval: 3, target: self, selector: #selector(automaticHideToolBar), userInfo: nil, repeats: false)
  119. }
  120. public func showToolBar(metadata: tableMetadata, detailView: NCViewerMediaDetailView?, enableTimerAutoHide: Bool) {
  121. if metadata.classFile != NCCommunicationCommon.typeClassFile.video.rawValue && metadata.classFile != NCCommunicationCommon.typeClassFile.audio.rawValue { return }
  122. if metadata.livePhoto { return }
  123. timerAutoHide?.invalidate()
  124. if enableTimerAutoHide {
  125. startTimerAutoHide()
  126. }
  127. if !self.isHidden { return }
  128. if let detailView = detailView {
  129. if detailView.isShow() { return }
  130. }
  131. updateToolBar()
  132. UIView.animate(withDuration: 0.3, animations: {
  133. self.alpha = 1
  134. }, completion: { (value: Bool) in
  135. self.isHidden = false
  136. })
  137. }
  138. public func updateToolBar(timeSeek: CMTime? = nil) {
  139. var namedPlay = "play.fill"
  140. var currentTime = appDelegate.player?.currentTime() ?? .zero
  141. currentTime = currentTime.convertScale(1000, method: .default)
  142. if appDelegate.player?.rate == 1 { namedPlay = "pause.fill"}
  143. if timeSeek != nil {
  144. playbackSlider.value = Float(timeSeek!.value)
  145. } else {
  146. playbackSlider.value = Float(currentTime.value)
  147. }
  148. playbackSlider.isEnabled = true
  149. if #available(iOS 13.0, *) {
  150. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.15", color: .white), for: .normal)
  151. } else {
  152. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.15", color: .white, size: 30), for: .normal)
  153. }
  154. backButton.isEnabled = true
  155. if #available(iOS 13.0, *) {
  156. playButton.setImage(NCUtility.shared.loadImage(named: namedPlay, color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: 30)), for: .normal)
  157. } else {
  158. playButton.setImage(NCUtility.shared.loadImage(named: namedPlay, color: .white, size: 30), for: .normal)
  159. }
  160. playButton.isEnabled = true
  161. if #available(iOS 13.0, *) {
  162. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.15", color: .white), for: .normal)
  163. } else {
  164. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.15", color: .white, size: 30), for: .normal)
  165. }
  166. forwardButton.isEnabled = true
  167. if CCUtility.getAudioMute() {
  168. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .white), for: .normal)
  169. } else {
  170. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOn", color: .white), for: .normal)
  171. }
  172. muteButton.isEnabled = true
  173. labelCurrentTime.text = NCUtility.shared.stringFromTime(currentTime)
  174. labelOverallDuration.text = "-" + NCUtility.shared.stringFromTime(self.durationTime - currentTime)
  175. }
  176. //MARK: - Event / Gesture
  177. @objc func onSliderValChanged(slider: UISlider, event: UIEvent) {
  178. if let touchEvent = event.allTouches?.first {
  179. let seconds: Int64 = Int64(self.playbackSlider.value)
  180. let targetTime: CMTime = CMTimeMake(value: seconds, timescale: 1000)
  181. switch touchEvent.phase {
  182. case .began:
  183. wasInPlay = appDelegate.player?.rate == 1 ? true : false
  184. ncplayer?.videoPause()
  185. playbackSliderEvent = .began
  186. case .moved:
  187. ncplayer?.videoSeek(time: targetTime)
  188. playbackSliderEvent = .moved
  189. case .ended:
  190. ncplayer?.videoSeek(time: targetTime)
  191. if wasInPlay {
  192. ncplayer?.videoPlay()
  193. }
  194. playbackSliderEvent = .ended
  195. default:
  196. break
  197. }
  198. }
  199. }
  200. @objc func didSingleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  201. hideToolBar()
  202. }
  203. //MARK: - Action
  204. @IBAction func buttonTouchInside(_ sender: UIButton) {
  205. }
  206. @IBAction func playerPause(_ sender: Any) {
  207. if appDelegate.player?.timeControlStatus == .playing {
  208. ncplayer?.videoPause()
  209. if let time = appDelegate.player?.currentTime() {
  210. ncplayer?.saveTime(time)
  211. }
  212. timerAutoHide?.invalidate()
  213. } else if appDelegate.player?.timeControlStatus == .paused {
  214. ncplayer?.videoPlay()
  215. startTimerAutoHide()
  216. } else if appDelegate.player?.timeControlStatus == .waitingToPlayAtSpecifiedRate {
  217. print("timeControlStatus.waitingToPlayAtSpecifiedRate")
  218. if let reason = appDelegate.player?.reasonForWaitingToPlay {
  219. switch reason {
  220. case .evaluatingBufferingRate:
  221. print("reasonForWaitingToPlay.evaluatingBufferingRate")
  222. case .toMinimizeStalls:
  223. print("reasonForWaitingToPlay.toMinimizeStalls")
  224. case .noItemToPlay:
  225. print("reasonForWaitingToPlay.noItemToPlay")
  226. default:
  227. print("Unknown \(reason)")
  228. }
  229. }
  230. }
  231. }
  232. @IBAction func setMute(_ sender: Any) {
  233. let mute = CCUtility.getAudioMute()
  234. CCUtility.setAudioMute(!mute)
  235. appDelegate.player?.isMuted = !mute
  236. updateToolBar()
  237. }
  238. @IBAction func forwardButtonSec(_ sender: Any) {
  239. guard let ncplayer = ncplayer else { return }
  240. guard let player = appDelegate.player else { return }
  241. let currentTime = player.currentTime()
  242. let newTime = CMTimeAdd(currentTime, timeToAdd)
  243. if newTime < durationTime {
  244. ncplayer.videoSeek(time: newTime)
  245. } else if newTime >= durationTime {
  246. ncplayer.videoSeek(time: .zero)
  247. }
  248. }
  249. @IBAction func backButtonSec(_ sender: Any) {
  250. guard let ncplayer = ncplayer else { return }
  251. guard let player = appDelegate.player else { return }
  252. let currentTime = player.currentTime()
  253. let newTime = CMTimeSubtract(currentTime, timeToAdd)
  254. ncplayer.videoSeek(time: newTime)
  255. }
  256. }