1
0
Fork 0
mirror of synced 2024-07-15 11:15:59 +12:00

Fix served events

This commit is contained in:
Rory Powell 2022-08-09 13:31:12 +01:00
parent 8f96c85fd5
commit f7210e96e4
6 changed files with 88 additions and 17 deletions

View file

@ -0,0 +1,27 @@
import { EventEmitter } from "events"
import * as context from "../../context"
import { Identity, Event } from "@budibase/types"
export interface EmittedEvent {
tenantId: string
identity: Identity
appId: string | undefined
properties: any
}
class BBEventEmitter extends EventEmitter {
emitEvent(event: Event, properties: any, identity: Identity) {
const tenantId = context.getTenantId()
const appId = context.getAppId()
const emittedEvent: EmittedEvent = {
tenantId,
identity,
appId,
properties,
}
this.emit(event, emittedEvent)
}
}
export const emitter = new BBEventEmitter()

View file

@ -0,0 +1 @@
export * from "./BBEventEmitter"

View file

@ -2,6 +2,41 @@ import { Event } from "@budibase/types"
import { processors } from "./processors" import { processors } from "./processors"
import * as identification from "./identification" import * as identification from "./identification"
import * as backfill from "./backfill" import * as backfill from "./backfill"
import { emitter, EmittedEvent } from "./async"
import * as context from "../context"
import * as logging from "../logging"
const USE_ASYNC: any[] = [
Event.SERVED_BUILDER,
Event.SERVED_APP,
Event.SERVED_APP_PREVIEW,
]
for (let event of USE_ASYNC) {
emitter.on(event, async (props: EmittedEvent) => {
try {
await context.doInTenant(props.tenantId, async () => {
if (props.appId) {
await context.doInAppContext(props.appId, async () => {
await processors.processEvent(
event as Event,
props.identity,
props.properties
)
})
} else {
await processors.processEvent(
event as Event,
props.identity,
props.properties
)
}
})
} catch (e) {
logging.logAlert(`Unable to process async event ${event}`, e)
}
})
}
export const publishEvent = async ( export const publishEvent = async (
event: Event, event: Event,
@ -11,6 +46,11 @@ export const publishEvent = async (
// in future this should use async events via a distributed queue. // in future this should use async events via a distributed queue.
const identity = await identification.getCurrentIdentity() const identity = await identification.getCurrentIdentity()
if (USE_ASYNC.includes(event)) {
emitter.emitEvent(event, properties, identity)
return
}
const backfilling = await backfill.isBackfillingEvent(event) const backfilling = await backfill.isBackfillingEvent(event)
// no backfill - send the event and exit // no backfill - send the event and exit
if (!backfilling) { if (!backfilling) {

View file

@ -32,7 +32,7 @@ export default class AnalyticsProcessor implements EventProcessor {
return return
} }
if (this.posthog) { if (this.posthog) {
this.posthog.processEvent(event, identity, properties, timestamp) await this.posthog.processEvent(event, identity, properties, timestamp)
} }
} }
@ -45,14 +45,14 @@ export default class AnalyticsProcessor implements EventProcessor {
return return
} }
if (this.posthog) { if (this.posthog) {
this.posthog.identify(identity, timestamp) await this.posthog.identify(identity, timestamp)
} }
} }
async identifyGroup(group: Group, timestamp?: string | number) { async identifyGroup(group: Group, timestamp?: string | number) {
// Group indentifications (tenant and installation) always on // Group indentifications (tenant and installation) always on
if (this.posthog) { if (this.posthog) {
this.posthog.identifyGroup(group, timestamp) await this.posthog.identifyGroup(group, timestamp)
} }
} }

View file

