mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Added SM standalone check to public members controller (#4179)
This commit is contained in:
parent
2d762f8422
commit
b5f09c599b
@ -24,6 +24,8 @@ public class MembersController : Controller
|
|||||||
private readonly IUpdateOrganizationUserCommand _updateOrganizationUserCommand;
|
private readonly IUpdateOrganizationUserCommand _updateOrganizationUserCommand;
|
||||||
private readonly IUpdateOrganizationUserGroupsCommand _updateOrganizationUserGroupsCommand;
|
private readonly IUpdateOrganizationUserGroupsCommand _updateOrganizationUserGroupsCommand;
|
||||||
private readonly IApplicationCacheService _applicationCacheService;
|
private readonly IApplicationCacheService _applicationCacheService;
|
||||||
|
private readonly IPaymentService _paymentService;
|
||||||
|
private readonly IOrganizationRepository _organizationRepository;
|
||||||
|
|
||||||
public MembersController(
|
public MembersController(
|
||||||
IOrganizationUserRepository organizationUserRepository,
|
IOrganizationUserRepository organizationUserRepository,
|
||||||
@ -33,7 +35,9 @@ public class MembersController : Controller
|
|||||||
ICurrentContext currentContext,
|
ICurrentContext currentContext,
|
||||||
IUpdateOrganizationUserCommand updateOrganizationUserCommand,
|
IUpdateOrganizationUserCommand updateOrganizationUserCommand,
|
||||||
IUpdateOrganizationUserGroupsCommand updateOrganizationUserGroupsCommand,
|
IUpdateOrganizationUserGroupsCommand updateOrganizationUserGroupsCommand,
|
||||||
IApplicationCacheService applicationCacheService)
|
IApplicationCacheService applicationCacheService,
|
||||||
|
IPaymentService paymentService,
|
||||||
|
IOrganizationRepository organizationRepository)
|
||||||
{
|
{
|
||||||
_organizationUserRepository = organizationUserRepository;
|
_organizationUserRepository = organizationUserRepository;
|
||||||
_groupRepository = groupRepository;
|
_groupRepository = groupRepository;
|
||||||
@ -43,6 +47,8 @@ public class MembersController : Controller
|
|||||||
_updateOrganizationUserCommand = updateOrganizationUserCommand;
|
_updateOrganizationUserCommand = updateOrganizationUserCommand;
|
||||||
_updateOrganizationUserGroupsCommand = updateOrganizationUserGroupsCommand;
|
_updateOrganizationUserGroupsCommand = updateOrganizationUserGroupsCommand;
|
||||||
_applicationCacheService = applicationCacheService;
|
_applicationCacheService = applicationCacheService;
|
||||||
|
_paymentService = paymentService;
|
||||||
|
_organizationRepository = organizationRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -124,8 +130,19 @@ public class MembersController : Controller
|
|||||||
[ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)]
|
[ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)]
|
||||||
public async Task<IActionResult> Post([FromBody] MemberCreateRequestModel model)
|
public async Task<IActionResult> Post([FromBody] MemberCreateRequestModel model)
|
||||||
{
|
{
|
||||||
|
var hasStandaloneSecretsManager = false;
|
||||||
|
|
||||||
|
var organization = await _organizationRepository.GetByIdAsync(_currentContext.OrganizationId!.Value);
|
||||||
|
|
||||||
|
if (organization != null)
|
||||||
|
{
|
||||||
|
hasStandaloneSecretsManager = await _paymentService.HasSecretsManagerStandalone(organization);
|
||||||
|
}
|
||||||
|
|
||||||
var invite = model.ToOrganizationUserInvite();
|
var invite = model.ToOrganizationUserInvite();
|
||||||
|
|
||||||
|
invite.AccessSecretsManager = hasStandaloneSecretsManager;
|
||||||
|
|
||||||
var user = await _organizationService.InviteUserAsync(_currentContext.OrganizationId.Value, null,
|
var user = await _organizationService.InviteUserAsync(_currentContext.OrganizationId.Value, null,
|
||||||
systemUser: null, invite, model.ExternalId);
|
systemUser: null, invite, model.ExternalId);
|
||||||
var response = new MemberResponseModel(user, invite.Collections);
|
var response = new MemberResponseModel(user, invite.Collections);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user