NCPlayerToolBar.swift 22 KB

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