crypto: Prepare the verification service to allow starting short SAS flows

This commit is contained in:
Damir Jelić 2021-06-29 11:12:41 +02:00
parent 304c89a56d
commit bcfb121215

View file

@ -248,14 +248,13 @@ constructor(
otherDeviceId: String,
transactionId: String?
): String? {
val flowId = transactionId ?: return null
// should check if already one (and cancel it)
return if (method == VerificationMethod.SAS) {
val request = this.getVerificationRequest(otherUserId, flowId)
val request = transactionId?.let { this.getVerificationRequest(otherUserId, it) }
if (request != null) {
runBlocking {
val sas = request?.startSasVerification()
val sas = request.startSasVerification()
if (sas != null) {
val sasTransaction = SasVerification(olmMachine.inner(), sas, requestSender, listeners)
@ -265,6 +264,14 @@ constructor(
null
}
}
} else {
// This should start the short SAS flow, the one that doesn't start with
// a `m.key.verification.request`, Element web stopped doing this, might
// be wise do do so as well
// DeviceListBottomSheetViewModel triggers this, interestingly the method that
// triggers this is called `manuallyVerify()`
TODO()
}
} else {
throw IllegalArgumentException("Unknown verification method")
}