mirror of
https://github.com/bitwarden/server.git
synced 2025-02-18 02:11:22 +01:00
Resolve error when deleting an account connected to a provider (#1580)
This commit is contained in:
parent
00332e72e4
commit
c22e48c1b4
@ -155,5 +155,11 @@ namespace Bit.Core.Repositories.EntityFramework
|
|||||||
return organizationUsers;
|
return organizationUsers;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<int> GetCountByOnlyOwnerAsync(Guid userId)
|
||||||
|
{
|
||||||
|
var query = new ProviderUserReadCountByOnlyOwnerQuery(userId);
|
||||||
|
return await GetCountFromQuery(query);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,11 +19,12 @@ namespace Bit.Core.Repositories.EntityFramework.Queries
|
|||||||
{
|
{
|
||||||
var owners = from ou in dbContext.OrganizationUsers
|
var owners = from ou in dbContext.OrganizationUsers
|
||||||
where ou.Type == OrganizationUserType.Owner &&
|
where ou.Type == OrganizationUserType.Owner &&
|
||||||
ou.Status == OrganizationUserStatusType.Confirmed
|
ou.Status == OrganizationUserStatusType.Confirmed
|
||||||
group ou by ou.OrganizationId into g
|
group ou by ou.OrganizationId into g
|
||||||
select new
|
select new
|
||||||
{
|
{
|
||||||
OrgUser = g.Select(x => new {x.UserId, x.Id}).FirstOrDefault(), ConfirmedOwnerCount = g.Count()
|
OrgUser = g.Select(x => new {x.UserId, x.Id}).FirstOrDefault(),
|
||||||
|
ConfirmedOwnerCount = g.Count(),
|
||||||
};
|
};
|
||||||
|
|
||||||
var query = from owner in owners
|
var query = from owner in owners
|
||||||
|
@ -0,0 +1,39 @@
|
|||||||
|
using System.Linq;
|
||||||
|
using System;
|
||||||
|
using Bit.Core.Enums.Provider;
|
||||||
|
using Bit.Core.Models.EntityFramework.Provider;
|
||||||
|
|
||||||
|
namespace Bit.Core.Repositories.EntityFramework.Queries
|
||||||
|
{
|
||||||
|
public class ProviderUserReadCountByOnlyOwnerQuery : IQuery<ProviderUser>
|
||||||
|
{
|
||||||
|
private readonly Guid _userId;
|
||||||
|
|
||||||
|
public ProviderUserReadCountByOnlyOwnerQuery(Guid userId)
|
||||||
|
{
|
||||||
|
_userId = userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public IQueryable<ProviderUser> Run(DatabaseContext dbContext)
|
||||||
|
{
|
||||||
|
var owners = from pu in dbContext.ProviderUsers
|
||||||
|
where pu.Type == ProviderUserType.ProviderAdmin &&
|
||||||
|
pu.Status == ProviderUserStatusType.Confirmed
|
||||||
|
group pu by pu.ProviderId into g
|
||||||
|
select new
|
||||||
|
{
|
||||||
|
ProviderUser = g.Select(x => new {x.UserId, x.Id}).FirstOrDefault(),
|
||||||
|
ConfirmedOwnerCount = g.Count(),
|
||||||
|
};
|
||||||
|
|
||||||
|
var query = from owner in owners
|
||||||
|
join pu in dbContext.ProviderUsers
|
||||||
|
on owner.ProviderUser.Id equals pu.Id
|
||||||
|
where owner.ProviderUser.UserId == _userId &&
|
||||||
|
owner.ConfirmedOwnerCount == 1
|
||||||
|
select pu;
|
||||||
|
|
||||||
|
return query;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -20,5 +20,6 @@ namespace Bit.Core.Repositories
|
|||||||
Task<IEnumerable<ProviderUserOrganizationDetails>> GetManyOrganizationDetailsByUserAsync(Guid userId, ProviderUserStatusType? status = null);
|
Task<IEnumerable<ProviderUserOrganizationDetails>> GetManyOrganizationDetailsByUserAsync(Guid userId, ProviderUserStatusType? status = null);
|
||||||
Task DeleteManyAsync(IEnumerable<Guid> userIds);
|
Task DeleteManyAsync(IEnumerable<Guid> userIds);
|
||||||
Task<IEnumerable<ProviderUserPublicKey>> GetManyPublicKeysByProviderUserAsync(Guid providerId, IEnumerable<Guid> Ids);
|
Task<IEnumerable<ProviderUserPublicKey>> GetManyPublicKeysByProviderUserAsync(Guid providerId, IEnumerable<Guid> Ids);
|
||||||
|
Task<int> GetCountByOnlyOwnerAsync(Guid userId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,5 +151,18 @@ namespace Bit.Core.Repositories.SqlServer
|
|||||||
return results.ToList();
|
return results.ToList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task<int> GetCountByOnlyOwnerAsync(Guid userId)
|
||||||
|
{
|
||||||
|
using (var connection = new SqlConnection(ConnectionString))
|
||||||
|
{
|
||||||
|
var results = await connection.ExecuteScalarAsync<int>(
|
||||||
|
"[dbo].[ProviderUser_ReadCountByOnlyOwner]",
|
||||||
|
new { UserId = userId },
|
||||||
|
commandType: CommandType.StoredProcedure);
|
||||||
|
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ namespace Bit.Core.Services
|
|||||||
private readonly ICurrentContext _currentContext;
|
private readonly ICurrentContext _currentContext;
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
private readonly IOrganizationService _organizationService;
|
private readonly IOrganizationService _organizationService;
|
||||||
private readonly ISendRepository _sendRepository;
|
private readonly IProviderUserRepository _providerUserRepository;
|
||||||
|
|
||||||
public UserService(
|
public UserService(
|
||||||
IUserRepository userRepository,
|
IUserRepository userRepository,
|
||||||
@ -81,7 +81,7 @@ namespace Bit.Core.Services
|
|||||||
ICurrentContext currentContext,
|
ICurrentContext currentContext,
|
||||||
GlobalSettings globalSettings,
|
GlobalSettings globalSettings,
|
||||||
IOrganizationService organizationService,
|
IOrganizationService organizationService,
|
||||||
ISendRepository sendRepository)
|
IProviderUserRepository providerUserRepository)
|
||||||
: base(
|
: base(
|
||||||
store,
|
store,
|
||||||
optionsAccessor,
|
optionsAccessor,
|
||||||
@ -115,7 +115,7 @@ namespace Bit.Core.Services
|
|||||||
_currentContext = currentContext;
|
_currentContext = currentContext;
|
||||||
_globalSettings = globalSettings;
|
_globalSettings = globalSettings;
|
||||||
_organizationService = organizationService;
|
_organizationService = organizationService;
|
||||||
_sendRepository = sendRepository;
|
_providerUserRepository = providerUserRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Guid? GetProperUserId(ClaimsPrincipal principal)
|
public Guid? GetProperUserId(ClaimsPrincipal principal)
|
||||||
@ -216,11 +216,20 @@ namespace Bit.Core.Services
|
|||||||
{
|
{
|
||||||
return IdentityResult.Failed(new IdentityError
|
return IdentityResult.Failed(new IdentityError
|
||||||
{
|
{
|
||||||
Description = "You must leave or delete any organizations that you are the only owner of first."
|
Description = "Cannot delete this user because it is the sole owner of at least one organization. Please delete these organizations or upgrade another user.",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var onlyOwnerProviderCount = await _providerUserRepository.GetCountByOnlyOwnerAsync(user.Id);
|
||||||
|
if (onlyOwnerProviderCount > 0)
|
||||||
|
{
|
||||||
|
return IdentityResult.Failed(new IdentityError
|
||||||
|
{
|
||||||
|
Description = "Cannot delete this user because it is the sole owner of at least one provider. Please delete these providers or upgrade another user.",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(user.GatewaySubscriptionId))
|
if (!string.IsNullOrWhiteSpace(user.GatewaySubscriptionId))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
@ -74,6 +74,7 @@
|
|||||||
<Build Include="dbo\Stored Procedures\Event_ReadPageByProviderIdActingUserId.sql" />
|
<Build Include="dbo\Stored Procedures\Event_ReadPageByProviderIdActingUserId.sql" />
|
||||||
<Build Include="dbo\Stored Procedures\ProviderOrganization_ReadByOrganizationId.sql" />
|
<Build Include="dbo\Stored Procedures\ProviderOrganization_ReadByOrganizationId.sql" />
|
||||||
<Build Include="dbo\Stored Procedures\ProviderUserProviderOrganizationDetails_ReadByUserIdStatus.sql" />
|
<Build Include="dbo\Stored Procedures\ProviderUserProviderOrganizationDetails_ReadByUserIdStatus.sql" />
|
||||||
|
<Build Include="dbo\Stored Procedures\ProviderUser_ReadCountByOnlyOwner.sql" />
|
||||||
<Build Include="dbo\Stored Procedures\SsoConfig_Create.sql" />
|
<Build Include="dbo\Stored Procedures\SsoConfig_Create.sql" />
|
||||||
<Build Include="dbo\Stored Procedures\SsoConfig_ReadByIdentifier.sql" />
|
<Build Include="dbo\Stored Procedures\SsoConfig_ReadByIdentifier.sql" />
|
||||||
<Build Include="dbo\Stored Procedures\SsoConfig_ReadByOrganizationId.sql" />
|
<Build Include="dbo\Stored Procedures\SsoConfig_ReadByOrganizationId.sql" />
|
||||||
|
@ -0,0 +1,25 @@
|
|||||||
|
CREATE PROCEDURE [dbo].[ProviderUser_ReadCountByOnlyOwner]
|
||||||
|
@UserId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
;WITH [OwnerCountCTE] AS
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
PU.[UserId],
|
||||||
|
COUNT(1) OVER (PARTITION BY PU.[ProviderId]) [ConfirmedOwnerCount]
|
||||||
|
FROM
|
||||||
|
[dbo].[ProviderUser] PU
|
||||||
|
WHERE
|
||||||
|
PU.[Type] = 0 -- 0 = ProviderAdmin
|
||||||
|
AND PU.[Status] = 2 -- 2 = Confirmed
|
||||||
|
)
|
||||||
|
SELECT
|
||||||
|
COUNT(1)
|
||||||
|
FROM
|
||||||
|
[OwnerCountCTE] OC
|
||||||
|
WHERE
|
||||||
|
OC.[UserId] = @UserId
|
||||||
|
AND OC.[ConfirmedOwnerCount] = 1
|
||||||
|
END
|
@ -65,6 +65,13 @@ BEGIN
|
|||||||
WHERE
|
WHERE
|
||||||
[UserId] = @Id
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete provider users
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[ProviderUser]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
-- Delete U2F logins
|
-- Delete U2F logins
|
||||||
DELETE
|
DELETE
|
||||||
FROM
|
FROM
|
||||||
|
@ -45,7 +45,7 @@ namespace Bit.Core.Test.Services
|
|||||||
private readonly CurrentContext _currentContext;
|
private readonly CurrentContext _currentContext;
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
private readonly IOrganizationService _organizationService;
|
private readonly IOrganizationService _organizationService;
|
||||||
private readonly ISendRepository _sendRepository;
|
private readonly IProviderUserRepository _providerUserRepository;
|
||||||
|
|
||||||
public UserServiceTests()
|
public UserServiceTests()
|
||||||
{
|
{
|
||||||
@ -75,7 +75,7 @@ namespace Bit.Core.Test.Services
|
|||||||
_currentContext = new CurrentContext(null);
|
_currentContext = new CurrentContext(null);
|
||||||
_globalSettings = new GlobalSettings();
|
_globalSettings = new GlobalSettings();
|
||||||
_organizationService = Substitute.For<IOrganizationService>();
|
_organizationService = Substitute.For<IOrganizationService>();
|
||||||
_sendRepository = Substitute.For<ISendRepository>();
|
_providerUserRepository = Substitute.For<IProviderUserRepository>();
|
||||||
|
|
||||||
_sut = new UserService(
|
_sut = new UserService(
|
||||||
_userRepository,
|
_userRepository,
|
||||||
@ -104,7 +104,7 @@ namespace Bit.Core.Test.Services
|
|||||||
_currentContext,
|
_currentContext,
|
||||||
_globalSettings,
|
_globalSettings,
|
||||||
_organizationService,
|
_organizationService,
|
||||||
_sendRepository
|
_providerUserRepository
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
153
util/Migrator/DbScripts/2021-09-10_00_DeleteProviderUser.sql
Normal file
153
util/Migrator/DbScripts/2021-09-10_00_DeleteProviderUser.sql
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
IF OBJECT_ID('[dbo].[ProviderUser_ReadCountByOnlyOwner]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[ProviderUser_ReadCountByOnlyOwner]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[ProviderUser_ReadCountByOnlyOwner]
|
||||||
|
@UserId UNIQUEIDENTIFIER
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
|
||||||
|
;WITH [OwnerCountCTE] AS
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
PU.[UserId],
|
||||||
|
COUNT(1) OVER (PARTITION BY PU.[ProviderId]) [ConfirmedOwnerCount]
|
||||||
|
FROM
|
||||||
|
[dbo].[ProviderUser] PU
|
||||||
|
WHERE
|
||||||
|
PU.[Type] = 0 -- 0 = ProviderAdmin
|
||||||
|
AND PU.[Status] = 2 -- 2 = Confirmed
|
||||||
|
)
|
||||||
|
SELECT
|
||||||
|
COUNT(1)
|
||||||
|
FROM
|
||||||
|
[OwnerCountCTE] OC
|
||||||
|
WHERE
|
||||||
|
OC.[UserId] = @UserId
|
||||||
|
AND OC.[ConfirmedOwnerCount] = 1
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
IF OBJECT_ID('[dbo].[User_DeleteById]') IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
DROP PROCEDURE [dbo].[User_DeleteById]
|
||||||
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
CREATE PROCEDURE [dbo].[User_DeleteById]
|
||||||
|
@Id UNIQUEIDENTIFIER
|
||||||
|
WITH RECOMPILE
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
DECLARE @BatchSize INT = 100
|
||||||
|
|
||||||
|
-- Delete ciphers
|
||||||
|
WHILE @BatchSize > 0
|
||||||
|
BEGIN
|
||||||
|
BEGIN TRANSACTION User_DeleteById_Ciphers
|
||||||
|
|
||||||
|
DELETE TOP(@BatchSize)
|
||||||
|
FROM
|
||||||
|
[dbo].[Cipher]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
SET @BatchSize = @@ROWCOUNT
|
||||||
|
|
||||||
|
COMMIT TRANSACTION User_DeleteById_Ciphers
|
||||||
|
END
|
||||||
|
|
||||||
|
BEGIN TRANSACTION User_DeleteById
|
||||||
|
|
||||||
|
-- Delete folders
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[Folder]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete devices
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[Device]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete collection users
|
||||||
|
DELETE
|
||||||
|
CU
|
||||||
|
FROM
|
||||||
|
[dbo].[CollectionUser] CU
|
||||||
|
INNER JOIN
|
||||||
|
[dbo].[OrganizationUser] OU ON OU.[Id] = CU.[OrganizationUserId]
|
||||||
|
WHERE
|
||||||
|
OU.[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete group users
|
||||||
|
DELETE
|
||||||
|
GU
|
||||||
|
FROM
|
||||||
|
[dbo].[GroupUser] GU
|
||||||
|
INNER JOIN
|
||||||
|
[dbo].[OrganizationUser] OU ON OU.[Id] = GU.[OrganizationUserId]
|
||||||
|
WHERE
|
||||||
|
OU.[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete organization users
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationUser]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete provider users
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[ProviderUser]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete U2F logins
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[U2f]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete SSO Users
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[SsoUser]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Delete Emergency Accesses
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[EmergencyAccess]
|
||||||
|
WHERE
|
||||||
|
[GrantorId] = @Id
|
||||||
|
OR
|
||||||
|
[GranteeId] = @Id
|
||||||
|
|
||||||
|
-- Delete Sends
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[Send]
|
||||||
|
WHERE
|
||||||
|
[UserId] = @Id
|
||||||
|
|
||||||
|
-- Finally, delete the user
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
[dbo].[User]
|
||||||
|
WHERE
|
||||||
|
[Id] = @Id
|
||||||
|
|
||||||
|
COMMIT TRANSACTION User_DeleteById
|
||||||
|
END
|
||||||
|
go
|
Loading…
Reference in New Issue
Block a user