Music_Player3/relax.offline.mp3.music/AppDelegate.swift
2024-11-18 21:29:29 +08:00

300 lines
12 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// AppDelegate.swift
// relax.offline.mp3.music
//
// Created by Mr.Zhou on 2024/5/22.
//
import UIKit
import CoreData
import AVFoundation
import Alamofire
import Tiercel
import Firebase
import GoogleMobileAds
import FacebookCore
import StoreKit
import UserMessagingPlatform
@_exported import IQKeyboardManagerSwift
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
//
var showStatus:Bool!
//
var backgroundSessionCompletionHandler: (() -> Void)?
//退
private var backgroundEntryTime:Date?
//B
private var positiceVC:MPPositive_TabBarController!
//
private let notificationHandler = NotificationHandler()
var backgroundTask: UIBackgroundTaskIdentifier = .invalid
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
//
UNUserNotificationCenter.current()
.requestAuthorization(options: [.alert, .sound, .badge]) {
(accepted, error) in
if !accepted {
print("Users are not allowed to be notified of messages.")
}
}
//
UNUserNotificationCenter.current().delegate = notificationHandler
//广ID
coreDefaultValues()
ActiveDaysCalculation()
//FireBase
FirebaseApp.configure()
//AdMob广
MP_ADSimpleManager.shared.start()
//
MP_DownloadManager.shared.cancelAllTasksIfNeeded()
setAudioSupport()
MP_NetWorkManager.shared.requestStatusToYouTube()
IQKeyboardManager.shared.enable = true
IQKeyboardManager.shared.shouldResignOnTouchOutside = true
window = UIWindow(frame: UIScreen.main.bounds)
window?.backgroundColor = .init(hex: "#161616")
//faceBook
ApplicationDelegate.shared.application(application,didFinishLaunchingWithOptions: launchOptions)
switch_lunch()
//
MP_AnalyticsManager.shared.user_launchAction()
return true
}
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:] ) -> Bool {
ApplicationDelegate.shared.application(app, open: url, sourceApplication: options[UIApplication.OpenURLOptionsKey.sourceApplication] as? String, annotation: options[UIApplication.OpenURLOptionsKey.annotation])
}
func application(_ application: UIApplication, handleEventsForBackgroundURLSession identifier: String, completionHandler: @escaping () -> Void) {
print("后台任务处理中-\(identifier)")
if identifier == MP_DownloadManager.shared.session.identifier {
MP_DownloadManager.shared.session.completionHandler = completionHandler
}
}
///
func setAudioSupport(){
//
let session = AVAudioSession.sharedInstance()
do {
//,
try session.setCategory(.playAndRecord, mode: .default, options: [ .allowAirPlay, .allowBluetoothA2DP,.defaultToSpeaker])
//
try session.setActive(true)
print("成功激活会话")
} catch {
print("Failed to set type:\(error.localizedDescription)")
}
//
UIApplication.shared.beginReceivingRemoteControlEvents()
}
///
func setAudioStop() {
//
let session = AVAudioSession.sharedInstance()
do {
//
try session.setActive(false)
print("中止会话")
} catch {
print("Failed to set type:\(error.localizedDescription)")
}
}
///
func setAudioActive() {
//
let session = AVAudioSession.sharedInstance()
do {
if session.category != .playAndRecord || session.categoryOptions != [ .allowAirPlay, .allowBluetoothA2DP,.defaultToSpeaker] {
if session.category != .playAndRecord {
print("音频会话状态发生变动")
}else {
print("音频会话类型发生变动")
}
try session.setCategory(.playAndRecord, mode: .default, options: [ .allowAirPlay, .allowBluetoothA2DP,.defaultToSpeaker])
try session.setActive(true)
print("重新设置音频会话模型")
}else {
try session.setActive(true)
print("恢复会话")
}
} catch {
print("Failed to set type:\(error.localizedDescription)")
}
//
NotificationCenter.notificationKey.post(notificationName: .player_is_continua)
}
//
private func ActiveDaysCalculation() {
//
guard var actives = UserDefaults.standard.object(forKey: "ActiveDays") as? [Date] else {
//
let now = Date().timeZone()
UserDefaults.standard.setValue([now], forKey: "ActiveDays")
return
}
//
let now = Date().timeZone()
actives.append(now)
UserDefaults.standard.setValue(actives, forKey: "ActiveDays")
}
//MARK: -
///
func switch_lunch() {
let lunchVC = MP_LunchViewController()
//
let transtition = CATransition()
transtition.duration = 0.8
transtition.timingFunction = .init(name: .easeOut)//
window?.layer.add(transtition, forKey: "lunch.easeOut")
window?.rootViewController = lunchVC
window?.makeKeyAndVisible()
}
///A
func switch_aSide() {
guard showStatus == nil else {
//
return
}
let tabBarVC = MPSideA_TabBarController()
//
let transtition = CATransition()
transtition.duration = 0.8
transtition.timingFunction = .init(name: .easeOut)//
window?.layer.add(transtition, forKey: "aSide.easeOut")
window?.rootViewController = tabBarVC
window?.makeKeyAndVisible()
showStatus = false
}
//b
func switch_positive() {
guard showStatus != true else {
return
}
//A
MPSideA_MediaCenterManager.shared.destroySideA()
MPSideA_VolumeManager.shared.destroySideA()
positiceVC = MPPositive_TabBarController()
//
let transtition = CATransition()
transtition.duration = 0.8
transtition.timingFunction = .init(name: .easeOut)//
window?.layer.add(transtition, forKey: "positive.easeOut")
window?.rootViewController = positiceVC
window?.makeKeyAndVisible()
showStatus = true
}
//MARK: -
//退
func applicationDidEnterBackground(_ application: UIApplication) {
//
backgroundEntryTime = Date()
//
setAudioActive()
}
//
func applicationWillEnterForeground(_ application: UIApplication) {
}
//
func applicationDidBecomeActive(_ application: UIApplication) {
guard let backDate = backgroundEntryTime else {
return
}
backgroundEntryTime = nil
//
let currentDate = Date()
//
let duration = currentDate.timeIntervalSince(backDate)
//
let times = MP_ADSimpleManager.shared.platform ? MP_AppLovinManager.shared.getOpenAppDuration():MP_AdMobManager.shared.getOpenAppDuration()
if duration >= times {
MP_ADSimpleManager.shared.showOpenAdIfAvailable(.HOST, completion: nil)
//广
print("返回前台,并展示了热启动广告")
}else {
//
print("返回前台")
}
}
//MARK: -
func applicationWillTerminate(_ application: UIApplication) {
print("应用关闭了")
//
guard let load = MP_PlayerManager.shared.loadPlayer, let videoId = load.currentVideoId, let songs = load.songVideos else {return}
//songs
guard let data = coreSongsforJson(songs) else {return}
//
let last:[String:Any] = ["currentVideoId":videoId,
"Songs":data]
UserDefaults.standard.set(last, forKey: "Last_Play_Songs")
}
// MARK: - Core Data stack
lazy var persistentContainer: NSPersistentContainer = {
/*
The persistent container for the application. This implementation
creates and returns a container, having loaded the store for the
application to it. This property is optional since there are legitimate
error conditions that could cause the creation of the store to fail.
*/
let container = NSPersistentContainer(name: "relax.offline.mp3")
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
/*
Typical reasons for an error here include:
* The parent directory does not exist, cannot be created, or disallows writing.
* The persistent store is not accessible, due to permissions or data protection when the device is locked.
* The device is out of space.
* The store could not be migrated to the current model version.
Check the error message to determine what the actual problem was.
*/
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
return container
}()
// MARK: - Core Data Saving support
func saveContext () {
let context = persistentContainer.viewContext
if context.hasChanges {
do {
try context.save()
} catch {
// Replace this implementation with code to handle the error appropriately.
// fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
let nserror = error as NSError
fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
}
}
}
func adManagerDidShowInterstitial() {
window?.rootViewController?.setNeedsStatusBarAppearanceUpdate()
}
}
///访appDelegate
let accessAppdelegate = ( UIApplication.shared.delegate as! AppDelegate)
///
class NotificationHandler: NSObject, UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler:
@escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler([.alert, .sound, .badge])
// options completionHandler:
// completionHandler([])
}
}