32 lines
988 B
TypeScript
32 lines
988 B
TypeScript
import { Event } from "@budibase/types"
|
|
import { processors } from "./processors"
|
|
import * as identification from "./identification"
|
|
import * as backfill from "./backfill"
|
|
|
|
export const publishEvent = async (
|
|
event: Event,
|
|
properties: any,
|
|
timestamp?: string | number
|
|
) => {
|
|
// in future this should use async events via a distributed queue.
|
|
const identity = await identification.getCurrentIdentity()
|
|
|
|
const backfilling = await backfill.isBackfillingEvent(event)
|
|
// no backfill - send the event and exit
|
|
if (!backfilling) {
|
|
await processors.processEvent(event, identity, properties, timestamp)
|
|
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)
|
|
}
|
|
}
|