NCPlayerToolBar.swift 20 KB

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