mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
* Add Pairing File Export URL callback and replace Wireguard with StosVPN * Fix Data() * Add Switching Tab * Fix Pairing Callback Template and fix spelling mistake * Add Observer for openExportPairingFileConfirm * Add Logging and fix certificate callback * add func to Scene Delegate * Fix ToastView and Logging * Remove ? * Fix Logging * Call AppDelegate instead of SceneDelegate * Fix Scene Delegate * Set back SceneDelegate * Add Logging * Fix error * Fix Case Sensitive * Remove openExportPairingFileConfirm and fix AppDelegate.exportPairingFileNotification * Remove Alert * Remove Unnecessary code * rename export() to exportPairingFile()
201 lines
9.0 KiB
Swift
201 lines
9.0 KiB
Swift
//
|
|
// SceneDelegate.swift
|
|
// AltStore
|
|
//
|
|
// Created by Riley Testut on 7/6/20.
|
|
// Copyright © 2020 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import AltStoreCore
|
|
|
|
@available(iOS 13, *)
|
|
final class SceneDelegate: UIResponder, UIWindowSceneDelegate
|
|
{
|
|
var window: UIWindow?
|
|
|
|
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions)
|
|
{
|
|
// Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
|
|
// If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
|
|
// This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
|
|
guard let _ = (scene as? UIWindowScene) else { return }
|
|
|
|
if let context = connectionOptions.urlContexts.first
|
|
{
|
|
self.open(context)
|
|
}
|
|
}
|
|
|
|
func sceneWillEnterForeground(_ scene: UIScene)
|
|
{
|
|
// Called as the scene transitions from the background to the foreground.
|
|
// Use this method to undo the changes made on entering the background.
|
|
|
|
// applicationWillEnterForeground is _not_ called when launching app,
|
|
// whereas sceneWillEnterForeground _is_ called when launching.
|
|
// As a result, DatabaseManager might not be started yet, so just return if it isn't
|
|
// (since all these methods are called separately during app startup).
|
|
guard DatabaseManager.shared.isStarted else { return }
|
|
|
|
AppManager.shared.update()
|
|
|
|
PatreonAPI.shared.refreshPatreonAccount()
|
|
}
|
|
|
|
func sceneDidEnterBackground(_ scene: UIScene)
|
|
{
|
|
// Called as the scene transitions from the foreground to the background.
|
|
// Use this method to save data, release shared resources, and store enough scene-specific state information
|
|
// to restore the scene back to its current state.
|
|
|
|
guard UIApplication.shared.applicationState == .background else { return }
|
|
|
|
// Make sure to update AppDelegate.applicationDidEnterBackground() as well.
|
|
|
|
// TODO: @mahee96: find if we need to stop em_proxy as in altstore?
|
|
// stop_em_proxy()
|
|
|
|
guard let oneMonthAgo = Calendar.current.date(byAdding: .month, value: -1, to: Date()) else { return }
|
|
|
|
let midnightOneMonthAgo = Calendar.current.startOfDay(for: oneMonthAgo)
|
|
DatabaseManager.shared.purgeLoggedErrors(before: midnightOneMonthAgo) { result in
|
|
switch result
|
|
{
|
|
case .success: break
|
|
case .failure(let error): print("[ALTLog] Failed to purge logged errors before \(midnightOneMonthAgo).", error)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>)
|
|
{
|
|
guard let context = URLContexts.first else { return }
|
|
self.open(context)
|
|
}
|
|
}
|
|
|
|
private extension SceneDelegate
|
|
{
|
|
func open(_ context: UIOpenURLContext)
|
|
{
|
|
if context.url.isFileURL
|
|
{
|
|
guard context.url.pathExtension.lowercased() == "ipa" else { return }
|
|
|
|
DispatchQueue.main.async {
|
|
NotificationCenter.default.post(name: AppDelegate.importAppDeepLinkNotification, object: nil, userInfo: [AppDelegate.importAppDeepLinkURLKey: context.url])
|
|
}
|
|
}
|
|
else
|
|
{
|
|
guard let components = URLComponents(url: context.url, resolvingAgainstBaseURL: false) else { return }
|
|
guard let host = components.host?.lowercased() else { return }
|
|
|
|
switch host
|
|
{
|
|
case "patreon":
|
|
DispatchQueue.main.async {
|
|
NotificationCenter.default.post(name: AppDelegate.openPatreonSettingsDeepLinkNotification, object: nil)
|
|
}
|
|
|
|
case "appbackupresponse":
|
|
let result: Result<Void, Error>
|
|
|
|
switch context.url.path.lowercased()
|
|
{
|
|
case "/success": result = .success(())
|
|
case "/failure":
|
|
let queryItems = components.queryItems?.reduce(into: [String: String]()) { $0[$1.name] = $1.value } ?? [:]
|
|
guard
|
|
let errorDomain = queryItems["errorDomain"],
|
|
let errorCodeString = queryItems["errorCode"], let errorCode = Int(errorCodeString),
|
|
let errorDescription = queryItems["errorDescription"]
|
|
else { return }
|
|
|
|
let error = NSError(domain: errorDomain, code: errorCode, userInfo: [NSLocalizedDescriptionKey: errorDescription])
|
|
result = .failure(error)
|
|
|
|
default: return
|
|
}
|
|
|
|
DispatchQueue.main.async {
|
|
NotificationCenter.default.post(name: AppDelegate.appBackupDidFinish, object: nil, userInfo: [AppDelegate.appBackupResultKey: result])
|
|
}
|
|
|
|
case "install":
|
|
let queryItems = components.queryItems?.reduce(into: [String: String]()) { $0[$1.name.lowercased()] = $1.value } ?? [:]
|
|
guard let downloadURLString = queryItems["url"], let downloadURL = URL(string: downloadURLString) else { return }
|
|
|
|
DispatchQueue.main.async {
|
|
NotificationCenter.default.post(name: AppDelegate.importAppDeepLinkNotification, object: nil, userInfo: [AppDelegate.importAppDeepLinkURLKey: downloadURL])
|
|
}
|
|
|
|
case "source":
|
|
let queryItems = components.queryItems?.reduce(into: [String: String]()) { $0[$1.name.lowercased()] = $1.value } ?? [:]
|
|
guard let sourceURLString = queryItems["url"], let sourceURL = URL(string: sourceURLString) else { return }
|
|
|
|
DispatchQueue.main.async {
|
|
NotificationCenter.default.post(name: AppDelegate.addSourceDeepLinkNotification, object: nil, userInfo: [AppDelegate.addSourceDeepLinkURLKey: sourceURL])
|
|
}
|
|
|
|
case "pairing":
|
|
let queryItems = components.queryItems?.reduce(into: [String: String]()) { $0[$1.name.lowercased()] = $1.value } ?? [:]
|
|
Logger.main.info("queryItems \(queryItems)")
|
|
guard let callbackTemplate = queryItems["urlname"]?.removingPercentEncoding else { return }
|
|
|
|
DispatchQueue.main.async {
|
|
exportPairingFile(callbackTemplate)
|
|
}
|
|
|
|
case "certificate":
|
|
let queryItems = components.queryItems?.reduce(into: [String: String]()) { $0[$1.name.lowercased()] = $1.value } ?? [:]
|
|
guard let callbackTemplate = queryItems["callback_template"]?.removingPercentEncoding else { return }
|
|
|
|
DispatchQueue.main.async {
|
|
NotificationCenter.default.post(name: AppDelegate.exportCertificateNotification, object: nil, userInfo: [AppDelegate.exportCertificateCallbackTemplateKey: callbackTemplate])
|
|
}
|
|
|
|
default: break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func exportPairingFile(_ urlname: String) {
|
|
if let windowScene = UIApplication.shared.connectedScenes.first as? UIWindowScene,
|
|
let window = windowScene.windows.first, let viewcontroller = window.rootViewController {
|
|
let fm = FileManager.default
|
|
let documentsPath = fm.documentsDirectory.appendingPathComponent("ALTPairingFile.mobiledevicepairing")
|
|
|
|
|
|
guard let data = try? Data(contentsOf: documentsPath) else {
|
|
let toastView = ToastView(text: NSLocalizedString("Failed to find Pairing File!", comment: ""), detailText: nil)
|
|
toastView.show(in: viewcontroller)
|
|
return
|
|
}
|
|
|
|
let base64encodedCert = data.base64EncodedString()
|
|
var allowedQueryParamAndKey = NSCharacterSet.urlQueryAllowed
|
|
allowedQueryParamAndKey.remove(charactersIn: ";/?:@&=+$, ")
|
|
guard let encodedCert = base64encodedCert.addingPercentEncoding(withAllowedCharacters: allowedQueryParamAndKey) else {
|
|
let toastView = ToastView(text: NSLocalizedString("Failed to encode pairingFile!", comment: ""), detailText: nil)
|
|
toastView.show(in: viewcontroller)
|
|
return
|
|
}
|
|
|
|
var urlStr = "\(urlname)://pairingFile?data=$(BASE64_PAIRING)"
|
|
let finished = urlStr.replacingOccurrences(of: "$(BASE64_PAIRING)", with: encodedCert, options: .literal, range: nil)
|
|
|
|
print(finished)
|
|
guard let callbackUrl = URL(string: finished) else {
|
|
let toastView = ToastView(text: NSLocalizedString("Failed to initialize callback URL!", comment: ""), detailText: nil)
|
|
toastView.show(in: viewcontroller)
|
|
return
|
|
}
|
|
UIApplication.shared.open(callbackUrl)
|
|
}
|
|
}
|