- Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAppDelegate.swift
165 lines (135 loc) · 6.73 KB
/
AppDelegate.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* Copyright 2019 Google LLC. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import UIKit
import MaterialComponents.MaterialSnackbar
openclassAppDelegate:UIResponder,UIApplicationDelegate{
/// The accounts manager to inject into clases.
openvaraccountsManager:AccountsManager{
fatalError("Subclasses must override and provide an accounts manager instance!")
}
/// The analytics reporter to inject into classes.
openvaranalyticsReporter:AnalyticsReporter{
fatalError("Subclasses must override and provide an analytics reporter instance!")
}
/// The common UI components to inject into classes.
openvarcommonUIComponents:CommonUIComponents{
fatalError("Subclasses must override and provide a common UI components instance!")
}
/// The drawer config to inject into classes.
openvardrawerConfig:DrawerConfig{
fatalError("Subclasses must override and provide a drawer config instance!")
}
/// The drive constructor to inject into classes.
openvardriveConstructor:DriveConstructor{
fatalError("Subclasses must override and provide a drive constructor instance!")
}
/// The feedback reporter to inject into classes.
openvarfeedbackReporter:FeedbackReporter{
fatalError("Subclasses must override and provide a feedback reporter instance!")
}
/// The file system layout to inject into classes.
openvarfileSystemLayout:FileSystemLayout{
fatalError("Subclasses must override and provide a file system layout instance!")
}
/// The network availability to inject into classes.
openvarnetworkAvailability:NetworkAvailability{
fatalError("Subclasses must override and provide a network availability instance!")
}
#if FEATURE_FIREBASE_RC
/// The remote config manager to inject into classes.
openvarremoteConfigManager:RemoteConfigManager{
fatalError("Subclasses must override and provide a remote config manager instance!")
}
#endif
/// The sensor controller to inject into classes. Implicitly unwrapped to delay initialization
/// until launch is done.
openvarsensorController:SensorController!
varappFlowViewController:AppFlowViewController!
openvarwindow:UIWindow?
privateletlaunchManager=LaunchManager.standard
// swiftlint:disable vertical_parameter_alignment
openfunc application(_ application:UIApplication,
didFinishLaunchingWithOptions launchOptions:[UIApplication.LaunchOptionsKey:Any]?)->Bool{
sensorController =SensorController()
excludeDataFromiCloudBackups()
// Initialize the capture session interruption observer.
_ =CaptureSessionInterruptionObserver.shared
// Sets the Snackbar to use its legacy presentation
MDCSnackbarMessage.usesLegacySnackbar =true
window =UIWindow.init(frame:UIScreen.main.bounds)
letlaunchContainerViewController=createLaunchContainerViewController()
window?.rootViewController = launchContainerViewController
window?.makeKeyAndVisible()
launchManager.performLaunchOperations{ completionState in
switch completionState {
case.success:
launchContainerViewController.presentLaunchSuccessViewController()
case.failure:
launchContainerViewController.presentLaunchFailureViewController()
}
}
returntrue
}
// swiftlint:enable vertical_parameter_alignment
privatefunc excludeDataFromiCloudBackups(){
URL.excludeFromiCloudBackups(url:URL.documentsDirectoryURL)
URL.excludeFromiCloudBackups(url:FileSystemLayout.Version.two.baseURL)
}
privatefunc createLaunchContainerViewController()->LaunchContainerViewController{
returnLaunchContainerViewController(
onSuccess:self.createAppFlowViewController(),
onFailure:LaunchFailureViewController(feedbackReporter:self.feedbackReporter)
)
}
privatefunc createAppFlowViewController()->AppFlowViewController{
#if FEATURE_FIREBASE_RC
appFlowViewController =AppFlowViewController(fileSystemLayout: fileSystemLayout,
accountsManager: accountsManager,
analyticsReporter: analyticsReporter,
commonUIComponents: commonUIComponents,
drawerConfig: drawerConfig,
driveConstructor: driveConstructor,
feedbackReporter: feedbackReporter,
networkAvailability: networkAvailability,
remoteConfigManager: remoteConfigManager,
sensorController: sensorController)
#else
appFlowViewController =AppFlowViewController(fileSystemLayout: fileSystemLayout,
accountsManager: accountsManager,
analyticsReporter: analyticsReporter,
commonUIComponents: commonUIComponents,
drawerConfig: drawerConfig,
driveConstructor: driveConstructor,
feedbackReporter: feedbackReporter,
networkAvailability: networkAvailability,
sensorController: sensorController)
#endif
return appFlowViewController
}
openfunc applicationDidBecomeActive(_ application:UIApplication){
guard launchManager.state ==.completed(.success)else{return}
// When the app becomes active, attempt to reauthenticate the current user account and remove
// any lingering accounts.
accountsManager.reauthenticateCurrentAccount()
accountsManager.removeLingeringAccounts()
}
openfunc application(_ app:UIApplication,
open url:URL,
options:[UIApplication.OpenURLOptionsKey:Any]=[:])->Bool{
guard launchManager.state ==.completed(.success)else{returnfalse}
return appFlowViewController.handleImportURL(url)
}
}