Store events that are to be broadcasted in the database, and fetch events to serve in the /api/event stream to the client from the database. This ensures that events are not lost if the operation to open the stream takes longer than usual, or the client was not connected at the time the event was broadcast. To ensure no events are lost in the transition from server generating the page to the client hydrating and establishing a connection with the event stream, the /api/last-event-id endpoint is first queried on the server before any other entities is fetched from the database. The client then passes this id when establishing the event stream, and receives all events greater than that id.
203 lines
5.2 KiB
TypeScript
203 lines
5.2 KiB
TypeScript
/*
|
|
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import { z } from "zod/v4-mini";
|
|
import { idSchema, type Id } from "~/shared/types/common";
|
|
|
|
export const apiEntitySchema = z.object({
|
|
id: idSchema,
|
|
updatedAt: z.string(),
|
|
deleted: z.optional(z.literal(false)),
|
|
});
|
|
export type ApiEntity = z.infer<typeof apiEntitySchema>;
|
|
|
|
export function defineApiEntity<T extends {}>(fields: T) {
|
|
return z.extend(apiEntitySchema, fields);
|
|
}
|
|
|
|
export function tombstonable<T extends z.ZodMiniObject>(entitySchema: T) {
|
|
return z.discriminatedUnion("deleted", [entitySchema, apiTombstoneSchema]);
|
|
}
|
|
|
|
export const apiTombstoneSchema = z.object({
|
|
id: idSchema,
|
|
updatedAt: z.string(),
|
|
deleted: z.literal(true),
|
|
});
|
|
export type ApiTombstone = z.infer<typeof apiTombstoneSchema>;
|
|
|
|
export const apiUserTypeSchema = z.union([
|
|
z.literal("anonymous"),
|
|
z.literal("regular"),
|
|
z.literal("crew"),
|
|
z.literal("admin"),
|
|
])
|
|
export type ApiUserType = z.infer<typeof apiUserTypeSchema>;
|
|
|
|
export type ApiAccount = ApiUser & ApiUserDetails
|
|
|
|
export const apiAccountPatchSchema = z.object({
|
|
name: z.optional(z.string()),
|
|
interestedEventIds: z.optional(z.array(z.number())),
|
|
interestedEventSlotIds: z.optional(z.array(z.number())),
|
|
timezone: z.optional(z.string()),
|
|
locale: z.optional(z.string()),
|
|
});
|
|
export type ApiAccountPatch = z.infer<typeof apiAccountPatchSchema>;
|
|
|
|
export const apiSubscriptionSchema = z.object({
|
|
type: z.literal("push"),
|
|
sessionId: z.number(),
|
|
push: z.object({
|
|
endpoint: z.optional(z.string()),
|
|
expirationTime: z.nullish(z.number()),
|
|
keys: z.record(z.string(), z.string()),
|
|
}),
|
|
});
|
|
export type ApiSubscription = z.infer<typeof apiSubscriptionSchema>;
|
|
|
|
export type ApiAuthenticationProvider =
|
|
| "demo"
|
|
| "telegram"
|
|
;
|
|
|
|
export interface ApiSession {
|
|
id: Id,
|
|
account?: ApiAccount,
|
|
authenticationProvider?: ApiAuthenticationProvider,
|
|
authenticationName?: string,
|
|
push: boolean,
|
|
}
|
|
|
|
export const apiScheduleLocationSchema = defineApiEntity({
|
|
name: z.string(),
|
|
description: z.optional(z.string()),
|
|
});
|
|
export type ApiScheduleLocation = z.infer<typeof apiScheduleLocationSchema>;
|
|
|
|
export const apiScheduleEventSlotSchema = z.object({
|
|
id: idSchema,
|
|
start: z.string(),
|
|
end: z.string(),
|
|
locationIds: z.array(idSchema),
|
|
cancelled: z.optional(z.boolean()),
|
|
assigned: z.optional(z.array(z.number())),
|
|
interested: z.optional(z.number()),
|
|
});
|
|
export type ApiScheduleEventSlot = z.infer<typeof apiScheduleEventSlotSchema>;
|
|
|
|
export const apiScheduleEventSchema = defineApiEntity({
|
|
name: z.string(),
|
|
timetableName: z.optional(z.string()),
|
|
crew: z.optional(z.boolean()),
|
|
host: z.optional(z.string()),
|
|
cancelled: z.optional(z.boolean()),
|
|
notice: z.optional(z.string()),
|
|
description: z.optional(z.string()),
|
|
interested: z.optional(z.number()),
|
|
slots: z.array(apiScheduleEventSlotSchema),
|
|
});
|
|
export type ApiScheduleEvent = z.infer<typeof apiScheduleEventSchema>;
|
|
|
|
export const apiScheduleRoleSchema = defineApiEntity({
|
|
name: z.string(),
|
|
description: z.optional(z.string()),
|
|
});
|
|
export type ApiScheduleRole = z.infer<typeof apiScheduleRoleSchema>;
|
|
|
|
export const apiScheduleShiftSlotSchema = z.object({
|
|
id: idSchema,
|
|
start: z.string(),
|
|
end: z.string(),
|
|
assigned: z.optional(z.array(z.number())),
|
|
});
|
|
export type ApiScheduleShiftSlot = z.infer<typeof apiScheduleShiftSlotSchema>;
|
|
|
|
export const apiScheduleShiftSchema = defineApiEntity({
|
|
roleId: z.optional(idSchema),
|
|
name: z.string(),
|
|
description: z.optional(z.string()),
|
|
slots: z.array(apiScheduleShiftSlotSchema),
|
|
});
|
|
export type ApiScheduleShift = z.infer<typeof apiScheduleShiftSchema>;
|
|
|
|
export const apiScheduleSchema = defineApiEntity({
|
|
id: z.literal(111),
|
|
locations: z.optional(z.array(tombstonable(apiScheduleLocationSchema))),
|
|
events: z.optional(z.array(tombstonable(apiScheduleEventSchema))),
|
|
roles: z.optional(z.array(tombstonable(apiScheduleRoleSchema))),
|
|
shifts: z.optional(z.array(tombstonable(apiScheduleShiftSchema))),
|
|
});
|
|
export type ApiSchedule = z.infer<typeof apiScheduleSchema>;
|
|
|
|
export const apiUserSchema = defineApiEntity({
|
|
type: apiUserTypeSchema,
|
|
name: z.optional(z.string()),
|
|
});
|
|
export type ApiUser = z.infer<typeof apiUserSchema>;
|
|
|
|
export const apiUserPatchSchema = z.object({
|
|
id: idSchema,
|
|
type: z.optional(apiUserTypeSchema),
|
|
name: z.optional(z.string()),
|
|
});
|
|
export type ApiUserPatch = z.infer<typeof apiUserPatchSchema>;
|
|
|
|
export interface ApiUserDetails {
|
|
id: Id,
|
|
updatedAt: string,
|
|
deleted?: false,
|
|
interestedEventIds?: number[],
|
|
interestedEventSlotIds?: number[],
|
|
timezone?: string,
|
|
locale?: string,
|
|
}
|
|
|
|
export interface ApiAccountUpdate {
|
|
id: Id,
|
|
type: "account-update",
|
|
data: ApiAccount,
|
|
}
|
|
|
|
export interface ApiScheduleUpdate {
|
|
id: Id,
|
|
type: "schedule-update",
|
|
updatedFrom?: string,
|
|
data: ApiSchedule | ApiTombstone,
|
|
}
|
|
|
|
export interface ApiSessionExpired {
|
|
id: Id,
|
|
type: "session-expired",
|
|
sessionId: Id,
|
|
}
|
|
|
|
export interface ApiUserUpdate {
|
|
id: Id,
|
|
type: "user-update",
|
|
updatedFrom?: string,
|
|
data: ApiUser | ApiTombstone,
|
|
}
|
|
|
|
export type ApiEvent =
|
|
| ApiAccountUpdate
|
|
| ApiScheduleUpdate
|
|
| ApiSessionExpired
|
|
| ApiUserUpdate
|
|
;
|
|
|
|
export interface ApiConnected {
|
|
type: "connected",
|
|
session?: ApiSession,
|
|
}
|
|
|
|
export interface ApiDisconnected {
|
|
type: "disconnect",
|
|
reason?: string,
|
|
}
|
|
|
|
export type ApiEventStreamMessage =
|
|
| ApiConnected
|
|
| ApiDisconnected
|
|
;
|