budibase/packages/backend-core/src/events/events.ts

41 lines
1.2 KiB
TypeScript
Raw Normal View History

import { Event } from "@budibase/types"
import { processors } from "./processors"
import identification from "./identification"
2022-05-31 22:04:41 +02:00
import * as backfill from "./backfill"
import { publishAsyncEvent } from "./asyncEvents"
2022-04-01 22:29:44 +02:00
export const publishEvent = async (
event: Event,
properties: any,
timestamp?: string | number
) => {
2022-05-23 23:14:44 +02:00
// in future this should use async events via a distributed queue.
2022-05-24 21:01:13 +02:00
const identity = await identification.getCurrentIdentity()
2022-05-31 22:04:41 +02:00
const backfilling = await backfill.isBackfillingEvent(event)
// no backfill - send the event and exit
if (!backfilling) {
2023-04-17 15:03:54 +02:00
// send off async events if required
await publishAsyncEvent({
event,
identity,
properties,
timestamp,
})
// now handle the main sync event processing pipeline
await processors.processEvent(event, identity, properties, timestamp)
2022-05-31 22:04:41 +02:00
return
}
// backfill active - check if the event has been sent already
const alreadySent = await backfill.isAlreadySent(event, properties)
if (alreadySent) {
// do nothing
return
} else {
// send and record the event
await processors.processEvent(event, identity, properties, timestamp)
await backfill.recordEvent(event, properties)
}
2022-04-01 22:29:44 +02:00
}