mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00

* Log events from the import organization flow * Use an interface for the `OrganizationUser` object used to log events * Log import events as being from the public api if they are * Add logging for created groups * Log proper group ids * Fix tests * Also log update events for groups * Remove private API `import` endpoint * Make `eventSystemUser` non-nullable for `ImportAsync` * Fix tests * Delete `ImportOrganizationUsersRequestModel` * Fix tests
61 lines
2.2 KiB
C#
61 lines
2.2 KiB
C#
using System.Net;
|
|
using Bit.Api.AdminConsole.Public.Models.Request;
|
|
using Bit.Api.AdminConsole.Public.Models.Response;
|
|
using Bit.Api.Models.Public.Response;
|
|
using Bit.Core.Context;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Exceptions;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Settings;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Bit.Api.AdminConsole.Public.Controllers;
|
|
|
|
[Route("public/organization")]
|
|
[Authorize("Organization")]
|
|
public class OrganizationController : Controller
|
|
{
|
|
private readonly IOrganizationService _organizationService;
|
|
private readonly ICurrentContext _currentContext;
|
|
private readonly GlobalSettings _globalSettings;
|
|
|
|
public OrganizationController(
|
|
IOrganizationService organizationService,
|
|
ICurrentContext currentContext,
|
|
GlobalSettings globalSettings)
|
|
{
|
|
_organizationService = organizationService;
|
|
_currentContext = currentContext;
|
|
_globalSettings = globalSettings;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Import members and groups.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Import members and groups from an external system.
|
|
/// </remarks>
|
|
/// <param name="model">The request model.</param>
|
|
[HttpPost("import")]
|
|
[ProducesResponseType(typeof(MemberResponseModel), (int)HttpStatusCode.OK)]
|
|
[ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.BadRequest)]
|
|
public async Task<IActionResult> Import([FromBody] OrganizationImportRequestModel model)
|
|
{
|
|
if (!_globalSettings.SelfHosted && !model.LargeImport &&
|
|
(model.Groups.Count() > 2000 || model.Members.Count(u => !u.Deleted) > 2000))
|
|
{
|
|
throw new BadRequestException("You cannot import this much data at once.");
|
|
}
|
|
|
|
await _organizationService.ImportAsync(
|
|
_currentContext.OrganizationId.Value,
|
|
model.Groups.Select(g => g.ToImportedGroup(_currentContext.OrganizationId.Value)),
|
|
model.Members.Where(u => !u.Deleted).Select(u => u.ToImportedOrganizationUser()),
|
|
model.Members.Where(u => u.Deleted).Select(u => u.ExternalId),
|
|
model.OverwriteExisting.GetValueOrDefault(),
|
|
EventSystemUser.PublicApi);
|
|
return new OkResult();
|
|
}
|
|
}
|