Skip to content

Commit

Permalink
Pixel improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoreymendez committed Apr 29, 2024
1 parent 8762c13 commit 36c9c14
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ enum NetworkProtectionPixelEvent: PixelKitEventV2 {

case networkProtectionControllerStartAttempt
case networkProtectionControllerStartSuccess
case networkProtectionControllerStartCancelled
case networkProtectionControllerStartFailure(_ error: Error)

case networkProtectionTunnelStartAttempt
Expand Down Expand Up @@ -115,6 +116,9 @@ enum NetworkProtectionPixelEvent: PixelKitEventV2 {
case .networkProtectionControllerStartSuccess:
return "netp_controller_start_success"

case .networkProtectionControllerStartCancelled:
return "netp_controller_start_cancelled"

case .networkProtectionControllerStartFailure:
return "netp_controller_start_failure"

Expand Down Expand Up @@ -322,6 +326,7 @@ enum NetworkProtectionPixelEvent: PixelKitEventV2 {
.networkProtectionNewUser,
.networkProtectionControllerStartAttempt,
.networkProtectionControllerStartSuccess,
.networkProtectionControllerStartCancelled,
.networkProtectionControllerStartFailure,
.networkProtectionTunnelStartAttempt,
.networkProtectionTunnelStartSuccess,
Expand Down Expand Up @@ -388,6 +393,7 @@ enum NetworkProtectionPixelEvent: PixelKitEventV2 {
.networkProtectionNewUser,
.networkProtectionControllerStartAttempt,
.networkProtectionControllerStartSuccess,
.networkProtectionControllerStartCancelled,
.networkProtectionTunnelStartAttempt,
.networkProtectionTunnelStartSuccess,
.networkProtectionTunnelStopAttempt,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,14 +448,18 @@ final class NetworkProtectionTunnelController: TunnelController, TunnelSessionPr

// MARK: - Starting & Stopping the VPN

enum StartError: LocalizedError {
enum StartError: LocalizedError, CustomNSError {
case cancelled
case noAuthToken
case connectionStatusInvalid
case connectionAlreadyStarted
case simulateControllerFailureError
case startTunnelFailure(_ error: Error)

var errorDescription: String? {
switch self {
case .cancelled:
return nil
case .noAuthToken:
return "You need a subscription to start the VPN"
case .connectionAlreadyStarted:
Expand All @@ -473,6 +477,34 @@ final class NetworkProtectionTunnelController: TunnelController, TunnelSessionPr
#endif
case .simulateControllerFailureError:
return "Simulated a controller error as requested"
case .startTunnelFailure(let error):
return error.localizedDescription
}
}

var errorCode: Int {
switch self {
case .cancelled: return 0
// MARK: Setup errors
case .noAuthToken: return 1
case .connectionStatusInvalid: return 2
case .connectionAlreadyStarted: return 3
case .simulateControllerFailureError: return 4
// MARK: Actual connection attempt issues
case .startTunnelFailure: return 100
}
}

var errorUserInfo: [String: Any] {
switch self {
case .cancelled,
.noAuthToken,
.connectionStatusInvalid,
.connectionAlreadyStarted,
.simulateControllerFailureError:
return [:]
case .startTunnelFailure(let error):
return [NSUnderlyingErrorKey: error]
}
}
}
Expand Down Expand Up @@ -502,6 +534,8 @@ final class NetworkProtectionTunnelController: TunnelController, TunnelSessionPr
} catch {
if case NEVPNError.configurationReadWriteFailed = error {
onboardingStatusRawValue = OnboardingStatus.isOnboarding(step: .userNeedsToAllowVPNConfiguration).rawValue

throw StartError.cancelled
}

throw error
Expand All @@ -528,9 +562,15 @@ final class NetworkProtectionTunnelController: TunnelController, TunnelSessionPr
} catch {
VPNOperationErrorRecorder().recordControllerStartFailure(error)

PixelKit.fire(
NetworkProtectionPixelEvent.networkProtectionControllerStartFailure(error), frequency: .dailyAndCount, includeAppVersionParameter: true
)
if case StartError.cancelled = error {
PixelKit.fire(
NetworkProtectionPixelEvent.networkProtectionControllerStartCancelled, frequency: .dailyAndCount, includeAppVersionParameter: true
)
} else {
PixelKit.fire(
NetworkProtectionPixelEvent.networkProtectionControllerStartFailure(error), frequency: .dailyAndCount, includeAppVersionParameter: true
)
}

await stop()

Expand Down Expand Up @@ -577,7 +617,11 @@ final class NetworkProtectionTunnelController: TunnelController, TunnelSessionPr
throw StartError.simulateControllerFailureError
}

try tunnelManager.connection.startVPNTunnel(options: options)
do {
try tunnelManager.connection.startVPNTunnel(options: options)
} catch {
throw StartError.startTunnelFailure(error)
}

PixelKit.fire(
NetworkProtectionPixelEvent.networkProtectionNewUser,
Expand Down

0 comments on commit 36c9c14

Please sign in to comment.