๐Ÿš€ DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more โ†’
Socket
Book a DemoInstallSign in
Socket

@castore/event-bridge-message-bus-adapter

Package Overview
Dependencies
Maintainers
4
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@castore/event-bridge-message-bus-adapter

DRY Castore MessageBus definition using AWS EventBridge

latest
Source
npmnpm
Version
1.25.3
Version published
Maintainers
4
Created
Source

EventBridge Message Bus Adapter

DRY Castore MessageBus definition using AWS EventBridge.

๐Ÿ“ฅ Installation

# npm
npm install @castore/event-bridge-message-bus-adapter

# yarn
yarn add @castore/event-bridge-message-bus-adapter

This package has @castore/core and @aws-sdk/client-eventbridge (above v3) as peer dependencies, so you will have to install them as well:

# npm
npm install @castore/core @aws-sdk/client-eventbridge

# yarn
yarn add @castore/core @aws-sdk/client-eventbridge

๐Ÿ‘ฉโ€๐Ÿ’ป Usage

import { EventBridgeClient } from '@aws-sdk/client-eventbridge';

import { EventBridgeMessageBusAdapter } from '@castore/event-bridge-message-bus-adapter';

const eventBridgeClient = new EventBridgeClient({});

const messageBusAdapter = new EventBridgeMessageBusAdapter({
  eventBusName: 'my-event-bus-name',
  eventBridgeClient,
});

// ๐Ÿ‘‡ Alternatively, provide a getter
const messageBusAdapter = new EventBridgeMessageBusAdapter({
  eventBusName: () => process.env.MY_EVENT_BUS_NAME,
  eventBridgeClient,
});

const appMessageBus = new NotificationMessageBus({
  ...
  messageBusAdapter
})

This will directly plug your MessageBus to EventBridge ๐Ÿ™Œ

๐Ÿค” How it works

When publishing a message, its eventStoreId is used as the message source and its event type is used as detail-type (except for AggregateExistsMessageBus for which a constant is used). The whole message is passed to the detail property.

// ๐Ÿ‘‡ Aggregate exists
{
  "source": "POKEMONS", // <= eventStoreId
  "detail-type": "__AGGREGATE_EXISTS__", // <= constant
  "detail": {
    "eventStoreId": "POKEMONS",
    "aggregateId": "123",
  },
  ... // <= Other technical EventBridge properties
}
// ๐Ÿ‘‡ Notification
{
  "source": "POKEMONS",
  "detail-type": "POKEMON_APPEARED", // <= event type
  "detail": {
    "eventStoreId": "POKEMONS",
    "event": {
      "aggregateId": "123",
      "version": 1,
      "type": "POKEMON_APPEARED",
      "timestamp": ...
      ...
    },
  },
  ...
}
// ๐Ÿ‘‡ State-carrying
{
  "source": "POKEMONS",
  "detail-type": "POKEMON_APPEARED",
  "detail": {
    "eventStoreId": "POKEMONS",
    "event": {
      "aggregateId": "123",
      ...
    },
    "aggregate": { ... } // <= aggregate
  },
  ...
}

If the replay option is set to true when publishing a notification or state-carrying message, the "detail-type" will be set to "__REPLAYED__". This makes sure that any subscription to replayed events is opt-in:

// ๐Ÿ‘‡ Replayed notification message
{
  "source": "POKEMONS",
  "detail-type": "__REPLAYED__",
  "detail": {
    "eventStoreId": "POKEMONS",
    "event": {
      "aggregateId": "123",
      "type": "POKEMON_APPEARED", // <= event type still available
      ...
    },
  },
  ...
}

On the listeners side, you can use the EventBridgeMessageBusMessage TS type to type your argument:

import type { EventBridgeMessageBusMessage } from '@castore/event-bridge-message-bus-adapter';

const listener = async (
  message: EventBridgeMessageBusMessage<typeof appMessageBus>,
) => {
  // ๐Ÿ™Œ Correctly typed!
  const { eventStoreId, event } = message.detail;
};

You can provide event store ids and event types if you listener only listens to specific event types:

import type { EventBridgeMessageBusMessage } from '@castore/event-bridge-message-bus-adapter';

const listener = async (
  message: EventBridgeMessageBusMessage<
    typeof appMessageBus,
    'POKEMONS', // <= Only listen to the 'POKEMONS' event store events (optional)
    'POKEMON_APPEARED' // <= Only listen to 'POKEMON_APPEARED' events (optional)
  >,
) => {
  // ๐Ÿ™Œ Correctly typed!
  const { eventStoreId, event } = message.detail;
};

๐Ÿ”‘ IAM

The publishMessage method requires the events:PutEvents IAM permission on the provided event bus.

Keywords

event

FAQs

Package last updated on 29 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts