-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move waitlist code into an AppDelegate extension.
- Loading branch information
Showing
3 changed files
with
94 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// | ||
// AppDelegate+Waitlists.swift | ||
// DuckDuckGo | ||
// | ||
// Copyright © 2023 DuckDuckGo. 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 Foundation | ||
import BackgroundTasks | ||
import NetworkProtection | ||
|
||
extension AppDelegate { | ||
|
||
func checkWaitlists() { | ||
checkWindowsWaitlist() | ||
checkNetworkProtectionWaitlist() | ||
checkWaitlistBackgroundTasks() | ||
} | ||
|
||
private func checkWindowsWaitlist() { | ||
WindowsBrowserWaitlist.shared.fetchInviteCodeIfAvailable { error in | ||
guard error == nil else { return } | ||
WindowsBrowserWaitlist.shared.sendInviteCodeAvailableNotification() | ||
} | ||
} | ||
|
||
private func checkNetworkProtectionWaitlist() { | ||
VPNWaitlist.shared.fetchInviteCodeIfAvailable { [weak self] error in | ||
guard error == nil else { | ||
#if !DEBUG | ||
// If the user already has an invite code but their auth token has gone missing, attempt to redeem it again. | ||
let tokenStore = NetworkProtectionKeychainTokenStore() | ||
let waitlistStorage = VPNWaitlist.shared.waitlistStorage | ||
if error == .alreadyHasInviteCode, | ||
let inviteCode = waitlistStorage.getWaitlistInviteCode(), | ||
!tokenStore.isFeatureActivated { | ||
self?.fetchVPNWaitlistAuthToken(inviteCode: inviteCode) | ||
} | ||
#endif | ||
return | ||
|
||
} | ||
|
||
guard let inviteCode = VPNWaitlist.shared.waitlistStorage.getWaitlistInviteCode() else { | ||
return | ||
} | ||
|
||
self?.fetchVPNWaitlistAuthToken(inviteCode: inviteCode) | ||
} | ||
} | ||
|
||
private func checkWaitlistBackgroundTasks() { | ||
BGTaskScheduler.shared.getPendingTaskRequests { tasks in | ||
let hasWindowsBrowserWaitlistTask = tasks.contains { $0.identifier == WindowsBrowserWaitlist.backgroundRefreshTaskIdentifier } | ||
if !hasWindowsBrowserWaitlistTask { | ||
WindowsBrowserWaitlist.shared.scheduleBackgroundRefreshTask() | ||
} | ||
|
||
let hasVPNWaitlistTask = tasks.contains { $0.identifier == VPNWaitlist.backgroundRefreshTaskIdentifier } | ||
if !hasVPNWaitlistTask { | ||
VPNWaitlist.shared.scheduleBackgroundRefreshTask() | ||
} | ||
} | ||
} | ||
|
||
#if NETWORK_PROTECTION | ||
func fetchVPNWaitlistAuthToken(inviteCode: String) { | ||
Task { | ||
do { | ||
try await NetworkProtectionCodeRedemptionCoordinator().redeem(inviteCode) | ||
VPNWaitlist.shared.sendInviteCodeAvailableNotification() | ||
} catch {} | ||
} | ||
} | ||
#endif | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters