diff --git a/src/Api/Controllers/OrganizationExportController.cs b/src/Api/Controllers/OrganizationExportController.cs index 9c075b18f1..cde9a4a150 100644 --- a/src/Api/Controllers/OrganizationExportController.cs +++ b/src/Api/Controllers/OrganizationExportController.cs @@ -41,25 +41,25 @@ public class OrganizationExportController : Controller IEnumerable orgCollections = await _collectionService.GetOrganizationCollections(organizationId); (IEnumerable orgCiphers, Dictionary> collectionCiphersGroupDict) = await _cipherService.GetOrganizationCiphers(userId, organizationId); - // Backward compatibility with versions before 2022.11.0 that use ListResponseModel - if (_currentContext.ClientVersion < new Version("2022.11.0")) + if (_currentContext.ClientVersion == null || _currentContext.ClientVersion >= new Version("2023.1.0")) { - var organizationExportListResponseModel = new OrganizationExportListResponseModel + var organizationExportResponseModel = new OrganizationExportResponseModel { - Collections = GetOrganizationCollectionsResponse(orgCollections), - Ciphers = GetOrganizationCiphersResponse(orgCiphers, collectionCiphersGroupDict) + Collections = orgCollections.Select(c => new CollectionResponseModel(c)), + Ciphers = orgCiphers.Select(c => new CipherMiniDetailsResponseModel(c, _globalSettings, collectionCiphersGroupDict, c.OrganizationUseTotp)) }; - return Ok(organizationExportListResponseModel); + return Ok(organizationExportResponseModel); } - var organizationExportResponseModel = new OrganizationExportResponseModel + // Backward compatibility with versions before 2023.1.0 that use ListResponseModel + var organizationExportListResponseModel = new OrganizationExportListResponseModel { - Collections = orgCollections.Select(c => new CollectionResponseModel(c)), - Ciphers = orgCiphers.Select(c => new CipherMiniDetailsResponseModel(c, _globalSettings, collectionCiphersGroupDict, c.OrganizationUseTotp)) + Collections = GetOrganizationCollectionsResponse(orgCollections), + Ciphers = GetOrganizationCiphersResponse(orgCiphers, collectionCiphersGroupDict) }; - return Ok(organizationExportResponseModel); + return Ok(organizationExportListResponseModel); } private ListResponseModel GetOrganizationCollectionsResponse(IEnumerable orgCollections) diff --git a/src/Core/Context/CurrentContext.cs b/src/Core/Context/CurrentContext.cs index 8c4d40579b..6e9fa29712 100644 --- a/src/Core/Context/CurrentContext.cs +++ b/src/Core/Context/CurrentContext.cs @@ -82,9 +82,9 @@ public class CurrentContext : ICurrentContext MaybeBot = httpContext.Request.Headers["X-Cf-Maybe-Bot"] == "1"; } - if (httpContext.Request.Headers.ContainsKey("Bitwarden-Client-Version")) + if (httpContext.Request.Headers.ContainsKey("Bitwarden-Client-Version") && Version.TryParse(httpContext.Request.Headers["Bitwarden-Client-Version"], out var cVersion)) { - ClientVersion = new Version(httpContext.Request.Headers["Bitwarden-Client-Version"]); + ClientVersion = cVersion; } }