mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
94 lines
2.5 KiB
TypeScript
94 lines
2.5 KiB
TypeScript
import { AuthMec } from "~/prisma/client";
|
|
import prisma from "~/server/internal/db/database";
|
|
import { createHashArgon2 } from "~/server/internal/security/simple";
|
|
import * as jdenticon from "jdenticon";
|
|
import objectHandler from "~/server/internal/objects";
|
|
import { type } from "arktype";
|
|
import { randomUUID } from "node:crypto";
|
|
|
|
const userValidator = type({
|
|
username: "string >= 5",
|
|
email: "string.email",
|
|
password: "string >= 14",
|
|
"displayName?": "string | undefined",
|
|
});
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const body = await readBody(h3);
|
|
|
|
const invitationId = body.invitation;
|
|
if (!invitationId)
|
|
throw createError({
|
|
statusCode: 401,
|
|
statusMessage: "Invalid or expired invitation.",
|
|
});
|
|
|
|
const invitation = await prisma.invitation.findUnique({
|
|
where: { id: invitationId },
|
|
});
|
|
if (!invitation)
|
|
throw createError({
|
|
statusCode: 401,
|
|
statusMessage: "Invalid or expired invitation.",
|
|
});
|
|
|
|
const user = userValidator(body);
|
|
if (user instanceof type.errors) {
|
|
// hover out.summary to see validation errors
|
|
console.error(user.summary);
|
|
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: user.summary,
|
|
});
|
|
}
|
|
|
|
// reuse items from invite
|
|
if (invitation.username !== null) user.username = invitation.username;
|
|
if (invitation.email !== null) user.email = invitation.email;
|
|
|
|
const existing = await prisma.user.count({
|
|
where: { username: user.username },
|
|
});
|
|
if (existing > 0)
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "Username already taken.",
|
|
});
|
|
|
|
const userId = randomUUID();
|
|
|
|
const profilePictureId = randomUUID();
|
|
await objectHandler.createFromSource(
|
|
profilePictureId,
|
|
async () => jdenticon.toPng(user.username, 256),
|
|
{},
|
|
[`internal:read`, `${userId}:read`],
|
|
);
|
|
const [linkMec] = await prisma.$transaction([
|
|
prisma.linkedAuthMec.create({
|
|
data: {
|
|
mec: AuthMec.Simple,
|
|
credentials: await createHashArgon2(user.password),
|
|
version: 2,
|
|
user: {
|
|
create: {
|
|
id: userId,
|
|
username: user.username,
|
|
displayName: user.displayName ?? user.username,
|
|
email: user.email,
|
|
profilePicture: profilePictureId,
|
|
admin: invitation.isAdmin,
|
|
},
|
|
},
|
|
},
|
|
select: {
|
|
user: true,
|
|
},
|
|
}),
|
|
prisma.invitation.delete({ where: { id: invitationId } }),
|
|
]);
|
|
|
|
return linkMec.user;
|
|
});
|