mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
only count status confirmed
This commit is contained in:
parent
8218ab468d
commit
e189e8cc79
@ -444,9 +444,9 @@ namespace Bit.Core.Services
|
|||||||
|
|
||||||
if(plan.Type == PlanType.Free)
|
if(plan.Type == PlanType.Free)
|
||||||
{
|
{
|
||||||
var ownerExistingOrgCount =
|
var adminCount =
|
||||||
await _organizationUserRepository.GetCountByFreeOrganizationAdminUserAsync(signup.Owner.Id);
|
await _organizationUserRepository.GetCountByFreeOrganizationAdminUserAsync(signup.Owner.Id);
|
||||||
if(ownerExistingOrgCount > 0)
|
if(adminCount > 0)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("You can only be an admin of one free organization.");
|
throw new BadRequestException("You can only be an admin of one free organization.");
|
||||||
}
|
}
|
||||||
@ -894,10 +894,17 @@ namespace Bit.Core.Services
|
|||||||
throw new BadRequestException("Already accepted.");
|
throw new BadRequestException("Already accepted.");
|
||||||
}
|
}
|
||||||
|
|
||||||
var ownerExistingOrgCount = await _organizationUserRepository.GetCountByFreeOrganizationAdminUserAsync(user.Id);
|
if(orgUser.Type == OrganizationUserType.Owner || orgUser.Type == OrganizationUserType.Admin)
|
||||||
if(ownerExistingOrgCount > 0)
|
|
||||||
{
|
{
|
||||||
throw new BadRequestException("You can only be an admin of one free organization.");
|
var org = await _organizationRepository.GetByIdAsync(orgUser.OrganizationId);
|
||||||
|
if(org.PlanType == PlanType.Free)
|
||||||
|
{
|
||||||
|
var adminCount = await _organizationUserRepository.GetCountByFreeOrganizationAdminUserAsync(user.Id);
|
||||||
|
if(adminCount > 0)
|
||||||
|
{
|
||||||
|
throw new BadRequestException("You can only be an admin of one free organization.");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var tokenValidationFailed = true;
|
var tokenValidationFailed = true;
|
||||||
@ -944,17 +951,25 @@ namespace Bit.Core.Services
|
|||||||
throw new BadRequestException("User not valid.");
|
throw new BadRequestException("User not valid.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var org = await _organizationRepository.GetByIdAsync(organizationId);
|
||||||
|
if(org.PlanType == PlanType.Free &&
|
||||||
|
(orgUser.Type == OrganizationUserType.Admin || orgUser.Type == OrganizationUserType.Owner))
|
||||||
|
{
|
||||||
|
var adminCount = await _organizationUserRepository.GetCountByFreeOrganizationAdminUserAsync(
|
||||||
|
orgUser.UserId.Value);
|
||||||
|
if(adminCount > 0)
|
||||||
|
{
|
||||||
|
throw new BadRequestException("User can only be an admin of one free organization.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
orgUser.Status = OrganizationUserStatusType.Confirmed;
|
orgUser.Status = OrganizationUserStatusType.Confirmed;
|
||||||
orgUser.Key = key;
|
orgUser.Key = key;
|
||||||
orgUser.Email = null;
|
orgUser.Email = null;
|
||||||
await _organizationUserRepository.ReplaceAsync(orgUser);
|
await _organizationUserRepository.ReplaceAsync(orgUser);
|
||||||
|
|
||||||
var user = await _userRepository.GetByIdAsync(orgUser.UserId.Value);
|
var user = await _userRepository.GetByIdAsync(orgUser.UserId.Value);
|
||||||
var org = await _organizationRepository.GetByIdAsync(organizationId);
|
await _mailService.SendOrganizationConfirmedEmailAsync(org.Name, user.Email);
|
||||||
if(user != null && org != null)
|
|
||||||
{
|
|
||||||
await _mailService.SendOrganizationConfirmedEmailAsync(org.Name, user.Email);
|
|
||||||
}
|
|
||||||
|
|
||||||
// self-hosted org users get premium access
|
// self-hosted org users get premium access
|
||||||
if(_globalSettings.SelfHosted && !user.Premium && org.Enabled)
|
if(_globalSettings.SelfHosted && !user.Premium && org.Enabled)
|
||||||
|
@ -14,4 +14,5 @@ BEGIN
|
|||||||
OU.[UserId] = @UserId
|
OU.[UserId] = @UserId
|
||||||
AND OU.[Type] < 2 -- Owner or Admin
|
AND OU.[Type] < 2 -- Owner or Admin
|
||||||
AND O.[PlanType] = 0 -- Free
|
AND O.[PlanType] = 0 -- Free
|
||||||
|
AND OU.[Status] = 2 -- 2 = Confirmed
|
||||||
END
|
END
|
@ -11,4 +11,5 @@ BEGIN
|
|||||||
WHERE
|
WHERE
|
||||||
OU.[UserId] = @UserId
|
OU.[UserId] = @UserId
|
||||||
AND OU.[Type] = 0
|
AND OU.[Type] = 0
|
||||||
|
AND OU.[Status] = 2 -- 2 = Confirmed
|
||||||
END
|
END
|
48
util/Setup/DbScripts/2017-09-08_00_OrgUserCounts.sql
Normal file
48
util/Setup/DbScripts/2017-09-08_00_OrgUserCounts.sql
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
IF OBJECT_ID('[dbo].[OrganizationUser_ReadCountByFreeOrganizationAdminUser]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[OrganizationUser_ReadCountByFreeOrganizationAdminUser]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[OrganizationUser_ReadCountByFreeOrganizationAdminUser]
|
||||||
|
@UserId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
COUNT(1)
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationUser] OU
|
||||||
|
INNER JOIN
|
||||||
|
[dbo].[Organization] O ON O.Id = OU.[OrganizationId]
|
||||||
|
WHERE
|
||||||
|
OU.[UserId] = @UserId
|
||||||
|
AND OU.[Type] < 2 -- Owner or Admin
|
||||||
|
AND O.[PlanType] = 0 -- Free
|
||||||
|
AND OU.[Status] = 2 -- 2 = Confirmed
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF OBJECT_ID('[dbo].[OrganizationUser_ReadCountByOrganizationOwnerUser]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[OrganizationUser_ReadCountByOrganizationOwnerUser]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[OrganizationUser_ReadCountByOrganizationOwnerUser]
|
||||||
|
@UserId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
COUNT(1)
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationUser] OU
|
||||||
|
WHERE
|
||||||
|
OU.[UserId] = @UserId
|
||||||
|
AND OU.[Type] = 0
|
||||||
|
AND OU.[Status] = 2 -- 2 = Confirmed
|
||||||
|
END
|
||||||
|
GO
|
@ -8,6 +8,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="DbScripts\2017-09-08_00_OrgUserCounts.sql" />
|
||||||
<EmbeddedResource Include="DbScripts\2017-09-06_00_CipherDetails.sql" />
|
<EmbeddedResource Include="DbScripts\2017-09-06_00_CipherDetails.sql" />
|
||||||
<EmbeddedResource Include="DbScripts\2017-08-30_00_CollectionWriteOnly.sql" />
|
<EmbeddedResource Include="DbScripts\2017-08-30_00_CollectionWriteOnly.sql" />
|
||||||
<EmbeddedResource Include="DbScripts\2017-08-22_00_LicenseCheckScripts.sql" />
|
<EmbeddedResource Include="DbScripts\2017-08-22_00_LicenseCheckScripts.sql" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user