mirror of
https://github.com/bitwarden/android.git
synced 2025-12-10 09:56:45 -06:00
[PM-24204] Correct TOTP generation to use cipherId instead of totpCode (#5599)
This commit is contained in:
parent
f589546e6a
commit
02b5cbb199
@ -24,11 +24,12 @@ class AutofillTotpManagerImpl(
|
||||
if (settingsRepository.isAutoCopyTotpDisabled) return
|
||||
val isPremium = authRepository.userStateFlow.value?.activeAccount?.isPremium == true
|
||||
if (!isPremium && !cipherView.organizationUseTotp) return
|
||||
val totpCode = cipherView.login?.totp ?: return
|
||||
cipherView.login?.totp ?: return
|
||||
val cipherId = cipherView.id ?: return
|
||||
|
||||
val totpResult = vaultRepository.generateTotp(
|
||||
time = clock.instant(),
|
||||
totpCode = totpCode,
|
||||
cipherId = cipherId,
|
||||
)
|
||||
|
||||
if (totpResult is GenerateTotpResult.Success) {
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
package com.x8bit.bitwarden.data.vault.datasource.sdk
|
||||
|
||||
import com.bitwarden.core.DateTime
|
||||
import com.bitwarden.core.DerivePinKeyResponse
|
||||
import com.bitwarden.core.InitOrgCryptoRequest
|
||||
import com.bitwarden.core.InitUserCryptoMethod
|
||||
@ -373,15 +372,6 @@ interface VaultSdkSource {
|
||||
passwordHistoryList: List<PasswordHistory>,
|
||||
): Result<List<PasswordHistoryView>>
|
||||
|
||||
/**
|
||||
* Generate a verification code and the period using the totp code.
|
||||
*/
|
||||
suspend fun generateTotp(
|
||||
userId: String,
|
||||
totp: String,
|
||||
time: DateTime,
|
||||
): Result<TotpResponse>
|
||||
|
||||
/**
|
||||
* Generate a verification code for the given [cipherListView] and [time].
|
||||
*/
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
package com.x8bit.bitwarden.data.vault.datasource.sdk
|
||||
|
||||
import com.bitwarden.core.DateTime
|
||||
import com.bitwarden.core.DeriveKeyConnectorRequest
|
||||
import com.bitwarden.core.DerivePinKeyResponse
|
||||
import com.bitwarden.core.InitOrgCryptoRequest
|
||||
@ -417,19 +416,6 @@ class VaultSdkSourceImpl(
|
||||
.decryptList(list = passwordHistoryList)
|
||||
}
|
||||
|
||||
override suspend fun generateTotp(
|
||||
userId: String,
|
||||
totp: String,
|
||||
time: DateTime,
|
||||
): Result<TotpResponse> = runCatchingWithLogs {
|
||||
getClient(userId = userId)
|
||||
.vault()
|
||||
.generateTotp(
|
||||
key = totp,
|
||||
time = time,
|
||||
)
|
||||
}
|
||||
|
||||
override suspend fun generateTotpForCipherListView(
|
||||
userId: String,
|
||||
cipherListView: CipherListView,
|
||||
|
||||
@ -225,7 +225,7 @@ interface VaultRepository : CipherManager, VaultLockManager {
|
||||
/**
|
||||
* Attempt to get the verification code and the period.
|
||||
*/
|
||||
suspend fun generateTotp(totpCode: String, time: DateTime): GenerateTotpResult
|
||||
suspend fun generateTotp(cipherId: String, time: DateTime): GenerateTotpResult
|
||||
|
||||
/**
|
||||
* Attempt to delete a send.
|
||||
|
||||
@ -802,15 +802,24 @@ class VaultRepositoryImpl(
|
||||
}
|
||||
|
||||
override suspend fun generateTotp(
|
||||
totpCode: String,
|
||||
cipherId: String,
|
||||
time: DateTime,
|
||||
): GenerateTotpResult {
|
||||
val userId = activeUserId
|
||||
?: return GenerateTotpResult.Error(error = NoActiveUserException())
|
||||
return vaultSdkSource.generateTotp(
|
||||
val cipherListView = decryptCipherListResultStateFlow
|
||||
.value
|
||||
.data
|
||||
?.successes
|
||||
?.find { it.id == cipherId }
|
||||
?: return GenerateTotpResult.Error(
|
||||
error = IllegalArgumentException(cipherId),
|
||||
)
|
||||
|
||||
return vaultSdkSource.generateTotpForCipherListView(
|
||||
time = time,
|
||||
userId = userId,
|
||||
totp = totpCode,
|
||||
cipherListView = cipherListView,
|
||||
)
|
||||
.fold(
|
||||
onSuccess = {
|
||||
|
||||
@ -414,7 +414,7 @@ class SearchViewModel @Inject constructor(
|
||||
action: ListingItemOverflowAction.VaultAction.CopyTotpClick,
|
||||
) {
|
||||
viewModelScope.launch {
|
||||
val result = vaultRepo.generateTotp(action.totpCode, clock.instant())
|
||||
val result = vaultRepo.generateTotp(action.cipherId, clock.instant())
|
||||
sendAction(SearchAction.Internal.GenerateTotpResultReceive(result))
|
||||
}
|
||||
}
|
||||
|
||||
@ -1239,7 +1239,7 @@ class VaultItemListingViewModel @Inject constructor(
|
||||
action: ListingItemOverflowAction.VaultAction.CopyTotpClick,
|
||||
) {
|
||||
viewModelScope.launch {
|
||||
val result = vaultRepository.generateTotp(action.totpCode, clock.instant())
|
||||
val result = vaultRepository.generateTotp(action.cipherId, clock.instant())
|
||||
sendAction(VaultItemListingsAction.Internal.GenerateTotpResultReceive(result))
|
||||
}
|
||||
}
|
||||
|
||||
@ -136,7 +136,7 @@ sealed class ListingItemOverflowAction : Parcelable {
|
||||
*/
|
||||
@Parcelize
|
||||
data class CopyTotpClick(
|
||||
val totpCode: String,
|
||||
val cipherId: String,
|
||||
override val requiresPasswordReprompt: Boolean,
|
||||
) : VaultAction() {
|
||||
override val title: Text get() = BitwardenString.copy_totp.asText()
|
||||
|
||||
@ -39,7 +39,7 @@ fun CipherListView.toOverflowActions(
|
||||
this.login?.totp
|
||||
?.let {
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = it,
|
||||
cipherId = cipherId,
|
||||
requiresPasswordReprompt = hasMasterPassword,
|
||||
)
|
||||
}
|
||||
|
||||
@ -634,7 +634,7 @@ class VaultViewModel @Inject constructor(
|
||||
action: ListingItemOverflowAction.VaultAction.CopyTotpClick,
|
||||
) {
|
||||
viewModelScope.launch {
|
||||
val result = vaultRepository.generateTotp(action.totpCode, clock.instant())
|
||||
val result = vaultRepository.generateTotp(action.cipherId, clock.instant())
|
||||
sendAction(VaultAction.Internal.GenerateTotpResultReceive(result))
|
||||
}
|
||||
}
|
||||
|
||||
@ -128,7 +128,7 @@ class AutofillTotpManagerTest {
|
||||
}
|
||||
every { loginView.totp } returns TOTP_CODE
|
||||
coEvery {
|
||||
vaultRepository.generateTotp(time = FIXED_CLOCK.instant(), totpCode = TOTP_CODE)
|
||||
vaultRepository.generateTotp(time = FIXED_CLOCK.instant(), cipherId = "cipherId")
|
||||
} returns generateTotpResult
|
||||
|
||||
autofillTotpManager.tryCopyTotpToClipboard(cipherView = cipherView)
|
||||
@ -141,7 +141,7 @@ class AutofillTotpManagerTest {
|
||||
settingsRepository.isAutoCopyTotpDisabled
|
||||
}
|
||||
coVerify(exactly = 1) {
|
||||
vaultRepository.generateTotp(time = FIXED_CLOCK.instant(), totpCode = TOTP_CODE)
|
||||
vaultRepository.generateTotp(time = FIXED_CLOCK.instant(), cipherId = "cipherId")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -69,9 +69,6 @@ import org.junit.jupiter.api.Assertions.assertEquals
|
||||
import org.junit.jupiter.api.Assertions.assertTrue
|
||||
import org.junit.jupiter.api.Test
|
||||
import java.security.MessageDigest
|
||||
import java.time.Clock
|
||||
import java.time.Instant
|
||||
import java.time.ZoneOffset
|
||||
|
||||
@Suppress("LargeClass")
|
||||
class VaultSdkSourceTest {
|
||||
@ -977,30 +974,6 @@ class VaultSdkSourceTest {
|
||||
coVerify { sdkClientManager.getOrCreateClient(userId = userId) }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `generateTotp should call SDK and return a Result with correct data`() = runTest {
|
||||
val userId = "userId"
|
||||
val totpResponse = TotpResponse("TestCode", 30u)
|
||||
coEvery { clientVault.generateTotp(any(), any()) } returns totpResponse
|
||||
|
||||
val time = FIXED_CLOCK.instant()
|
||||
val result = vaultSdkSource.generateTotp(
|
||||
userId = userId,
|
||||
totp = "Totp",
|
||||
time = time,
|
||||
)
|
||||
|
||||
assertEquals(totpResponse.asSuccess(), result)
|
||||
coVerify {
|
||||
clientVault.generateTotp(
|
||||
key = "Totp",
|
||||
time = time,
|
||||
)
|
||||
}
|
||||
|
||||
coVerify { sdkClientManager.getOrCreateClient(userId = userId) }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `generateTotpForCipherListView should call SDK and return a Result with correct data`() =
|
||||
runTest {
|
||||
@ -1422,7 +1395,3 @@ private val DEFAULT_FIDO_2_AUTH_REQUEST = AuthenticateFido2CredentialRequest(
|
||||
isUserVerificationSupported = true,
|
||||
selectedCipherView = createMockCipherView(number = 1),
|
||||
)
|
||||
private val FIXED_CLOCK: Clock = Clock.fixed(
|
||||
Instant.parse("2023-10-27T12:00:00Z"),
|
||||
ZoneOffset.UTC,
|
||||
)
|
||||
|
||||
@ -143,10 +143,10 @@ class TotpCodeManagerTest {
|
||||
runTest {
|
||||
val totpResponse = TotpResponse("123456", 30u)
|
||||
coEvery {
|
||||
vaultSdkSource.generateTotp(
|
||||
vaultSdkSource.generateTotpForCipherListView(
|
||||
userId = any(),
|
||||
totp = any(),
|
||||
time = any(),
|
||||
cipherListView = any(),
|
||||
)
|
||||
} returns totpResponse.asSuccess()
|
||||
|
||||
|
||||
@ -2740,7 +2740,7 @@ class VaultRepositoryTest {
|
||||
fakeAuthDiskSource.userState = null
|
||||
|
||||
val result = vaultRepository.generateTotp(
|
||||
totpCode = "totpCode",
|
||||
cipherId = "totpCode",
|
||||
time = DateTime.now(),
|
||||
)
|
||||
|
||||
@ -2753,13 +2753,16 @@ class VaultRepositoryTest {
|
||||
@Test
|
||||
fun `generateTotp should return a success result on getting a code`() = runTest {
|
||||
val totpResponse = TotpResponse("Testcode", 30u)
|
||||
val userId = "mockId-1"
|
||||
coEvery {
|
||||
vaultSdkSource.generateTotp(any(), any(), any())
|
||||
vaultSdkSource.generateTotpForCipherListView(any(), any(), any())
|
||||
} returns totpResponse.asSuccess()
|
||||
fakeAuthDiskSource.userState = MOCK_USER_STATE
|
||||
setVaultToUnlocked(userId = userId)
|
||||
setupDataStateFlow(userId = userId)
|
||||
|
||||
val result = vaultRepository.generateTotp(
|
||||
totpCode = "testCode",
|
||||
cipherId = "mockId-1",
|
||||
time = DateTime.now(),
|
||||
)
|
||||
|
||||
|
||||
@ -1007,7 +1007,7 @@ class SearchViewModelTest : BaseViewModelTest() {
|
||||
viewModel.trySendAction(
|
||||
SearchAction.OverflowOptionClick(
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = totpCode,
|
||||
cipherId = totpCode,
|
||||
requiresPasswordReprompt = false,
|
||||
),
|
||||
),
|
||||
@ -1035,7 +1035,7 @@ class SearchViewModelTest : BaseViewModelTest() {
|
||||
viewModel.trySendAction(
|
||||
SearchAction.OverflowOptionClick(
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = totpCode,
|
||||
cipherId = totpCode,
|
||||
requiresPasswordReprompt = false,
|
||||
),
|
||||
),
|
||||
|
||||
@ -52,7 +52,7 @@ fun createMockDisplayItemForCipher(
|
||||
cipherId = "mockId-$number",
|
||||
),
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = "mockTotp-$number",
|
||||
cipherId = "mockId-$number",
|
||||
requiresPasswordReprompt = true,
|
||||
),
|
||||
ListingItemOverflowAction.VaultAction.ViewClick(
|
||||
|
||||
@ -1954,7 +1954,7 @@ class VaultItemListingViewModelTest : BaseViewModelTest() {
|
||||
viewModel.trySendAction(
|
||||
VaultItemListingsAction.OverflowOptionClick(
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = totpCode,
|
||||
cipherId = totpCode,
|
||||
requiresPasswordReprompt = false,
|
||||
),
|
||||
),
|
||||
@ -1982,7 +1982,7 @@ class VaultItemListingViewModelTest : BaseViewModelTest() {
|
||||
viewModel.trySendAction(
|
||||
VaultItemListingsAction.OverflowOptionClick(
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = totpCode,
|
||||
cipherId = totpCode,
|
||||
requiresPasswordReprompt = false,
|
||||
),
|
||||
),
|
||||
|
||||
@ -62,7 +62,7 @@ fun createMockDisplayItemForCipher(
|
||||
cipherId = "mockId-$number",
|
||||
),
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = "mockTotp-$number",
|
||||
cipherId = "mockId-$number",
|
||||
requiresPasswordReprompt = requiresPasswordReprompt,
|
||||
),
|
||||
ListingItemOverflowAction.VaultAction.ViewClick(
|
||||
|
||||
@ -45,7 +45,7 @@ class CipherListViewExtensionsTest {
|
||||
cipherId = id,
|
||||
),
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = totpCode,
|
||||
cipherId = id,
|
||||
requiresPasswordReprompt = false,
|
||||
),
|
||||
ListingItemOverflowAction.VaultAction.ViewClick(
|
||||
|
||||
@ -1931,7 +1931,7 @@ class VaultViewModelTest : BaseViewModelTest() {
|
||||
viewModel.trySendAction(
|
||||
VaultAction.OverflowOptionClick(
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = totpCode,
|
||||
cipherId = totpCode,
|
||||
requiresPasswordReprompt = false,
|
||||
),
|
||||
),
|
||||
@ -1959,7 +1959,7 @@ class VaultViewModelTest : BaseViewModelTest() {
|
||||
viewModel.trySendAction(
|
||||
VaultAction.OverflowOptionClick(
|
||||
ListingItemOverflowAction.VaultAction.CopyTotpClick(
|
||||
totpCode = totpCode,
|
||||
cipherId = totpCode,
|
||||
requiresPasswordReprompt = false,
|
||||
),
|
||||
),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user