2021-07-18 22:32:46 +00:00
|
|
|
import AVKit
|
|
|
|
import Logging
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
final class PlayerViewController: UIViewController {
|
|
|
|
var playerLoaded = false
|
2021-12-04 19:35:41 +00:00
|
|
|
var commentsModel: CommentsModel!
|
2021-10-28 17:14:55 +00:00
|
|
|
var navigationModel: NavigationModel!
|
2021-09-25 08:18:22 +00:00
|
|
|
var playerModel: PlayerModel!
|
2021-07-18 22:32:46 +00:00
|
|
|
var playerViewController = AVPlayerViewController()
|
|
|
|
|
2021-11-07 20:51:22 +00:00
|
|
|
#if !os(tvOS)
|
|
|
|
var aspectRatio: Double? {
|
|
|
|
let ratio = Double(playerViewController.videoBounds.width) / Double(playerViewController.videoBounds.height)
|
2021-11-07 17:53:00 +00:00
|
|
|
|
2021-11-07 20:51:22 +00:00
|
|
|
guard ratio.isFinite else {
|
|
|
|
return VideoPlayerView.defaultAspectRatio // swiftlint:disable:this implicit_return
|
|
|
|
}
|
2021-11-07 17:53:00 +00:00
|
|
|
|
2021-11-07 20:51:22 +00:00
|
|
|
return [ratio, 1.0].max()!
|
|
|
|
}
|
|
|
|
#endif
|
2021-11-07 17:53:00 +00:00
|
|
|
|
2021-07-18 22:32:46 +00:00
|
|
|
override func viewWillAppear(_ animated: Bool) {
|
|
|
|
super.viewWillAppear(animated)
|
|
|
|
|
2021-08-17 22:00:53 +00:00
|
|
|
loadPlayer()
|
2021-10-28 17:14:55 +00:00
|
|
|
|
|
|
|
#if os(tvOS)
|
|
|
|
if !playerViewController.isBeingPresented, !playerViewController.isBeingDismissed {
|
|
|
|
present(playerViewController, animated: false)
|
|
|
|
}
|
|
|
|
#endif
|
2021-07-18 22:32:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func loadPlayer() {
|
2021-08-17 22:00:53 +00:00
|
|
|
guard !playerLoaded else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-05 20:20:09 +00:00
|
|
|
playerModel.controller = self
|
2021-09-25 08:18:22 +00:00
|
|
|
playerViewController.player = playerModel.player
|
2021-10-05 20:20:09 +00:00
|
|
|
playerViewController.allowsPictureInPicturePlayback = true
|
|
|
|
playerViewController.delegate = self
|
2021-07-18 22:32:46 +00:00
|
|
|
|
|
|
|
#if os(tvOS)
|
2021-10-05 20:20:09 +00:00
|
|
|
playerModel.avPlayerViewController = playerViewController
|
2021-12-06 18:12:59 +00:00
|
|
|
var infoViewControllers = [UIHostingController<AnyView>]()
|
|
|
|
if CommentsModel.enabled {
|
|
|
|
infoViewControllers.append(infoViewController([.comments], title: "Comments"))
|
|
|
|
}
|
|
|
|
infoViewControllers.append(contentsOf: [
|
2021-11-02 23:02:02 +00:00
|
|
|
infoViewController([.related], title: "Related"),
|
|
|
|
infoViewController([.playingNext, .playedPreviously], title: "Playing Next")
|
2021-12-06 18:12:59 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
playerViewController.customInfoViewControllers = infoViewControllers
|
2021-07-18 22:32:46 +00:00
|
|
|
#else
|
2021-08-17 22:00:53 +00:00
|
|
|
embedViewController()
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-08-17 22:12:59 +00:00
|
|
|
#if os(tvOS)
|
2021-11-02 23:02:02 +00:00
|
|
|
func infoViewController(
|
|
|
|
_ sections: [NowPlayingView.ViewSection],
|
|
|
|
title: String
|
|
|
|
) -> UIHostingController<AnyView> {
|
2021-10-05 20:20:09 +00:00
|
|
|
let controller = UIHostingController(rootView:
|
|
|
|
AnyView(
|
2021-11-02 23:02:02 +00:00
|
|
|
NowPlayingView(sections: sections, inInfoViewController: true)
|
2021-10-13 22:05:19 +00:00
|
|
|
.frame(maxHeight: 600)
|
2021-12-04 19:35:41 +00:00
|
|
|
.environmentObject(commentsModel)
|
2021-10-05 20:20:09 +00:00
|
|
|
.environmentObject(playerModel)
|
|
|
|
)
|
2021-08-17 22:12:59 +00:00
|
|
|
)
|
|
|
|
|
2021-11-02 23:02:02 +00:00
|
|
|
controller.title = title
|
2021-10-05 20:20:09 +00:00
|
|
|
|
|
|
|
return controller
|
2021-08-17 22:12:59 +00:00
|
|
|
}
|
|
|
|
#else
|
2021-08-17 22:00:53 +00:00
|
|
|
func embedViewController() {
|
2021-07-18 22:32:46 +00:00
|
|
|
playerViewController.view.frame = view.bounds
|
|
|
|
|
|
|
|
addChild(playerViewController)
|
|
|
|
view.addSubview(playerViewController.view)
|
|
|
|
|
|
|
|
playerViewController.didMove(toParent: self)
|
2021-08-17 22:00:53 +00:00
|
|
|
}
|
|
|
|
#endif
|
2021-07-18 22:32:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extension PlayerViewController: AVPlayerViewControllerDelegate {
|
|
|
|
func playerViewControllerShouldDismiss(_: AVPlayerViewController) -> Bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2021-08-17 22:00:53 +00:00
|
|
|
func playerViewControllerShouldAutomaticallyDismissAtPictureInPictureStart(_: AVPlayerViewController) -> Bool {
|
2021-10-28 17:14:55 +00:00
|
|
|
true
|
2021-08-17 22:00:53 +00:00
|
|
|
}
|
|
|
|
|
2021-10-23 10:13:05 +00:00
|
|
|
func playerViewControllerWillBeginDismissalTransition(_: AVPlayerViewController) {}
|
2021-10-05 20:20:09 +00:00
|
|
|
|
2021-07-29 22:28:28 +00:00
|
|
|
func playerViewControllerDidEndDismissalTransition(_: AVPlayerViewController) {
|
2021-07-18 22:32:46 +00:00
|
|
|
dismiss(animated: false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func playerViewController(
|
|
|
|
_: AVPlayerViewController,
|
2021-08-01 21:25:50 +00:00
|
|
|
willBeginFullScreenPresentationWithAnimationCoordinator _: UIViewControllerTransitionCoordinator
|
2021-10-05 20:20:09 +00:00
|
|
|
) {}
|
2021-07-18 22:32:46 +00:00
|
|
|
|
|
|
|
func playerViewController(
|
|
|
|
_: AVPlayerViewController,
|
2021-07-29 22:28:28 +00:00
|
|
|
willEndFullScreenPresentationWithAnimationCoordinator coordinator: UIViewControllerTransitionCoordinator
|
2021-07-18 22:32:46 +00:00
|
|
|
) {
|
2021-07-29 22:28:28 +00:00
|
|
|
coordinator.animate(alongsideTransition: nil) { context in
|
|
|
|
if !context.isCancelled {
|
2021-08-22 19:13:33 +00:00
|
|
|
#if os(iOS)
|
|
|
|
if self.traitCollection.verticalSizeClass == .compact {
|
|
|
|
self.dismiss(animated: true)
|
|
|
|
}
|
|
|
|
#endif
|
2021-07-29 22:28:28 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-18 22:32:46 +00:00
|
|
|
}
|
2021-08-17 22:00:53 +00:00
|
|
|
|
2021-10-28 17:14:55 +00:00
|
|
|
func playerViewController(
|
|
|
|
_ playerViewController: AVPlayerViewController,
|
|
|
|
restoreUserInterfaceForPictureInPictureStopWithCompletionHandler completionHandler: @escaping (Bool) -> Void
|
|
|
|
) {
|
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
|
|
|
|
if self.navigationModel.presentingChannel {
|
|
|
|
self.playerModel.playerNavigationLinkActive = true
|
|
|
|
} else {
|
|
|
|
self.playerModel.presentPlayer()
|
|
|
|
}
|
|
|
|
|
|
|
|
#if os(tvOS)
|
2021-10-28 19:32:03 +00:00
|
|
|
if self.playerModel.playingInPictureInPicture {
|
2021-10-28 17:14:55 +00:00
|
|
|
self.present(playerViewController, animated: false) {
|
|
|
|
completionHandler(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
completionHandler(true)
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func playerViewControllerWillStartPictureInPicture(_: AVPlayerViewController) {
|
|
|
|
playerModel.playingInPictureInPicture = true
|
|
|
|
playerModel.playerNavigationLinkActive = false
|
|
|
|
}
|
2021-08-17 22:00:53 +00:00
|
|
|
|
2021-10-28 17:14:55 +00:00
|
|
|
func playerViewControllerWillStopPictureInPicture(_: AVPlayerViewController) {
|
|
|
|
playerModel.playingInPictureInPicture = false
|
|
|
|
}
|
2021-07-18 22:32:46 +00:00
|
|
|
}
|