NCPlayerToolBar.swift 21 KB

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