mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using Bit.Core.AdminConsole.OrganizationFeatures.OrganizationUsers.Interfaces;
|
|
using Bit.Core.Exceptions;
|
|
using Bit.Core.Repositories;
|
|
|
|
namespace Bit.Core.AdminConsole.OrganizationFeatures.OrganizationUsers;
|
|
|
|
public class CountNewSmSeatsRequiredQuery : ICountNewSmSeatsRequiredQuery
|
|
{
|
|
private readonly IOrganizationUserRepository _organizationUserRepository;
|
|
private readonly IOrganizationRepository _organizationRepository;
|
|
|
|
public CountNewSmSeatsRequiredQuery(IOrganizationUserRepository organizationUserRepository,
|
|
IOrganizationRepository organizationRepository)
|
|
{
|
|
_organizationUserRepository = organizationUserRepository;
|
|
_organizationRepository = organizationRepository;
|
|
}
|
|
|
|
public async Task<int> CountNewSmSeatsRequiredAsync(Guid organizationId, int usersToAdd)
|
|
{
|
|
if (usersToAdd == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
var organization = await _organizationRepository.GetByIdAsync(organizationId);
|
|
if (organization == null)
|
|
{
|
|
throw new NotFoundException();
|
|
}
|
|
|
|
if (!organization.UseSecretsManager)
|
|
{
|
|
throw new BadRequestException("Organization does not use Secrets Manager");
|
|
}
|
|
|
|
if (!organization.SmSeats.HasValue || organization.SecretsManagerBeta)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
var occupiedSmSeats =
|
|
await _organizationUserRepository.GetOccupiedSmSeatCountByOrganizationIdAsync(organization.Id);
|
|
|
|
var availableSmSeats = organization.SmSeats.Value - occupiedSmSeats;
|
|
|
|
if (availableSmSeats >= usersToAdd)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return usersToAdd - availableSmSeats;
|
|
}
|
|
}
|