Files
drop/server/internal/clients/event-handler.ts
T
DecDuck d234f8df33 In-app store, torrential backend, locales (#332)
* feat: add store nav and fixes

* fix: reduce password requirement & new task error ui

* fix: client webtoken fix

* fix: delta versions and dockerfile

* fix: use setup platforms for filter & display

* fix: setup not accounted when returning valid options

* feat: tighter delta version support

* feat: dl/disk size

* feat: offload manifest generation to torrential

* fix: bump torrential

* feat: remove droplet

* feat: bump torrential

* feat: convert locales
2026-02-06 00:12:24 +11:00

112 lines
2.9 KiB
TypeScript

import type { ClientModel, UserModel } from "~/prisma/client/models";
import type { EventHandlerRequest, H3Event } from "h3";
import prisma from "../db/database";
import { useCertificateAuthority } from "~/server/plugins/ca";
import jwt from "jsonwebtoken";
export type EventHandlerFunction<T> = (
h3: H3Event<EventHandlerRequest>,
utils: ClientUtils,
) => Promise<T> | T;
type ClientUtils = {
clientId: string;
fetchClient: () => Promise<ClientModel>;
fetchUser: () => Promise<UserModel>;
};
// I forgot how to spell leniancne
const JWT_TIME_WIGGLE = 30_000;
export function defineClientEventHandler<T>(handler: EventHandlerFunction<T>) {
return defineEventHandler(async (h3) => {
const header = getHeader(h3, "Authorization");
if (!header) throw createError({ statusCode: 403 });
const [method, ...parts] = header.split(" ");
let clientId: string;
switch (method) {
case "JWT": {
clientId = parts[0];
const jwtToken = parts[1];
if (!clientId || !jwtToken) throw createError({ statusCode: 403 });
const certificateAuthority = useCertificateAuthority();
const certBundle =
await certificateAuthority.fetchClientCertificate(clientId);
// This does the blacklist check already
if (!certBundle)
throw createError({
statusCode: 403,
message: "Invalid client ID",
});
const valid = jwt.verify(jwtToken, certBundle.cert, {
clockTolerance: JWT_TIME_WIGGLE,
// algorithms: ["ES384"],
});
if (!valid)
throw createError({
statusCode: 403,
message: "Invalid nonce signature.",
});
break;
}
default: {
throw createError({
statusCode: 403,
message: "No authentication",
});
}
}
if (clientId === undefined)
throw createError({
statusCode: 500,
message: "Failed to execute authentication pipeline.",
});
async function fetchClient() {
const client = await prisma.client.findUnique({
where: { id: clientId },
});
if (!client)
throw new Error(
"client util fetch client broke - this should NOT happen",
);
return client;
}
async function fetchUser() {
const client = await prisma.client.findUnique({
where: { id: clientId },
select: {
user: true,
},
});
if (!client)
throw new Error(
"client util fetch client broke - this should NOT happen",
);
return client.user;
}
const utils: ClientUtils = {
clientId,
fetchClient,
fetchUser,
};
// Ignore response because we don't care if this fails
await prisma.client.updateMany({
where: { id: clientId },
data: { lastConnected: new Date() },
});
return await handler(h3, utils);
});
}