NCPlayerToolBar.swift 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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. import UIKit
  27. import AVKit
  28. import MediaPlayer
  29. class NCPlayerToolBar: UIView {
  30. @IBOutlet weak var playerTopToolBarView: UIView!
  31. @IBOutlet weak var pipButton: UIButton!
  32. @IBOutlet weak var muteButton: UIButton!
  33. @IBOutlet weak var playButton: UIButton!
  34. @IBOutlet weak var forwardButton: UIButton!
  35. @IBOutlet weak var backButton: UIButton!
  36. @IBOutlet weak var playbackSlider: UISlider!
  37. @IBOutlet weak var labelLeftTime: UILabel!
  38. @IBOutlet weak var labelCurrentTime: UILabel!
  39. enum sliderEventType {
  40. case began
  41. case ended
  42. case moved
  43. }
  44. private var ncplayer: NCPlayer?
  45. private var metadata: tableMetadata?
  46. private var wasInPlay: Bool = false
  47. private var playbackSliderEvent: sliderEventType = .ended
  48. private var timerAutoHide: Timer?
  49. var pictureInPictureController: AVPictureInPictureController?
  50. weak var viewerMediaPage: NCViewerMediaPage?
  51. // MARK: - View Life Cycle
  52. override func awakeFromNib() {
  53. super.awakeFromNib()
  54. // for disable gesture of UIPageViewController
  55. let panRecognizer = UIPanGestureRecognizer(target: self, action: nil)
  56. addGestureRecognizer(panRecognizer)
  57. let singleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didSingleTapWith(gestureRecognizer:)))
  58. addGestureRecognizer(singleTapGestureRecognizer)
  59. self.layer.cornerRadius = 15
  60. self.layer.masksToBounds = true
  61. let blurEffectView = UIVisualEffectView(effect: UIBlurEffect(style: .dark))
  62. blurEffectView.frame = self.bounds
  63. blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  64. self.insertSubview(blurEffectView, at: 0)
  65. playerTopToolBarView.layer.cornerRadius = 10
  66. playerTopToolBarView.layer.masksToBounds = true
  67. let blurEffectTopToolBarView = UIVisualEffectView(effect: UIBlurEffect(style: .dark))
  68. blurEffectTopToolBarView.frame = playerTopToolBarView.bounds
  69. blurEffectTopToolBarView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
  70. playerTopToolBarView.insertSubview(blurEffectTopToolBarView, at: 0)
  71. pipButton.setImage(NCUtility.shared.loadImage(named: "pip.enter", color: .lightGray), for: .normal)
  72. pipButton.isEnabled = false
  73. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .lightGray), for: .normal)
  74. muteButton.isEnabled = false
  75. playbackSlider.value = 0
  76. playbackSlider.minimumValue = 0
  77. playbackSlider.maximumValue = 0
  78. playbackSlider.isContinuous = true
  79. playbackSlider.tintColor = .lightGray
  80. playbackSlider.isEnabled = false
  81. labelCurrentTime.text = NCUtility.shared.stringFromTime(.zero)
  82. labelCurrentTime.textColor = .lightGray
  83. labelLeftTime.text = NCUtility.shared.stringFromTime(.zero)
  84. labelLeftTime.textColor = .lightGray
  85. backButton.isEnabled = false
  86. playButton.setImage(NCUtility.shared.loadImage(named: "play.fill", color: .lightGray), for: .normal)
  87. playButton.isEnabled = false
  88. forwardButton.isEnabled = false
  89. NotificationCenter.default.addObserver(self, selector: #selector(handleInterruption), name: AVAudioSession.interruptionNotification, object: nil)
  90. NotificationCenter.default.addObserver(self, selector: #selector(handleRouteChange), name: AVAudioSession.routeChangeNotification, object: nil)
  91. }
  92. required init?(coder aDecoder: NSCoder) {
  93. super.init(coder: aDecoder)
  94. }
  95. deinit {
  96. print("deinit NCPlayerToolBar")
  97. NotificationCenter.default.removeObserver(self, name: AVAudioSession.interruptionNotification, object: nil)
  98. NotificationCenter.default.removeObserver(self, name: AVAudioSession.routeChangeNotification, object: nil)
  99. }
  100. // MARK: -
  101. func setBarPlayer(ncplayer: NCPlayer, metadata: tableMetadata) {
  102. self.ncplayer = ncplayer
  103. self.metadata = metadata
  104. playbackSlider.value = 0
  105. playbackSlider.minimumValue = 0
  106. playbackSlider.maximumValue = Float(ncplayer.durationTime.seconds)
  107. playbackSlider.addTarget(self, action: #selector(onSliderValChanged(slider:event:)), for: .valueChanged)
  108. labelCurrentTime.text = NCUtility.shared.stringFromTime(.zero)
  109. labelLeftTime.text = "-" + NCUtility.shared.stringFromTime(ncplayer.durationTime)
  110. updateToolBar()
  111. }
  112. public func updateToolBar() {
  113. guard let ncplayer = self.ncplayer else { return }
  114. // MUTE
  115. if let muteButton = muteButton {
  116. if CCUtility.getAudioMute() {
  117. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOff", color: .white), for: .normal)
  118. } else {
  119. muteButton.setImage(NCUtility.shared.loadImage(named: "audioOn", color: .white), for: .normal)
  120. }
  121. muteButton.isEnabled = true
  122. }
  123. // PIP
  124. if let pipButton = pipButton {
  125. if metadata?.classFile == NCCommunicationCommon.typeClassFile.video.rawValue && AVPictureInPictureController.isPictureInPictureSupported() {
  126. pipButton.setImage(NCUtility.shared.loadImage(named: "pip.enter", color: .white), for: .normal)
  127. pipButton.isEnabled = true
  128. } else {
  129. pipButton.setImage(NCUtility.shared.loadImage(named: "pip.enter", color: .gray), for: .normal)
  130. pipButton.isEnabled = false
  131. }
  132. }
  133. // SLIDER TIME (START - END)
  134. let time = (ncplayer.player?.currentTime() ?? .zero).convertScale(1000, method: .default)
  135. playbackSlider.value = Float(time.seconds)
  136. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyElapsedPlaybackTime] = time.seconds
  137. playbackSlider.isEnabled = true
  138. labelCurrentTime.text = NCUtility.shared.stringFromTime(time)
  139. labelLeftTime.text = "-" + NCUtility.shared.stringFromTime(ncplayer.durationTime - time)
  140. // BACK
  141. if #available(iOS 13.0, *) {
  142. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.10", color: .white), for: .normal)
  143. } else {
  144. backButton.setImage(NCUtility.shared.loadImage(named: "gobackward.10", color: .white, size: 30), for: .normal)
  145. }
  146. backButton.isEnabled = true
  147. // PLAY
  148. if ncplayer.isPlay() {
  149. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 1
  150. } else {
  151. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPNowPlayingInfoPropertyPlaybackRate] = 0
  152. }
  153. let namedPlay = ncplayer.isPlay() ? "pause.fill" : "play.fill"
  154. if #available(iOS 13.0, *) {
  155. playButton.setImage(NCUtility.shared.loadImage(named: namedPlay, color: .white, symbolConfiguration: UIImage.SymbolConfiguration(pointSize: 30)), for: .normal)
  156. } else {
  157. playButton.setImage(NCUtility.shared.loadImage(named: namedPlay, color: .white, size: 30), for: .normal)
  158. }
  159. playButton.isEnabled = true
  160. // FORWARD
  161. if #available(iOS 13.0, *) {
  162. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.10", color: .white), for: .normal)
  163. } else {
  164. forwardButton.setImage(NCUtility.shared.loadImage(named: "goforward.10", color: .white, size: 30), for: .normal)
  165. }
  166. forwardButton.isEnabled = true
  167. }
  168. // MARK: Handle Notifications
  169. @objc func handleRouteChange(notification: Notification) {
  170. guard let userInfo = notification.userInfo, let reasonValue = userInfo[AVAudioSessionRouteChangeReasonKey] as? UInt, let reason = AVAudioSession.RouteChangeReason(rawValue: reasonValue) else { return }
  171. switch reason {
  172. case .newDeviceAvailable:
  173. let session = AVAudioSession.sharedInstance()
  174. for output in session.currentRoute.outputs where output.portType == AVAudioSession.Port.headphones {
  175. print("headphones connected")
  176. DispatchQueue.main.sync {
  177. ncplayer?.playerPlay()
  178. startTimerAutoHide()
  179. }
  180. break
  181. }
  182. case .oldDeviceUnavailable:
  183. if let previousRoute = userInfo[AVAudioSessionRouteChangePreviousRouteKey] as? AVAudioSessionRouteDescription {
  184. for output in previousRoute.outputs where output.portType == AVAudioSession.Port.headphones {
  185. print("headphones disconnected")
  186. DispatchQueue.main.sync {
  187. ncplayer?.playerPause()
  188. ncplayer?.saveCurrentTime()
  189. }
  190. break
  191. }
  192. }
  193. default: ()
  194. }
  195. }
  196. @objc func handleInterruption(notification: Notification) {
  197. guard let userInfo = notification.userInfo, let typeValue = userInfo[AVAudioSessionInterruptionTypeKey] as? UInt, let type = AVAudioSession.InterruptionType(rawValue: typeValue) else { return }
  198. if type == .began {
  199. print("Interruption began")
  200. } else if type == .ended {
  201. if let optionsValue = userInfo[AVAudioSessionInterruptionOptionKey] as? UInt {
  202. let options = AVAudioSession.InterruptionOptions(rawValue: optionsValue)
  203. if options.contains(.shouldResume) {
  204. print("Interruption Ended - playback should resume")
  205. ncplayer?.playerPlay()
  206. startTimerAutoHide()
  207. } else {
  208. print("Interruption Ended - playback should NOT resume")
  209. }
  210. }
  211. }
  212. }
  213. // MARK: -
  214. public func show(enableTimerAutoHide: Bool = false) {
  215. if metadata?.classFile != NCCommunicationCommon.typeClassFile.video.rawValue && metadata?.classFile != NCCommunicationCommon.typeClassFile.audio.rawValue { return }
  216. if let metadata = self.metadata, metadata.livePhoto { return }
  217. timerAutoHide?.invalidate()
  218. if enableTimerAutoHide {
  219. startTimerAutoHide()
  220. }
  221. if !self.isHidden { return }
  222. UIView.animate(withDuration: 0.3, animations: {
  223. self.alpha = 1
  224. self.playerTopToolBarView.alpha = 1
  225. }, completion: { (_: Bool) in
  226. self.isHidden = false
  227. self.playerTopToolBarView.isHidden = false
  228. })
  229. updateToolBar()
  230. }
  231. func isShow() -> Bool {
  232. return !self.isHidden
  233. }
  234. public func hide() {
  235. UIView.animate(withDuration: 0.3, animations: {
  236. self.alpha = 0
  237. self.playerTopToolBarView.alpha = 0
  238. }, completion: { (_: Bool) in
  239. self.isHidden = true
  240. self.playerTopToolBarView.isHidden = true
  241. })
  242. }
  243. @objc private func automaticHide() {
  244. if let metadata = self.metadata {
  245. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterHidePlayerToolBar, userInfo: ["ocId": metadata.ocId])
  246. }
  247. }
  248. private func startTimerAutoHide() {
  249. timerAutoHide?.invalidate()
  250. timerAutoHide = Timer.scheduledTimer(timeInterval: 3.5, target: self, selector: #selector(automaticHide), userInfo: nil, repeats: false)
  251. }
  252. private func reStartTimerAutoHide() {
  253. if let timerAutoHide = timerAutoHide, timerAutoHide.isValid {
  254. startTimerAutoHide()
  255. }
  256. }
  257. func skip(seconds: Float64) {
  258. guard let ncplayer = ncplayer else { return }
  259. guard let player = ncplayer.player else { return }
  260. let currentTime = player.currentTime()
  261. var newTime: CMTime = .zero
  262. let timeToAdd: CMTime = CMTimeMakeWithSeconds(abs(seconds), preferredTimescale: 1)
  263. if seconds > 0 {
  264. newTime = CMTimeAdd(currentTime, timeToAdd)
  265. if newTime < ncplayer.durationTime {
  266. ncplayer.videoSeek(time: newTime)
  267. } else if newTime >= ncplayer.durationTime {
  268. let timeToSubtract: CMTime = CMTimeMakeWithSeconds(3, preferredTimescale: 1)
  269. newTime = CMTimeSubtract(ncplayer.durationTime, timeToSubtract)
  270. if newTime > currentTime {
  271. ncplayer.videoSeek(time: newTime)
  272. }
  273. }
  274. } else {
  275. newTime = CMTimeSubtract(currentTime, timeToAdd)
  276. if newTime.seconds < 0 {
  277. newTime = .zero
  278. }
  279. ncplayer.videoSeek(time: newTime)
  280. }
  281. updateToolBar()
  282. reStartTimerAutoHide()
  283. }
  284. func isPictureInPictureActive() -> Bool {
  285. if let pictureInPictureController = self.pictureInPictureController, pictureInPictureController.isPictureInPictureActive {
  286. return true
  287. } else {
  288. return false
  289. }
  290. }
  291. func stopTimerAutoHide() {
  292. timerAutoHide?.invalidate()
  293. }
  294. // MARK: - Event / Gesture
  295. @objc func onSliderValChanged(slider: UISlider, event: UIEvent) {
  296. if let touchEvent = event.allTouches?.first, let ncplayer = ncplayer {
  297. let seconds: Int64 = Int64(self.playbackSlider.value)
  298. let targetTime: CMTime = CMTimeMake(value: seconds, timescale: 1)
  299. switch touchEvent.phase {
  300. case .began:
  301. wasInPlay = ncplayer.isPlay()
  302. ncplayer.playerPause()
  303. playbackSliderEvent = .began
  304. case .moved:
  305. ncplayer.videoSeek(time: targetTime)
  306. playbackSliderEvent = .moved
  307. case .ended:
  308. ncplayer.videoSeek(time: targetTime)
  309. if wasInPlay {
  310. ncplayer.playerPlay()
  311. }
  312. playbackSliderEvent = .ended
  313. default:
  314. break
  315. }
  316. reStartTimerAutoHide()
  317. }
  318. }
  319. // MARK: - Action
  320. @objc func didSingleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  321. // nothing
  322. }
  323. @IBAction func buttonPlayerToolBarTouchInside(_ sender: UIButton) {
  324. // nothing
  325. }
  326. @IBAction func buttonPlayerTopToolBarTouchInside(_ sender: UIButton) {
  327. // nothing
  328. }
  329. @IBAction func playerPause(_ sender: Any) {
  330. if ncplayer?.player?.timeControlStatus == .playing {
  331. ncplayer?.playerPause()
  332. ncplayer?.saveCurrentTime()
  333. timerAutoHide?.invalidate()
  334. } else if ncplayer?.player?.timeControlStatus == .paused {
  335. ncplayer?.playerPlay()
  336. startTimerAutoHide()
  337. } else if ncplayer?.player?.timeControlStatus == .waitingToPlayAtSpecifiedRate {
  338. print("timeControlStatus.waitingToPlayAtSpecifiedRate")
  339. if let reason = ncplayer?.player?.reasonForWaitingToPlay {
  340. switch reason {
  341. case .evaluatingBufferingRate:
  342. print("reasonForWaitingToPlay.evaluatingBufferingRate")
  343. case .toMinimizeStalls:
  344. print("reasonForWaitingToPlay.toMinimizeStalls")
  345. case .noItemToPlay:
  346. print("reasonForWaitingToPlay.noItemToPlay")
  347. default:
  348. print("Unknown \(reason)")
  349. }
  350. }
  351. }
  352. }
  353. @IBAction func setMute(_ sender: Any) {
  354. let mute = CCUtility.getAudioMute()
  355. CCUtility.setAudioMute(!mute)
  356. ncplayer?.player?.isMuted = !mute
  357. updateToolBar()
  358. reStartTimerAutoHide()
  359. }
  360. @IBAction func setPip(_ sender: Any) {
  361. guard let videoLayer = ncplayer?.videoLayer else { return }
  362. if let pictureInPictureController = self.pictureInPictureController, pictureInPictureController.isPictureInPictureActive {
  363. pictureInPictureController.stopPictureInPicture()
  364. }
  365. if pictureInPictureController == nil {
  366. pictureInPictureController = AVPictureInPictureController(playerLayer: videoLayer)
  367. pictureInPictureController?.delegate = self
  368. }
  369. if let pictureInPictureController = pictureInPictureController, pictureInPictureController.isPictureInPicturePossible, let metadata = self.metadata {
  370. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  371. pictureInPictureController.startPictureInPicture()
  372. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterHidePlayerToolBar, userInfo: ["ocId": metadata.ocId])
  373. }
  374. }
  375. }
  376. @IBAction func forwardButtonSec(_ sender: Any) {
  377. skip(seconds: 10)
  378. /*
  379. if metadata?.classFile == NCCommunicationCommon.typeClassFile.video.rawValue {
  380. skip(seconds: 10)
  381. } else if metadata?.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  382. forward()
  383. }
  384. */
  385. }
  386. @IBAction func backButtonSec(_ sender: Any) {
  387. skip(seconds: -10)
  388. /*
  389. if metadata?.classFile == NCCommunicationCommon.typeClassFile.video.rawValue {
  390. skip(seconds: -10)
  391. } else if metadata?.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  392. backward()
  393. }
  394. */
  395. }
  396. func forward() {
  397. var index: Int = 0
  398. if let currentIndex = self.viewerMediaPage?.currentIndex, let metadatas = self.viewerMediaPage?.metadatas, let ncplayer = self.ncplayer {
  399. if currentIndex == metadatas.count - 1 {
  400. index = 0
  401. } else {
  402. index = currentIndex + 1
  403. }
  404. self.viewerMediaPage?.goTo(index: index, direction: .forward, autoPlay: ncplayer.isPlay())
  405. }
  406. }
  407. func backward() {
  408. var index: Int = 0
  409. if let currentIndex = self.viewerMediaPage?.currentIndex, let metadatas = self.viewerMediaPage?.metadatas, let ncplayer = self.ncplayer {
  410. if currentIndex == 0 {
  411. index = metadatas.count - 1
  412. } else {
  413. index = currentIndex - 1
  414. }
  415. self.viewerMediaPage?.goTo(index: index, direction: .reverse, autoPlay: ncplayer.isPlay())
  416. }
  417. }
  418. }
  419. extension NCPlayerToolBar: AVPictureInPictureControllerDelegate {
  420. func pictureInPictureControllerDidStopPictureInPicture(_ pictureInPictureController: AVPictureInPictureController) {
  421. if let metadata = self.metadata, let ncplayer = self.ncplayer, !ncplayer.isPlay() {
  422. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterShowPlayerToolBar, userInfo: ["ocId": metadata.ocId, "enableTimerAutoHide": false])
  423. }
  424. }
  425. }