-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSceneDelegate.swift
95 lines (76 loc) · 3.65 KB
/
SceneDelegate.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
//
// SceneDelegate.swift
// BitSense
//
// Created by Peter on 03/02/20.
// Copyright © 2020 Fontaine. All rights reserved.
//
import UIKit
@available(iOS 13.0, *)
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
weak var mgr = TorClient.sharedInstance
var window: UIWindow?
private var isBooting = true
private var blacked = UIView()
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 }
}
func sceneDidDisconnect(_ scene: UIScene) {
// Called as the scene is being released by the system.
// This occurs shortly after the scene enters the background, or when its session is discarded.
// Release any resources associated with this scene that can be re-created the next time the scene connects.
// The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead).
}
func sceneDidBecomeActive(_ scene: UIScene) {
// Called when the scene has moved from an inactive state to an active state.
// Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
}
func sceneWillResignActive(_ scene: UIScene) {
// Called when the scene will move from an active state to an inactive state.
// This may occur due to temporary interruptions (ex. an incoming phone call).
}
func sceneWillEnterForeground(_ scene: UIScene) {
self.blacked.removeFromSuperview()
guard !isBooting else { isBooting = !isBooting; return }
if !self.isBooting && self.mgr?.state != .started && self.mgr?.state != .connected {
self.mgr?.start(delegate: nil)
} else {
self.isBooting = false
}
}
func sceneDidEnterBackground(_ scene: UIScene) {
// Save changes in the application's managed object context when the application transitions to the background.
(UIApplication.shared.delegate as? AppDelegate)?.saveContext()
if mgr?.state != .stopped && mgr?.state != TorClient.TorState.none {
if #available(iOS 14.0, *) {
if !ProcessInfo.processInfo.isiOSAppOnMac {
mgr?.state = .refreshing
mgr?.resign()
} else {
print("running on mac, not quitting tor.")
}
}
}
if let window = self.window {
blacked.frame = window.frame
blacked.backgroundColor = .black
self.window?.addSubview(blacked)
}
}
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
let urlcontexts = URLContexts.first
guard let url = urlcontexts?.url else { return }
addNode(url: "\(url)")
}
private func addNode(url: String) {
QuickConnect.addNode(url: url) { (success, _) in
guard success else { return }
DispatchQueue.main.async {
NotificationCenter.default.post(name: .refreshNode, object: nil, userInfo: nil)
}
}
}
}