Rename and refactor the types passed over the API to be based on an entity that's either living or a tombstone. A living entity has a deleted property that's either undefined or false, while a tombstone has a deleted property set to true. All entities have a numeric id and an updatedAt timestamp. To sync entities, an array of replacements are passed around. Living entities are replaced with tombstones when they're deleted. And tombstones are replaced with living entities when restored.
14 lines
554 B
TypeScript
14 lines
554 B
TypeScript
import { readAccounts, readSchedule } from "~/server/database";
|
|
import type { ApiAccount } from "~/shared/types/api";
|
|
import { canSeeCrew } from "../utils/schedule";
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
const session = await getServerSession(event);
|
|
let account: ApiAccount | undefined;
|
|
if (session) {
|
|
const accounts = await readAccounts()
|
|
account = accounts.find(account => account.id === session.accountId);
|
|
}
|
|
const schedule = await readSchedule();
|
|
return canSeeCrew(account?.type) ? schedule : filterSchedule(schedule);
|
|
});
|