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

Added Webhook Integration Controller

This commit is contained in:
Brant DeBow 2025-04-03 11:23:47 -04:00
parent 09cff6e726
commit d99131c899
No known key found for this signature in database
GPG Key ID: 94411BB25947C72B

View File

@ -0,0 +1,51 @@
using Bit.Core.AdminConsole.Entities;
using Bit.Core.Context;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Repositories;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Bit.Api.AdminConsole.Controllers;
[Route("organizations/{organizationId:guid}/integrations/webhook/")]
[Authorize("Application")]
public class WebhookIntegrationController(
ICurrentContext currentContext,
IOrganizationIntegrationRepository integrationRepository) : Controller
{
[HttpGet("create")]
public async Task<IActionResult> CreateAsync(Guid organizationId)
{
if (!await currentContext.OrganizationOwner(organizationId))
{
throw new NotFoundException();
}
var integration = await integrationRepository.CreateAsync(new OrganizationIntegration
{
OrganizationId = organizationId,
Type = IntegrationType.Webhook,
Configuration = null
});
return Ok(new { id = integration.Id });
}
[HttpDelete("{integrationId:guid}")]
[HttpPost("{integrationId:guid}/delete")]
public async Task DeleteAsync(Guid organizationId, Guid integrationId)
{
if (!await currentContext.OrganizationOwner(organizationId))
{
throw new NotFoundException();
}
var integration = await integrationRepository.GetByIdAsync(integrationId);
if (integration is null)
{
throw new NotFoundException();
}
await integrationRepository.DeleteAsync(integration);
}
}