1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

implement CommandResult

This commit is contained in:
Brandon 2025-03-31 15:17:18 -04:00
parent e9222e7fce
commit 89f6d42170
No known key found for this signature in database
GPG Key ID: A0E0EF0B207BA40D
3 changed files with 22 additions and 9 deletions

View File

@ -321,7 +321,12 @@ public class OrganizationUsersController : Controller
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 _confirmOrganizationUserCommand.ConfirmUserAsync(orgId, organizationUserId, model.Key, user.Id);
}

View File

@ -1,6 +1,6 @@
using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Commands;
using Bit.Core.Models.Data;
using Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
using Bit.Core.Repositories;
@ -26,7 +26,12 @@ public class InitPendingOrganizationCommand : IInitPendingOrganizationCommand
_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);
@ -34,22 +39,22 @@ public class InitPendingOrganizationCommand : IInitPendingOrganizationCommand
if (org.Enabled)
{
throw new BadRequestException("Organization is already enabled.");
return new CommandResult(OrgEnabled);
}
if (org.Status != OrganizationStatusType.Pending)
{
throw new BadRequestException("Organization is not on a Pending status.");
return new CommandResult(OrgNotPending);
}
if (!string.IsNullOrEmpty(org.PublicKey))
{
throw new BadRequestException("Organization already has a Public Key.");
return new CommandResult(OrgHasPublicKey);
}
if (!string.IsNullOrEmpty(org.PrivateKey))
{
throw new BadRequestException("Organization already has a Private Key.");
return new CommandResult(OrgHasPrivateKey);
}
org.Enabled = true;
@ -72,5 +77,7 @@ public class InitPendingOrganizationCommand : IInitPendingOrganizationCommand
};
await _collectionRepository.CreateAsync(defaultCollection, null, defaultOwnerAccess);
}
return new CommandResult();
}
}

View File

@ -1,9 +1,10 @@
namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
using Bit.Core.Models.Commands;
namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
public interface IInitPendingOrganizationCommand
{
/// <summary>
/// Accept an invitation to initialize and join an organization created via the Admin Portal
/// </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);
}