-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathAppDelegate.swift
636 lines (523 loc) · 23.8 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
import UIKit
import Combine
import Storage
import class Networking.UserAgent
import class Networking.MediaUploadSessionManager
import Experiments
import class WidgetKit.WidgetCenter
import protocol WooFoundation.Analytics
import protocol Yosemite.StoresManager
import struct Yosemite.Site
import CocoaLumberjack
import KeychainAccess
import WordPressUI
import WordPressAuthenticator
import AutomatticTracks
import class Yosemite.ScreenshotStoresManager
// In that way, Inject will be available in the entire target.
@_exported import Inject
#if DEBUG
import Wormholy
#endif
// MARK: - Woo's App Delegate!
//
class AppDelegate: UIResponder, UIApplicationDelegate {
/// AppDelegate's Instance
///
static var shared: AppDelegate {
return UIApplication.shared.delegate as! AppDelegate
}
/// Main Window
///
var window: UIWindow?
/// Coordinates app navigation based on authentication state.
///
private var appCoordinator: AppCoordinator?
/// Initializes storage manager along with AppDelegate
private let storageManager = ServiceLocator.storageManager
/// Tab Bar Controller
///
var tabBarController: MainTabBarController? {
appCoordinator?.tabBarController
}
/// Coordinates the Jetpack setup flow for users authenticated without Jetpack.
///
private var jetpackSetupCoordinator: JetpackSetupCoordinator?
private var universalLinkRouter: UniversalLinkRouter?
private lazy var requirementsChecker = RequirementsChecker(baseViewController: tabBarController)
/// Handles events to background refresh the app.
///
private let appRefreshHandler = BackgroundTaskRefreshDispatcher()
private var subscriptions: Set<AnyCancellable> = []
// MARK: - AppDelegate Methods
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
// Setup Components
setupStartupWaitingTimeTracker()
let stores = ServiceLocator.stores
let analytics = ServiceLocator.analytics
let pushNotesManager = ServiceLocator.pushNotesManager
stores.initializeAfterDependenciesAreInitialized()
setupAnalytics(analytics)
setupCocoaLumberjack()
setupLibraryLogger()
setupLogLevel(.verbose)
setupPushNotificationsManagerIfPossible(pushNotesManager, stores: stores)
setupAppRatingManager()
setupWormholy()
setupKeyboardStateProvider()
handleLaunchArguments()
setupUserNotificationCenter()
// Components that require prior Auth
setupZendesk()
// Yosemite Initialization
synchronizeEntitiesIfPossible()
listenToAuthenticationFailureNotifications()
// Since we are using Injection for refreshing the content of the app in debug mode,
// we are going to enable Inject.animation that will be used when
// ever new source code is injected into our application.
Inject.animation = .interactiveSpring()
// Upgrade check...
// This has to be called after A/B testing setup in `setupAnalytics` (which calls
// `WooAnalytics.refreshUserData`) if any of the Tracks events in `checkForUpgrades` is
// used as an exposure event for an experiment.
// For example, `application_installed` could be the exposure event for logged-out experiments.
checkForUpgrades()
// Cache onboarding state to speed IPP process
refreshCardPresentPaymentsOnboardingIfNeeded(completion: reconnectToTapToPayReaderIfNeeded)
return true
}
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Setup the Interface!
setupMainWindow()
setupComponentsAppearance()
setupNoticePresenter()
setupUniversalLinkRouter()
disableAnimationsIfNeeded()
// Don't track startup waiting time if user starts logged out
if !ServiceLocator.stores.isAuthenticated {
cancelStartupWaitingTimeTracker()
}
// Start app navigation.
appCoordinator?.start()
// Register for background app refresh events.
appRefreshHandler.registerSystemTaskIdentifier()
return true
}
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
guard let rootViewController = window?.rootViewController else {
fatalError()
}
if let universalLinkRouter, universalLinkRouter.canHandle(url: url) {
universalLinkRouter.handle(url: url)
return true
}
return handleAuthenticationUrl(url, options: options, rootViewController: rootViewController)
}
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
guard let defaultStoreID = ServiceLocator.stores.sessionManager.defaultStoreID else {
return
}
ServiceLocator.pushNotesManager.registerDeviceToken(with: deviceToken, defaultStoreID: defaultStoreID)
}
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
ServiceLocator.pushNotesManager.registrationDidFail(with: error)
}
/// Called when the app receives a remote notification in the background.
/// For local/remote notification tap events, please refer to `UNUserNotificationCenterDelegate.userNotificationCenter(_:didReceive:)`.
/// When receiving a local/remote notification in the foreground, please refer to
/// `UNUserNotificationCenterDelegate.userNotificationCenter(_:willPresent:)`.
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) async -> UIBackgroundFetchResult {
await ServiceLocator.pushNotesManager.handleRemoteNotificationInTheBackground(userInfo: userInfo)
}
func applicationWillResignActive(_ application: UIApplication) {
// Simulate push notification for capturing snapshot.
// This is supposed to be called only by the WooCommerceScreenshots target.
if ProcessConfiguration.shouldSimulatePushNotification {
let content = UNMutableNotificationContent()
content.title = NSLocalizedString(
"You have a new order! 🎉",
comment: "Title for the mocked order notification needed for the AppStore listing screenshot"
)
content.body = NSLocalizedString(
"New order for $13.98 on Your WooCommerce Store",
comment: "Message for the mocked order notification needed for the AppStore listing screenshot. " +
"'Your WooCommerce Store' is the name of the mocked store."
)
// show this notification seconds from now
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 3, repeats: false)
// choose a random identifier
let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger)
// add our notification request
UNUserNotificationCenter.current().add(request)
}
}
func application(_ application: UIApplication, performActionFor shortcutItem: UIApplicationShortcutItem, completionHandler: @escaping (Bool) -> Void) {
guard let quickAction = QuickAction(rawValue: shortcutItem.type),
let tabBarController else {
completionHandler(false)
return
}
switch quickAction {
case QuickAction.addProduct:
MainTabBarController.presentAddProductFlow()
completionHandler(true)
case QuickAction.addOrder:
tabBarController.navigate(to: OrdersDestination.createOrder)
completionHandler(true)
case QuickAction.openOrders:
tabBarController.navigate(to: OrdersDestination.orderList)
completionHandler(true)
case QuickAction.collectPayment:
tabBarController.navigate(to: PaymentsMenuDestination.collectPayment)
completionHandler(true)
}
}
func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers,
// and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
// Don't track startup waiting time if app is backgrounded before everything is loaded
cancelStartupWaitingTimeTracker()
// Schedule the background app refresh when sending the app to the background.
// The OS is in charge of determining when these tasks will run based on app usage patterns.
appRefreshHandler.scheduleAppRefresh()
}
func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
// Cache onboarding state to speed IPP process, then silently connect to Tap to Pay if previously connected, to speed up IPP
refreshCardPresentPaymentsOnboardingIfNeeded(completion: reconnectToTapToPayReaderIfNeeded)
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive.
// If the application was previously in the background, optionally refresh the user interface.
requirementsChecker.checkEligibilityForDefaultStore()
}
func applicationWillTerminate(_ application: UIApplication) {
DDLogVerbose("👀 Application terminating...")
NotificationCenter.default.post(name: .applicationTerminating, object: nil)
}
func application(_ application: UIApplication,
continue userActivity: NSUserActivity,
restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
if userActivity.activityType == NSUserActivityTypeBrowsingWeb {
handleWebActivity(userActivity)
}
SpotlightManager.handleUserActivity(userActivity)
trackWidgetTappedIfNeeded(userActivity: userActivity)
return true
}
func applicationDidReceiveMemoryWarning(_ application: UIApplication) {
let size = os_proc_available_memory()
DDLogDebug("Received memory warning: Available memory - \(size)")
ServiceLocator.imageService.clearMemoryCache()
}
func application(_ application: UIApplication,
handleEventsForBackgroundURLSession identifier: String,
completionHandler: @escaping () -> Void) {
if identifier == ServiceLocator.backgroundMediaUploadSessionManager.backgroundSessionIdentifier {
ServiceLocator.backgroundMediaUploadSessionManager.handleBackgroundSessionCompletion(completionHandler)
}
}
}
// MARK: - Initialization Methods
//
private extension AppDelegate {
/// Sets up the main UIWindow instance.
///
func setupMainWindow() {
let window = UIWindow()
window.makeKeyAndVisible()
self.window = window
appCoordinator = AppCoordinator(window: window)
}
/// Sets up all of the component(s) Appearance.
///
func setupComponentsAppearance() {
setupWooAppearance()
setupFancyAlertAppearance()
setupFancyButtonAppearance()
}
/// Sets up WooCommerce's UIAppearance.
///
func setupWooAppearance() {
UINavigationBar.applyWooAppearance()
UILabel.applyWooAppearance()
UISearchBar.applyWooAppearance()
UITabBar.applyWooAppearance()
// Take advantage of a bug in UIAlertController to style all UIAlertControllers with WC color
window?.tintColor = .primary
}
/// Sets up FancyAlert's UIAppearance.
///
func setupFancyAlertAppearance() {
let appearance = FancyAlertView.appearance()
appearance.bodyBackgroundColor = .systemColor(.systemBackground)
appearance.bottomBackgroundColor = appearance.bodyBackgroundColor
appearance.bottomDividerColor = .listSmallIcon
appearance.topDividerColor = appearance.bodyBackgroundColor
appearance.titleTextColor = .text
appearance.titleFont = UIFont.title2SemiBold
appearance.bodyTextColor = .text
appearance.bodyFont = UIFont.body
appearance.actionFont = UIFont.headline
appearance.infoFont = UIFont.subheadline
appearance.infoTintColor = .accent
appearance.headerBackgroundColor = .alertHeaderImageBackgroundColor
}
/// Sets up FancyButton's UIAppearance.
///
func setupFancyButtonAppearance() {
let appearance = FancyButton.appearance()
appearance.primaryNormalBackgroundColor = .primaryButtonBackground
appearance.primaryNormalBorderColor = .primaryButtonBorder
appearance.primaryHighlightBackgroundColor = .primaryButtonDownBackground
appearance.primaryHighlightBorderColor = .primaryButtonDownBorder
}
/// Sets up the Zendesk SDK.
///
func setupZendesk() {
ZendeskProvider.shared.initialize()
}
/// Sets up the WordPress Authenticator.
///
func setupAnalytics(_ analytics: Analytics) {
analytics.initialize()
}
/// Sets up CocoaLumberjack logging.
///
func setupCocoaLumberjack() {
var fileLogger = ServiceLocator.fileLogger
fileLogger.rollingFrequency = TimeInterval(60*60*24) // 24 hours
fileLogger.logFileManager.maximumNumberOfLogFiles = 7
guard let logger = fileLogger as? DDFileLogger else {
return
}
DDLog.add(DDOSLogger.sharedInstance)
DDLog.add(logger)
}
/// Sets up loggers for WordPress libraries
///
func setupLibraryLogger() {
let logger = ServiceLocator.wordPressLibraryLogger
WPSharedSetLoggingDelegate(logger)
WPAuthenticatorSetLoggingDelegate(logger)
}
/// Sets up the current Log Level.
///
func setupLogLevel(_ level: DDLogLevel) {
CocoaLumberjack.dynamicLogLevel = level
}
/// Setup: Notice Presenter
///
func setupNoticePresenter() {
var noticePresenter = ServiceLocator.noticePresenter
noticePresenter.presentingViewController = appCoordinator?.tabBarController
}
/// Push Notifications: Authorization + Registration!
///
func setupPushNotificationsManagerIfPossible(_ pushNotesManager: PushNotesManager, stores: StoresManager) {
#if targetEnvironment(simulator)
DDLogVerbose("👀 Push Notifications are not supported in the Simulator!")
#else
let pushNotesManager = ServiceLocator.pushNotesManager
pushNotesManager.registerForRemoteNotifications()
pushNotesManager.ensureAuthorizationIsRequested(includesProvisionalAuth: false, onCompletion: nil)
#endif
}
func setupUserNotificationCenter() {
UNUserNotificationCenter.current().delegate = self
}
func setupUniversalLinkRouter() {
guard let tabBarController = tabBarController else { return }
universalLinkRouter = UniversalLinkRouter.defaultUniversalLinkRouter(tabBarController: tabBarController)
}
/// Set up app review prompt
///
func setupAppRatingManager() {
guard let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String else {
DDLogError("No CFBundleShortVersionString found in Info.plist")
return
}
let appRating = AppRatingManager.shared
appRating.register(section: "notifications", significantEventCount: WooConstants.notificationEventCount)
appRating.systemWideSignificantEventCountRequiredForPrompt = WooConstants.systemEventCount
appRating.setVersion(version)
}
/// Set up Wormholy only in Debug build configuration
///
func setupWormholy() {
#if DEBUG
/// We want to activate it programmatically, not using the shake.
Wormholy.shakeEnabled = false
#endif
}
/// Set up `KeyboardStateProvider`
///
func setupKeyboardStateProvider() {
// Simply _accessing_ it is enough. We only want the object to be initialized right away
// so it can start observing keyboard changes.
_ = ServiceLocator.keyboardStateProvider
}
/// Set up the app startup waiting time tracker
///
func setupStartupWaitingTimeTracker() {
// Simply _accessing_ it is enough. We only want the object to be initialized right away
// so it can start tracking the waiting time.
_ = ServiceLocator.startupWaitingTimeTracker
}
/// Cancel the app startup waiting time tracker
///
func cancelStartupWaitingTimeTracker() {
ServiceLocator.startupWaitingTimeTracker.end()
}
func handleLaunchArguments() {
if ProcessConfiguration.shouldLogoutAtLaunch {
ServiceLocator.stores.deauthenticate()
}
if ProcessConfiguration.shouldUseScreenshotsNetworkLayer {
ServiceLocator.setStores(ScreenshotStoresManager(storageManager: storageManager))
}
if ProcessConfiguration.shouldSimulatePushNotification {
UNUserNotificationCenter.current().requestAuthorization(options: [.alert]) { _, _ in }
}
}
func disableAnimationsIfNeeded() {
guard ProcessConfiguration.shouldDisableAnimations else {
return
}
UIView.setAnimationsEnabled(false)
/// Trick found at: https://twitter.com/twannl/status/1232966604142653446
UIApplication
.shared
.connectedScenes
.flatMap { ($0 as? UIWindowScene)?.windows ?? [] }
.forEach {
$0.layer.speed = 100
}
}
func refreshCardPresentPaymentsOnboardingIfNeeded(completion: @escaping (() -> Void)) {
ServiceLocator.cardPresentPaymentsOnboardingIPPUsersRefresher.refreshIPPUsersOnboardingState(completion: completion)
}
func reconnectToTapToPayReaderIfNeeded() {
ServiceLocator.tapToPayReconnectionController.reconnectIfNeeded()
}
/// Tracks if the application was opened via a widget tap.
///
func trackWidgetTappedIfNeeded(userActivity: NSUserActivity) {
switch userActivity.activityType {
case WooConstants.storeInfoWidgetKind:
let widgetFamily = userActivity.userInfo?[WidgetCenter.UserInfoKey.family] as? String
ServiceLocator.analytics.track(event: .Widgets.widgetTapped(name: .todayStats, family: widgetFamily))
case WooConstants.appLinkWidgetKind:
ServiceLocator.analytics.track(event: .Widgets.widgetTapped(name: .appLink))
default:
break
}
}
}
// MARK: - Minimum Version
//
private extension AppDelegate {
func checkForUpgrades() {
let currentVersion = UserAgent.bundleShortVersion
let versionOfLastRun = UserDefaults.standard[.versionOfLastRun] as? String
if versionOfLastRun == nil {
// First run after a fresh install
ServiceLocator.analytics.track(.applicationInstalled,
withProperties: ["after_abtest_setup": true])
UserDefaults.standard[.installationDate] = Date()
} else if versionOfLastRun != currentVersion {
// App was upgraded
ServiceLocator.analytics.track(.applicationUpgraded, withProperties: ["previous_version": versionOfLastRun ?? String()])
}
UserDefaults.standard[.versionOfLastRun] = currentVersion
}
}
// MARK: - Authentication Methods
//
extension AppDelegate {
/// Whenever we're in an Authenticated state, let's Sync all of the WC-Y entities.
///
private func synchronizeEntitiesIfPossible() {
guard ServiceLocator.stores.isAuthenticated else {
return
}
ServiceLocator.stores.synchronizeEntities(onCompletion: nil)
}
/// De-authenticates the user upon application password generation failure or WPCOM token expiry.
///
private func listenToAuthenticationFailureNotifications() {
let stores = ServiceLocator.stores
if stores.isAuthenticatedWithoutWPCom {
stores.listenToApplicationPasswordGenerationFailureNotification()
} else {
stores.listenToWPCOMInvalidWPCOMTokenNotification()
}
}
/// Runs whenever the Authentication Flow is completed successfully.
///
func authenticatorWasDismissed() {
setupPushNotificationsManagerIfPossible(ServiceLocator.pushNotesManager, stores: ServiceLocator.stores)
requirementsChecker.checkEligibilityForDefaultStore()
}
}
// MARK: - UNUserNotificationCenterDelegate
extension AppDelegate: UNUserNotificationCenterDelegate {
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse) async {
await ServiceLocator.pushNotesManager.handleUserResponseToNotification(response)
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification) async -> UNNotificationPresentationOptions {
await ServiceLocator.pushNotesManager.handleNotificationInTheForeground(notification)
}
}
// MARK: - Universal Links
private extension AppDelegate {
func handleWebActivity(_ activity: NSUserActivity) {
guard let linkURL = activity.webpageURL else {
return
}
universalLinkRouter?.handle(url: linkURL)
}
}
// MARK: - Magic link
private extension AppDelegate {
func handleAuthenticationUrl(_ url: URL, options: [UIApplication.OpenURLOptionsKey: Any], rootViewController: UIViewController) -> Bool {
return if ServiceLocator.stores.isAuthenticated {
handleAuthenticationUrlForJetpackSetup(url, rootViewController: rootViewController)
} else {
ServiceLocator.authenticationManager.handleAuthenticationUrl(url, options: options, rootViewController: rootViewController)
}
}
func handleAuthenticationUrlForJetpackSetup(_ url: URL, rootViewController: UIViewController) -> Bool {
if let site = ServiceLocator.stores.sessionManager.defaultSite {
return handleAuthenticationUrlForJetpackSetup(with: site, url: url, rootViewController: rootViewController)
} else {
// Wait for the site to be available before handling the magic link
ServiceLocator.stores.sessionManager.defaultSitePublisher
.timeout(.seconds(30), scheduler: DispatchQueue.main)
.first(where: { $0 != nil })
.sink { [weak self] site in
guard let site else {
// This should never happen as we filter out nil values
return
}
_ = self?.handleAuthenticationUrlForJetpackSetup(with: site, url: url, rootViewController: rootViewController)
}
.store(in: &subscriptions)
// Assume that we will handle the URL
return true
}
}
func handleAuthenticationUrlForJetpackSetup(with site: Site, url: URL, rootViewController: UIViewController) -> Bool {
let coordinator = JetpackSetupCoordinator(site: site, rootViewController: rootViewController)
jetpackSetupCoordinator = coordinator
return coordinator.handleAuthenticationUrl(url)
}
}
// MARK: - Home Screen Quick Actions
enum QuickAction: String {
case addProduct = "AddProductAction"
case addOrder = "AddOrderAction"
case openOrders = "OpenOrdersAction"
case collectPayment = "CollectPaymentAction"
}