mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
PM-1688 | individual vault encryption: remove client version restriction (#4198)
* remove server restriction code * remove client version method check for encryption --------- Co-authored-by: bnagawiecki <107435978+bnagawiecki@users.noreply.github.com>
This commit is contained in:
parent
1b5f9e3f3e
commit
48f9d09f4e
@ -41,7 +41,6 @@ public class CiphersController : Controller
|
|||||||
private readonly ICurrentContext _currentContext;
|
private readonly ICurrentContext _currentContext;
|
||||||
private readonly ILogger<CiphersController> _logger;
|
private readonly ILogger<CiphersController> _logger;
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
private readonly Version _cipherKeyEncryptionMinimumVersion = new Version(Constants.CipherKeyEncryptionMinimumVersion);
|
|
||||||
private readonly IFeatureService _featureService;
|
private readonly IFeatureService _featureService;
|
||||||
private readonly IOrganizationCiphersQuery _organizationCiphersQuery;
|
private readonly IOrganizationCiphersQuery _organizationCiphersQuery;
|
||||||
private readonly IApplicationCacheService _applicationCacheService;
|
private readonly IApplicationCacheService _applicationCacheService;
|
||||||
@ -199,7 +198,6 @@ public class CiphersController : Controller
|
|||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
ValidateClientVersionForItemLevelEncryptionSupport(cipher);
|
|
||||||
ValidateClientVersionForFido2CredentialSupport(cipher);
|
ValidateClientVersionForFido2CredentialSupport(cipher);
|
||||||
|
|
||||||
var collectionIds = (await _collectionCipherRepository.GetManyByUserIdCipherIdAsync(userId, id)).Select(c => c.CollectionId).ToList();
|
var collectionIds = (await _collectionCipherRepository.GetManyByUserIdCipherIdAsync(userId, id)).Select(c => c.CollectionId).ToList();
|
||||||
@ -224,7 +222,6 @@ public class CiphersController : Controller
|
|||||||
var userId = _userService.GetProperUserId(User).Value;
|
var userId = _userService.GetProperUserId(User).Value;
|
||||||
var cipher = await _cipherRepository.GetOrganizationDetailsByIdAsync(id);
|
var cipher = await _cipherRepository.GetOrganizationDetailsByIdAsync(id);
|
||||||
|
|
||||||
ValidateClientVersionForItemLevelEncryptionSupport(cipher);
|
|
||||||
ValidateClientVersionForFido2CredentialSupport(cipher);
|
ValidateClientVersionForFido2CredentialSupport(cipher);
|
||||||
|
|
||||||
if (cipher == null || !cipher.OrganizationId.HasValue ||
|
if (cipher == null || !cipher.OrganizationId.HasValue ||
|
||||||
@ -590,7 +587,6 @@ public class CiphersController : Controller
|
|||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
ValidateClientVersionForItemLevelEncryptionSupport(cipher);
|
|
||||||
ValidateClientVersionForFido2CredentialSupport(cipher);
|
ValidateClientVersionForFido2CredentialSupport(cipher);
|
||||||
|
|
||||||
var original = cipher.Clone();
|
var original = cipher.Clone();
|
||||||
@ -939,7 +935,6 @@ public class CiphersController : Controller
|
|||||||
|
|
||||||
var existingCipher = ciphersDict[cipher.Id.Value];
|
var existingCipher = ciphersDict[cipher.Id.Value];
|
||||||
|
|
||||||
ValidateClientVersionForItemLevelEncryptionSupport(existingCipher);
|
|
||||||
ValidateClientVersionForFido2CredentialSupport(existingCipher);
|
ValidateClientVersionForFido2CredentialSupport(existingCipher);
|
||||||
|
|
||||||
shareCiphers.Add((cipher.ToCipher(existingCipher), cipher.LastKnownRevisionDate));
|
shareCiphers.Add((cipher.ToCipher(existingCipher), cipher.LastKnownRevisionDate));
|
||||||
@ -994,8 +989,6 @@ public class CiphersController : Controller
|
|||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
ValidateClientVersionForItemLevelEncryptionSupport(cipher);
|
|
||||||
|
|
||||||
if (request.FileSize > CipherService.MAX_FILE_SIZE)
|
if (request.FileSize > CipherService.MAX_FILE_SIZE)
|
||||||
{
|
{
|
||||||
throw new BadRequestException($"Max file size is {CipherService.MAX_FILE_SIZE_READABLE}.");
|
throw new BadRequestException($"Max file size is {CipherService.MAX_FILE_SIZE_READABLE}.");
|
||||||
@ -1213,14 +1206,6 @@ public class CiphersController : Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ValidateClientVersionForItemLevelEncryptionSupport(Cipher cipher)
|
|
||||||
{
|
|
||||||
if (cipher.Key != null && _currentContext.ClientVersion < _cipherKeyEncryptionMinimumVersion)
|
|
||||||
{
|
|
||||||
throw new BadRequestException("Cannot edit item. Update to the latest version of Bitwarden and try again.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ValidateClientVersionForFido2CredentialSupport(Cipher cipher)
|
private void ValidateClientVersionForFido2CredentialSupport(Cipher cipher)
|
||||||
{
|
{
|
||||||
if (cipher.Type == Core.Vault.Enums.CipherType.Login)
|
if (cipher.Type == Core.Vault.Enums.CipherType.Login)
|
||||||
|
@ -23,8 +23,6 @@ public static class Constants
|
|||||||
|
|
||||||
public const string Fido2KeyCipherMinimumVersion = "2023.10.0";
|
public const string Fido2KeyCipherMinimumVersion = "2023.10.0";
|
||||||
|
|
||||||
public const string CipherKeyEncryptionMinimumVersion = "2024.2.0";
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used by IdentityServer to identify our own provider.
|
/// Used by IdentityServer to identify our own provider.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user