@ -45,7 +45,7 @@ export const limited = async (event: Event): Promise<boolean> => {
return false return false
} }
const cachedEvent = (await readEvent(event)) as EventProperties const cachedEvent = await readEvent(event)
if (cachedEvent) { if (cachedEvent) {
const timestamp = new Date(cachedEvent.timestamp) const timestamp = new Date(cachedEvent.timestamp)
const limit = RATE_LIMITS[event] const limit = RATE_LIMITS[event]
@ -76,14 +76,17 @@ export const limited = async (event: Event): Promise<boolean> => {
const eventKey = (event: RateLimitedEvent) => { const eventKey = (event: RateLimitedEvent) => {
let key = `${CacheKeys.EVENTS_RATE_LIMIT}:${event}` let key = `${CacheKeys.EVENTS_RATE_LIMIT}:${event}`
if (isPerApp(event)) { if (isPerApp(event)) {
key = key + context.getAppId() key = key + ":" + context.getAppId()
} }
return key return key
} }
const readEvent = async (event: RateLimitedEvent) => { const readEvent = async (
event: RateLimitedEvent
): Promise<EventProperties | undefined> => {
const key = eventKey(event) const key = eventKey(event)
return cache.get(key) const result = await cache.get(key)
return result as EventProperties
} }
const recordEvent = async ( const recordEvent = async (

View file

@ -18,14 +18,14 @@ const { DocumentTypes, isDevAppID } = require("../../../db/utils")
const { getAppDB, getAppId } = require("@budibase/backend-core/context") const { getAppDB, getAppId } = require("@budibase/backend-core/context")
const { setCookie, clearCookie } = require("@budibase/backend-core/utils") const { setCookie, clearCookie } = require("@budibase/backend-core/utils")
const AWS = require("aws-sdk") const AWS = require("aws-sdk")
const { events } = require("@budibase/backend-core") import { events } from "@budibase/backend-core"
const fs = require("fs") const fs = require("fs")
const { const {
downloadTarballDirect, downloadTarballDirect,
} = require("../../../utilities/fileSystem/utilities") } = require("../../../utilities/fileSystem/utilities")
async function prepareUpload({ s3Key, bucket, metadata, file }) { async function prepareUpload({ s3Key, bucket, metadata, file }: any) {
const response = await upload({ const response = await upload({
bucket, bucket,
metadata, metadata,
@ -44,7 +44,7 @@ async function prepareUpload({ s3Key, bucket, metadata, file }) {
} }
} }
exports.toggleBetaUiFeature = async function (ctx) { export const toggleBetaUiFeature = async function (ctx: any) {
const cookieName = `beta:${ctx.params.feature}` const cookieName = `beta:${ctx.params.feature}`
if (ctx.cookies.get(cookieName)) { if (ctx.cookies.get(cookieName)) {
@ -72,21 +72,21 @@ exports.toggleBetaUiFeature = async function (ctx) {
} }
} }
exports.serveBuilder = async function (ctx) { export const serveBuilder = async function (ctx: any) {
const builderPath = resolve(TOP_LEVEL_PATH, "builder") const builderPath = resolve(TOP_LEVEL_PATH, "builder")
await send(ctx, ctx.file, { root: builderPath }) await send(ctx, ctx.file, { root: builderPath })
if (!ctx.file.includes("assets/")) { if (ctx.file === "index.html") {
await events.serve.servedBuilder() await events.serve.servedBuilder()
} }
} }
exports.uploadFile = async function (ctx) { export const uploadFile = async function (ctx: any) {
let files = let files =
ctx.request.files.file.length > 1 ctx.request.files.file.length > 1
? Array.from(ctx.request.files.file) ? Array.from(ctx.request.files.file)
: [ctx.request.files.file] : [ctx.request.files.file]
const uploads = files.map(async file => { const uploads = files.map(async (file: any) => {
const fileExtension = [...file.name.split(".")].pop() const fileExtension = [...file.name.split(".")].pop()
// filenames converted to UUIDs so they are unique // filenames converted to UUIDs so they are unique
const processedFileName = `${uuid.v4()}.${fileExtension}` const processedFileName = `${uuid.v4()}.${fileExtension}`
@ -101,7 +101,7 @@ exports.uploadFile = async function (ctx) {
ctx.body = await Promise.all(uploads) ctx.body = await Promise.all(uploads)
} }
exports.serveApp = async function (ctx) { export const serveApp = async function (ctx: any) {
const db = getAppDB({ skip_setup: true }) const db = getAppDB({ skip_setup: true })
const appInfo = await db.get(DocumentTypes.APP_METADATA) const appInfo = await db.get(DocumentTypes.APP_METADATA)
let appId = getAppId() let appId = getAppId()
@ -134,13 +134,13 @@ exports.serveApp = async function (ctx) {
} }
} }
exports.serveClientLibrary = async function (ctx) { export const serveClientLibrary = async function (ctx: any) {
return send(ctx, "budibase-client.js", { return send(ctx, "budibase-client.js", {
root: join(NODE_MODULES_PATH, "@budibase", "client", "dist"), root: join(NODE_MODULES_PATH, "@budibase", "client", "dist"),
}) })
} }
exports.getSignedUploadURL = async function (ctx) { export const getSignedUploadURL = async function (ctx: any) {
const database = getAppDB() const database = getAppDB()
// Ensure datasource is valid // Ensure datasource is valid