NCPlayerToolBar.swift 21 KB

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