mirror of
https://github.com/bitwarden/server.git
synced 2025-02-27 03:41:30 +01:00
[EC-584] Removed ListResponseModel from OrganizationExportResponseModel (#2316)
* [EC-584] Removed ListResponseModel from OrganizationExportResponseModel properties * [EC-584] Added backwards compatibility for client version 2022.9.0 * [EC-584] Added property 'ClientVersion' to ICurrentContext * [EC-584] Added backwards compatibility for version 2022.10.0 * [EC-584] Change ICurrentContext.ClientVersion from string to Version * [EC-584] Remove check for versions before 2022.9.0 because they do not use this endpoint
This commit is contained in:
parent
363dd6493a
commit
8a6f780d55
@ -1,4 +1,5 @@
|
|||||||
using Bit.Api.Models.Response;
|
using Bit.Api.Models.Response;
|
||||||
|
using Bit.Core.Context;
|
||||||
using Bit.Core.Entities;
|
using Bit.Core.Entities;
|
||||||
using Bit.Core.Services;
|
using Bit.Core.Services;
|
||||||
using Bit.Core.Settings;
|
using Bit.Core.Settings;
|
||||||
@ -12,17 +13,20 @@ namespace Bit.Api.Controllers;
|
|||||||
[Authorize("Application")]
|
[Authorize("Application")]
|
||||||
public class OrganizationExportController : Controller
|
public class OrganizationExportController : Controller
|
||||||
{
|
{
|
||||||
|
private readonly ICurrentContext _currentContext;
|
||||||
private readonly IUserService _userService;
|
private readonly IUserService _userService;
|
||||||
private readonly ICollectionService _collectionService;
|
private readonly ICollectionService _collectionService;
|
||||||
private readonly ICipherService _cipherService;
|
private readonly ICipherService _cipherService;
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
|
|
||||||
public OrganizationExportController(
|
public OrganizationExportController(
|
||||||
|
ICurrentContext currentContext,
|
||||||
ICipherService cipherService,
|
ICipherService cipherService,
|
||||||
ICollectionService collectionService,
|
ICollectionService collectionService,
|
||||||
IUserService userService,
|
IUserService userService,
|
||||||
GlobalSettings globalSettings)
|
GlobalSettings globalSettings)
|
||||||
{
|
{
|
||||||
|
_currentContext = currentContext;
|
||||||
_cipherService = cipherService;
|
_cipherService = cipherService;
|
||||||
_collectionService = collectionService;
|
_collectionService = collectionService;
|
||||||
_userService = userService;
|
_userService = userService;
|
||||||
@ -30,20 +34,32 @@ public class OrganizationExportController : Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("export")]
|
[HttpGet("export")]
|
||||||
public async Task<OrganizationExportResponseModel> Export(Guid organizationId)
|
public async Task<IActionResult> Export(Guid organizationId)
|
||||||
{
|
{
|
||||||
var userId = _userService.GetProperUserId(User).Value;
|
var userId = _userService.GetProperUserId(User).Value;
|
||||||
|
|
||||||
IEnumerable<Collection> orgCollections = await _collectionService.GetOrganizationCollections(organizationId);
|
IEnumerable<Collection> orgCollections = await _collectionService.GetOrganizationCollections(organizationId);
|
||||||
(IEnumerable<CipherOrganizationDetails> orgCiphers, Dictionary<Guid, IGrouping<Guid, CollectionCipher>> collectionCiphersGroupDict) = await _cipherService.GetOrganizationCiphers(userId, organizationId);
|
(IEnumerable<CipherOrganizationDetails> orgCiphers, Dictionary<Guid, IGrouping<Guid, CollectionCipher>> collectionCiphersGroupDict) = await _cipherService.GetOrganizationCiphers(userId, organizationId);
|
||||||
|
|
||||||
var result = new OrganizationExportResponseModel
|
// Backward compatibility with versions before 2022.11.0 that use ListResponseModel
|
||||||
|
if (_currentContext.ClientVersion < new Version("2022.11.0"))
|
||||||
{
|
{
|
||||||
Collections = GetOrganizationCollectionsResponse(orgCollections),
|
var organizationExportListResponseModel = new OrganizationExportListResponseModel
|
||||||
Ciphers = GetOrganizationCiphersResponse(orgCiphers, collectionCiphersGroupDict)
|
{
|
||||||
|
Collections = GetOrganizationCollectionsResponse(orgCollections),
|
||||||
|
Ciphers = GetOrganizationCiphersResponse(orgCiphers, collectionCiphersGroupDict)
|
||||||
|
};
|
||||||
|
|
||||||
|
return Ok(organizationExportListResponseModel);
|
||||||
|
}
|
||||||
|
|
||||||
|
var organizationExportResponseModel = new OrganizationExportResponseModel
|
||||||
|
{
|
||||||
|
Collections = orgCollections.Select(c => new CollectionResponseModel(c)),
|
||||||
|
Ciphers = orgCiphers.Select(c => new CipherMiniDetailsResponseModel(c, _globalSettings, collectionCiphersGroupDict, c.OrganizationUseTotp))
|
||||||
};
|
};
|
||||||
|
|
||||||
return result;
|
return Ok(organizationExportResponseModel);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ListResponseModel<CollectionResponseModel> GetOrganizationCollectionsResponse(IEnumerable<Collection> orgCollections)
|
private ListResponseModel<CollectionResponseModel> GetOrganizationCollectionsResponse(IEnumerable<Collection> orgCollections)
|
||||||
|
@ -1,11 +1,21 @@
|
|||||||
namespace Bit.Api.Models.Response;
|
using Bit.Core.Models.Api;
|
||||||
|
|
||||||
public class OrganizationExportResponseModel
|
namespace Bit.Api.Models.Response;
|
||||||
|
|
||||||
|
public class OrganizationExportResponseModel : ResponseModel
|
||||||
{
|
{
|
||||||
public OrganizationExportResponseModel()
|
public OrganizationExportResponseModel() : base("organizationExport")
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public IEnumerable<CollectionResponseModel> Collections { get; set; }
|
||||||
|
|
||||||
|
public IEnumerable<CipherMiniDetailsResponseModel> Ciphers { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
[Obsolete("This version is for backwards compatibility for client version 2022.9.0")]
|
||||||
|
public class OrganizationExportListResponseModel
|
||||||
|
{
|
||||||
public ListResponseModel<CollectionResponseModel> Collections { get; set; }
|
public ListResponseModel<CollectionResponseModel> Collections { get; set; }
|
||||||
|
|
||||||
public ListResponseModel<CipherMiniDetailsResponseModel> Ciphers { get; set; }
|
public ListResponseModel<CipherMiniDetailsResponseModel> Ciphers { get; set; }
|
||||||
|
@ -32,6 +32,7 @@ public class CurrentContext : ICurrentContext
|
|||||||
public virtual bool MaybeBot { get; set; }
|
public virtual bool MaybeBot { get; set; }
|
||||||
public virtual int? BotScore { get; set; }
|
public virtual int? BotScore { get; set; }
|
||||||
public virtual string ClientId { get; set; }
|
public virtual string ClientId { get; set; }
|
||||||
|
public virtual Version ClientVersion { get; set; }
|
||||||
|
|
||||||
public CurrentContext(IProviderUserRepository providerUserRepository)
|
public CurrentContext(IProviderUserRepository providerUserRepository)
|
||||||
{
|
{
|
||||||
@ -80,6 +81,11 @@ public class CurrentContext : ICurrentContext
|
|||||||
{
|
{
|
||||||
MaybeBot = httpContext.Request.Headers["X-Cf-Maybe-Bot"] == "1";
|
MaybeBot = httpContext.Request.Headers["X-Cf-Maybe-Bot"] == "1";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (httpContext.Request.Headers.ContainsKey("Bitwarden-Client-Version"))
|
||||||
|
{
|
||||||
|
ClientVersion = new Version(httpContext.Request.Headers["Bitwarden-Client-Version"]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async virtual Task BuildAsync(ClaimsPrincipal user, GlobalSettings globalSettings)
|
public async virtual Task BuildAsync(ClaimsPrincipal user, GlobalSettings globalSettings)
|
||||||
|
@ -22,6 +22,7 @@ public interface ICurrentContext
|
|||||||
bool MaybeBot { get; set; }
|
bool MaybeBot { get; set; }
|
||||||
int? BotScore { get; set; }
|
int? BotScore { get; set; }
|
||||||
string ClientId { get; set; }
|
string ClientId { get; set; }
|
||||||
|
Version ClientVersion { get; set; }
|
||||||
Task BuildAsync(HttpContext httpContext, GlobalSettings globalSettings);
|
Task BuildAsync(HttpContext httpContext, GlobalSettings globalSettings);
|
||||||
Task BuildAsync(ClaimsPrincipal user, GlobalSettings globalSettings);
|
Task BuildAsync(ClaimsPrincipal user, GlobalSettings globalSettings);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user