mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
implement CommandResult
This commit is contained in:
parent
e9222e7fce
commit
89f6d42170
@ -321,7 +321,12 @@ public class OrganizationUsersController : Controller
|
|||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
await _initPendingOrganizationCommand.InitPendingOrganizationAsync(user.Id, orgId, organizationUserId, model.Keys.PublicKey, model.Keys.EncryptedPrivateKey, model.CollectionName);
|
var commandResult = await _initPendingOrganizationCommand.InitPendingOrganizationAsync(user.Id, orgId, organizationUserId, model.Keys.PublicKey, model.Keys.EncryptedPrivateKey, model.CollectionName);
|
||||||
|
if (commandResult.HasErrors)
|
||||||
|
{
|
||||||
|
throw new BadRequestException(string.Join(", ", commandResult.ErrorMessages));
|
||||||
|
}
|
||||||
|
|
||||||
await _acceptOrgUserCommand.AcceptOrgUserByEmailTokenAsync(organizationUserId, user, model.Token, _userService);
|
await _acceptOrgUserCommand.AcceptOrgUserByEmailTokenAsync(organizationUserId, user, model.Token, _userService);
|
||||||
await _confirmOrganizationUserCommand.ConfirmUserAsync(orgId, organizationUserId, model.Key, user.Id);
|
await _confirmOrganizationUserCommand.ConfirmUserAsync(orgId, organizationUserId, model.Key, user.Id);
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
using Bit.Core.Entities;
|
using Bit.Core.Entities;
|
||||||
using Bit.Core.Enums;
|
using Bit.Core.Enums;
|
||||||
using Bit.Core.Exceptions;
|
using Bit.Core.Models.Commands;
|
||||||
using Bit.Core.Models.Data;
|
using Bit.Core.Models.Data;
|
||||||
using Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
|
using Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
|
||||||
using Bit.Core.Repositories;
|
using Bit.Core.Repositories;
|
||||||
@ -26,7 +26,12 @@ public class InitPendingOrganizationCommand : IInitPendingOrganizationCommand
|
|||||||
_organizationRepository = organizationRepository;
|
_organizationRepository = organizationRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task InitPendingOrganizationAsync(Guid userId, Guid organizationId, Guid organizationUserId, string publicKey, string privateKey, string collectionName)
|
public const string OrgEnabled = "Organization is already enabled.";
|
||||||
|
public const string OrgNotPending = "Organization is not on a Pending status.";
|
||||||
|
public const string OrgHasPublicKey = "Organization already has a Public Key.";
|
||||||
|
public const string OrgHasPrivateKey = "Organization already has a Private Key.";
|
||||||
|
|
||||||
|
public async Task<CommandResult> InitPendingOrganizationAsync(Guid userId, Guid organizationId, Guid organizationUserId, string publicKey, string privateKey, string collectionName)
|
||||||
{
|
{
|
||||||
await _organizationService.ValidateSignUpPoliciesAsync(userId);
|
await _organizationService.ValidateSignUpPoliciesAsync(userId);
|
||||||
|
|
||||||
@ -34,22 +39,22 @@ public class InitPendingOrganizationCommand : IInitPendingOrganizationCommand
|
|||||||
|
|
||||||
if (org.Enabled)
|
if (org.Enabled)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Organization is already enabled.");
|
return new CommandResult(OrgEnabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (org.Status != OrganizationStatusType.Pending)
|
if (org.Status != OrganizationStatusType.Pending)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Organization is not on a Pending status.");
|
return new CommandResult(OrgNotPending);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(org.PublicKey))
|
if (!string.IsNullOrEmpty(org.PublicKey))
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Organization already has a Public Key.");
|
return new CommandResult(OrgHasPublicKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(org.PrivateKey))
|
if (!string.IsNullOrEmpty(org.PrivateKey))
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Organization already has a Private Key.");
|
return new CommandResult(OrgHasPrivateKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
org.Enabled = true;
|
org.Enabled = true;
|
||||||
@ -72,5 +77,7 @@ public class InitPendingOrganizationCommand : IInitPendingOrganizationCommand
|
|||||||
};
|
};
|
||||||
await _collectionRepository.CreateAsync(defaultCollection, null, defaultOwnerAccess);
|
await _collectionRepository.CreateAsync(defaultCollection, null, defaultOwnerAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return new CommandResult();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
|
using Bit.Core.Models.Commands;
|
||||||
|
namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
|
||||||
|
|
||||||
public interface IInitPendingOrganizationCommand
|
public interface IInitPendingOrganizationCommand
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Accept an invitation to initialize and join an organization created via the Admin Portal
|
/// Accept an invitation to initialize and join an organization created via the Admin Portal
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Task InitPendingOrganizationAsync(Guid userId, Guid organizationId, Guid organizationUserId, string publicKey, string privateKey, string collectionName);
|
Task<CommandResult> InitPendingOrganizationAsync(Guid userId, Guid organizationId, Guid organizationUserId, string publicKey, string privateKey, string collectionName);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user