46 lines
1.3 KiB
Swift
46 lines
1.3 KiB
Swift
//
|
|
// Copyright 2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
import AnalyticsEvents
|
|
|
|
extension DecryptionFailure {
|
|
|
|
public func toAnalyticsEvent() -> AnalyticsEvent.Error {
|
|
|
|
let timeToDecryptMillis: Int = if let ttd = self.timeToDecrypt {
|
|
Int(ttd * 1000)
|
|
} else {
|
|
-1
|
|
}
|
|
|
|
let isHistoricalEvent = if let localAge = self.eventLocalAgeMillis {
|
|
localAge < 0
|
|
} else { false }
|
|
|
|
let errorName = if isHistoricalEvent && self.trustOwnIdentityAtTimeOfFailure == false {
|
|
AnalyticsEvent.Error.Name.HistoricalMessage
|
|
} else {
|
|
self.reason.errorName
|
|
}
|
|
|
|
return AnalyticsEvent.Error(
|
|
context: self.context,
|
|
cryptoModule: .Rust,
|
|
cryptoSDK: .Rust,
|
|
domain: .E2EE,
|
|
eventLocalAgeMillis: self.eventLocalAgeMillis,
|
|
isFederated: self.isFederated,
|
|
isMatrixDotOrg: self.isMatrixOrg,
|
|
name: errorName,
|
|
timeToDecryptMillis: timeToDecryptMillis,
|
|
userTrustsOwnIdentity: self.trustOwnIdentityAtTimeOfFailure,
|
|
wasVisibleToUser: self.wasVisibleToUser
|
|
)
|
|
}
|
|
}
|