yattee/Shared/YatteeApp.swift

279 lines
9.8 KiB
Swift
Raw Normal View History

2021-09-25 08:18:22 +00:00
import Defaults
import MediaPlayer
import PINCache
import SDWebImage
import SDWebImageWebPCoder
import Siesta
2021-06-09 20:51:23 +00:00
import SwiftUI
@main
2021-11-07 13:32:01 +00:00
struct YatteeApp: App {
2022-01-06 15:02:53 +00:00
static var version: String {
Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "unknown"
}
static var build: String {
Bundle.main.infoDictionary?["CFBundleVersion"] as? String ?? "unknown"
}
static var isForPreviews: Bool {
ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
}
2022-07-06 22:08:38 +00:00
static var logsDirectory: URL {
URL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true)
}
2021-10-24 09:16:04 +00:00
#if os(macOS)
@NSApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
#elseif os(iOS)
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
2021-10-24 09:16:04 +00:00
#endif
@State private var configured = false
@StateObject private var accounts = AccountsModel()
@StateObject private var comments = CommentsModel()
@StateObject private var instances = InstancesModel()
2021-11-08 23:14:28 +00:00
@StateObject private var menu = MenuModel()
@StateObject private var navigation = NavigationModel()
@StateObject private var networkState = NetworkStateModel()
@StateObject private var player = PlayerModel()
@StateObject private var playlists = PlaylistsModel()
@StateObject private var recents = RecentsModel()
@StateObject private var search = SearchModel()
@StateObject private var settings = SettingsModel()
@StateObject private var subscriptions = SubscriptionsModel()
@StateObject private var thumbnails = ThumbnailsModel()
2021-11-08 23:14:28 +00:00
let persistenceController = PersistenceController.shared
2022-09-01 18:01:01 +00:00
var playerControls: PlayerControlsModel { .shared }
2021-06-09 20:51:23 +00:00
var body: some Scene {
WindowGroup {
ContentView()
.onAppear(perform: configure)
.environment(\.managedObjectContext, persistenceController.container.viewContext)
.environmentObject(accounts)
.environmentObject(comments)
.environmentObject(instances)
.environmentObject(navigation)
.environmentObject(networkState)
.environmentObject(player)
2022-02-16 20:23:11 +00:00
.environmentObject(playerControls)
.environmentObject(playlists)
.environmentObject(recents)
.environmentObject(settings)
.environmentObject(subscriptions)
.environmentObject(thumbnails)
2021-11-08 23:14:28 +00:00
.environmentObject(menu)
.environmentObject(search)
2022-01-06 15:35:45 +00:00
#if os(macOS)
.background(
HostingWindowFinder { window in
Windows.mainWindow = window
}
)
#else
.onReceive(
NotificationCenter.default.publisher(for: UIApplication.willEnterForegroundNotification)
) { _ in
player.handleEnterForeground()
}
2022-06-05 17:12:00 +00:00
.onReceive(
NotificationCenter.default.publisher(for: UIApplication.didEnterBackgroundNotification)
) { _ in
player.handleEnterBackground()
}
#endif
2021-12-24 19:20:05 +00:00
#if os(iOS)
.handlesExternalEvents(preferring: Set(["*"]), allowing: Set(["*"]))
#endif
2021-06-09 20:51:23 +00:00
}
2021-12-24 19:20:05 +00:00
#if os(iOS)
.handlesExternalEvents(matching: Set(["*"]))
#endif
2021-07-27 22:40:04 +00:00
#if !os(tvOS)
2021-11-08 16:29:35 +00:00
.commands {
SidebarCommands()
2021-12-07 23:09:49 +00:00
2021-11-08 16:29:35 +00:00
CommandGroup(replacing: .newItem, addition: {})
2021-12-07 23:09:49 +00:00
2021-11-08 23:14:28 +00:00
MenuCommands(model: Binding<MenuModel>(get: { menu }, set: { _ in }))
2021-11-08 16:29:35 +00:00
}
2021-07-27 22:40:04 +00:00
#endif
2021-09-25 08:18:22 +00:00
#if os(macOS)
WindowGroup(player.windowTitle) {
VideoPlayerView()
.onAppear(perform: configure)
2022-01-06 15:35:45 +00:00
.background(
HostingWindowFinder { window in
Windows.playerWindow = window
2022-04-03 12:23:42 +00:00
NotificationCenter.default.addObserver(
forName: NSWindow.willExitFullScreenNotification,
object: window,
queue: OperationQueue.main
) { _ in
DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
self.player.playingFullScreen = false
2022-04-03 12:23:42 +00:00
}
}
2022-01-06 15:35:45 +00:00
}
)
.onAppear { player.presentingPlayer = true }
.onDisappear { player.presentingPlayer = false }
.environment(\.managedObjectContext, persistenceController.container.viewContext)
.environment(\.navigationStyle, .sidebar)
.environmentObject(accounts)
.environmentObject(comments)
.environmentObject(instances)
.environmentObject(navigation)
.environmentObject(networkState)
.environmentObject(player)
2022-02-16 20:23:11 +00:00
.environmentObject(playerControls)
.environmentObject(playlists)
.environmentObject(recents)
2022-06-24 22:48:57 +00:00
.environmentObject(search)
2022-08-29 11:55:23 +00:00
.environmentObject(seek)
.environmentObject(subscriptions)
.environmentObject(thumbnails)
2021-12-24 19:20:05 +00:00
.handlesExternalEvents(preferring: Set(["player", "*"]), allowing: Set(["player", "*"]))
}
2021-12-24 19:20:05 +00:00
.handlesExternalEvents(matching: Set(["player", "*"]))
2021-09-25 08:18:22 +00:00
Settings {
SettingsView()
.environment(\.managedObjectContext, persistenceController.container.viewContext)
2021-12-24 19:20:05 +00:00
.environmentObject(accounts)
.environmentObject(instances)
.environmentObject(navigation)
.environmentObject(player)
2022-02-16 20:23:11 +00:00
.environmentObject(playerControls)
.environmentObject(settings)
2021-09-25 08:18:22 +00:00
}
#endif
}
func configure() {
guard !Self.isForPreviews, !configured else {
return
}
configured = true
2022-08-08 17:26:04 +00:00
#if DEBUG
SiestaLog.Category.enabled = .common
#endif
SDImageCodersManager.shared.addCoder(SDImageWebPCoder.shared)
SDWebImageManager.defaultImageCache = PINCache(name: "stream.yattee.app")
migrateAccounts()
if !Defaults[.lastAccountIsPublic] {
accounts.configureAccount()
}
let countryOfPublicInstances = Defaults[.countryOfPublicInstances]
if accounts.current.isNil, countryOfPublicInstances.isNil {
navigation.presentingWelcomeScreen = true
}
if !countryOfPublicInstances.isNil {
InstancesManifest.shared.setPublicAccount(countryOfPublicInstances!, accounts: accounts, asCurrent: accounts.current.isNil)
}
2022-08-31 22:00:28 +00:00
PlayerModel.shared = player
playlists.accounts = accounts
search.accounts = accounts
subscriptions.accounts = accounts
comments.player = player
menu.accounts = accounts
menu.navigation = navigation
menu.player = player
playerControls.player = player
player.accounts = accounts
player.comments = comments
player.controls = playerControls
2022-06-29 22:44:32 +00:00
player.navigation = navigation
player.networkState = networkState
2022-09-01 17:00:56 +00:00
player.seek = .shared
2022-08-31 19:24:46 +00:00
PlayerTimeModel.shared.player = player
if !accounts.current.isNil {
player.restoreQueue()
}
if !Defaults[.saveRecents] {
recents.clear()
}
var section = Defaults[.visibleSections].min()?.tabSelection
#if os(macOS)
if section == .playlists {
section = .search
}
#endif
navigation.tabSelection = section ?? .search
2022-08-15 12:49:12 +00:00
NavigationModel.shared = navigation
subscriptions.load()
playlists.load()
2022-08-29 13:31:36 +00:00
#if !os(macOS)
player.updateRemoteCommandCenter()
#endif
2022-08-08 18:02:46 +00:00
2022-08-14 16:59:04 +00:00
if player.presentingPlayer {
player.presentingPlayer = false
}
#if os(iOS)
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
if Defaults[.lockPortraitWhenBrowsing] {
Orientation.lockOrientation(.portrait, andRotateTo: .portrait)
}
}
#endif
2022-08-26 20:44:02 +00:00
#if !os(macOS)
try? AVAudioSession.sharedInstance().setCategory(.playback)
try? AVAudioSession.sharedInstance().setActive(true)
#endif
}
func migrateAccounts() {
Defaults[.accounts].forEach { account in
if !account.username.isEmpty || !(account.password?.isEmpty ?? true) || !(account.name?.isEmpty ?? true) {
print("Account needs migration: \(account.description)")
if account.app == .invidious {
if let name = account.name, !name.isEmpty {
AccountsModel.setCredentials(account, username: name, password: "")
}
if !account.username.isEmpty {
AccountsModel.setToken(account, account.username)
}
} else if account.app == .piped,
!account.username.isEmpty,
let password = account.password,
!password.isEmpty
{
AccountsModel.setCredentials(account, username: account.username, password: password)
}
AccountsModel.removeDefaultsCredentials(account)
}
}
}
2021-06-09 20:51:23 +00:00
}