mirror of
https://github.com/bitwarden/server.git
synced 2025-06-20 02:48:03 -05:00

* [PM-17562] Update documentation for event integrations * Fix SonarQube suggestion, bring ASB event listener in line with integration listener * Apply suggestions from code review Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * Updates to README - PR fixes, additional context, tense alignment * Fix the formatting for inlined code snippets * Add links to different sections; remove inline code formatting in favor of single bacticks for JSON --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
25 lines
703 B
C#
25 lines
703 B
C#
using Bit.Core.AdminConsole.Models.Data.EventIntegrations;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IIntegrationHandler
|
|
{
|
|
Task<IntegrationHandlerResult> HandleAsync(string json);
|
|
}
|
|
|
|
public interface IIntegrationHandler<T> : IIntegrationHandler
|
|
{
|
|
Task<IntegrationHandlerResult> HandleAsync(IntegrationMessage<T> message);
|
|
}
|
|
|
|
public abstract class IntegrationHandlerBase<T> : IIntegrationHandler<T>
|
|
{
|
|
public async Task<IntegrationHandlerResult> HandleAsync(string json)
|
|
{
|
|
var message = IntegrationMessage<T>.FromJson(json);
|
|
return await HandleAsync(message);
|
|
}
|
|
|
|
public abstract Task<IntegrationHandlerResult> HandleAsync(IntegrationMessage<T> message);
|
|
}
|