add rooms

This commit is contained in:
Devin Zuczek
2026-06-14 18:59:35 -04:00
parent 767dd47bab
commit 768ca2a0a3
64 changed files with 87267 additions and 787 deletions
+14
View File
@@ -0,0 +1,14 @@
import type { HonoApp } from '@repo/hono-helpers'
import type { SharedHonoEnv, SharedHonoVariables } from '@repo/hono-helpers/src/types'
export type Env = SharedHonoEnv & {
// add additional Bindings here
}
/** Variables can be extended */
export type Variables = SharedHonoVariables
export interface App extends HonoApp {
Bindings: Env
Variables: Variables
}
@@ -0,0 +1,31 @@
import { Hono } from 'hono'
import { useWorkersLogger } from 'workers-tagged-logger'
import { withNotFound, withOnError } from '@repo/hono-helpers'
import type { App } from './context'
const app = new Hono<App>()
.use(
'*',
// middleware
(c, next) =>
useWorkersLogger(c.env.NAME, {
environment: c.env.ENVIRONMENT,
release: c.env.SENTRY_RELEASE,
})(c, next)
)
.onError(withOnError())
.notFound(withNotFound())
.get('/', (c) => c.json({ service: 'datacollection', status: 'ok' }))
// Telemetry sink. The client POSTs analytics events here; we accept and ack
// without persisting (no binding yet). Body shape is unknown/unused.
.post('/data/event', (c) => c.body(null, 200))
// Periodic session heartbeat. Same deal — accept and ack with 200.
.post('/data/heartbeat', (c) => c.body(null, 200))
export default app
@@ -0,0 +1,33 @@
import { SELF } from 'cloudflare:test'
import { describe, expect, it } from 'vitest'
import '../../datacollection.app'
const ORIGIN = 'https://datacollection.rec.djdevin.net'
describe('datacollection endpoints', () => {
it('GET / reports service status', async () => {
const res = await SELF.fetch(`${ORIGIN}/`)
expect(res.status).toBe(200)
expect(await res.json()).toEqual({ service: 'datacollection', status: 'ok' })
})
it('POST /data/event accepts an event and returns 200', async () => {
const res = await SELF.fetch(`${ORIGIN}/data/event`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ name: 'app_start', properties: { foo: 'bar' } }),
})
expect(res.status).toBe(200)
})
it('POST /data/event accepts an empty body', async () => {
const res = await SELF.fetch(`${ORIGIN}/data/event`, { method: 'POST' })
expect(res.status).toBe(200)
})
it('POST /data/heartbeat returns 200', async () => {
const res = await SELF.fetch(`${ORIGIN}/data/heartbeat`, { method: 'POST' })
expect(res.status).toBe(200)
})
})