NCPlayerToolBar.swift 21 KB

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