2023-10-25 07:35:22 -07:00
|
|
|
import { MessageEventBusDestinationTypeNames } from 'n8n-workflow';
|
2024-09-12 09:07:18 -07:00
|
|
|
import { Container } from 'typedi';
|
|
|
|
|
2024-08-27 07:44:32 -07:00
|
|
|
import type { EventDestinations } from '@/databases/entities/event-destinations';
|
2024-10-01 03:16:09 -07:00
|
|
|
import { Logger } from '@/logging/logger.service';
|
2024-09-12 09:07:18 -07:00
|
|
|
|
2024-08-26 02:10:06 -07:00
|
|
|
import { MessageEventBusDestinationSentry } from './message-event-bus-destination-sentry.ee';
|
|
|
|
import { MessageEventBusDestinationSyslog } from './message-event-bus-destination-syslog.ee';
|
|
|
|
import { MessageEventBusDestinationWebhook } from './message-event-bus-destination-webhook.ee';
|
2024-09-12 09:07:18 -07:00
|
|
|
import type { MessageEventBusDestination } from './message-event-bus-destination.ee';
|
|
|
|
import type { MessageEventBus } from '../message-event-bus/message-event-bus';
|
2023-08-04 11:51:07 -07:00
|
|
|
|
|
|
|
export function messageEventBusDestinationFromDb(
|
|
|
|
eventBusInstance: MessageEventBus,
|
|
|
|
dbData: EventDestinations,
|
|
|
|
): MessageEventBusDestination | null {
|
|
|
|
const destinationData = dbData.destination;
|
|
|
|
if ('__type' in destinationData) {
|
|
|
|
switch (destinationData.__type) {
|
|
|
|
case MessageEventBusDestinationTypeNames.sentry:
|
|
|
|
return MessageEventBusDestinationSentry.deserialize(eventBusInstance, destinationData);
|
|
|
|
case MessageEventBusDestinationTypeNames.syslog:
|
|
|
|
return MessageEventBusDestinationSyslog.deserialize(eventBusInstance, destinationData);
|
|
|
|
case MessageEventBusDestinationTypeNames.webhook:
|
|
|
|
return MessageEventBusDestinationWebhook.deserialize(eventBusInstance, destinationData);
|
|
|
|
default:
|
2023-10-25 07:35:22 -07:00
|
|
|
Container.get(Logger).debug('MessageEventBusDestination __type unknown');
|
2023-08-04 11:51:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|