Add email to user

This commit is contained in:
Leon Meier 2025-03-03 16:43:49 +01:00
parent 0233196276
commit 50ad684ad3
4 changed files with 12 additions and 6 deletions

View File

@ -17,6 +17,7 @@ model user {
id Int @id @unique @default(autoincrement())
name String @unique
code String?
email String?
// TODO: Prüfen ob nötig, erstmal vorbereitet.
transactions transactions[]
@ -62,3 +63,5 @@ model products {
@@fulltext([name])
}
// TODO: migrate all ids to uuid?

View File

@ -17,7 +17,6 @@ export function handlePrismaError(errorObj: any, res: Response, source: string)
log.db.error(source, errorObj);
if (errorObj instanceof Prisma.PrismaClientKnownRequestError) {
switch (errorObj.code) {
// P2002 -> "Unique constraint failed on the {constraint}"
case 'P2002':
res.status(409).json({ status: 'ERROR', errorcode: 'DB_ERROR', message: 'The object needs to be unique', meta: errorObj.meta });

View File

@ -43,7 +43,7 @@ async function get(req: Request, res: Response) {
});
res.status(200).json({ count, result });
} else {
res.status(404).json({ status: 'ERROR', errorcode: 'NOT_FOUND', message: 'Could not find specified object' });
res.status(404).json({ status: 'ERROR', errorcode: 'NOT_FOUND', message: 'Could not find specified user' });
}
})
.catch((err) => {
@ -75,7 +75,7 @@ async function get(req: Request, res: Response) {
});
res.status(200).json({ count, result });
} else {
res.status(404).json({ status: 'ERROR', errorcode: 'NOT_FOUND', message: 'Could not find specified object' });
res.status(404).json({ status: 'ERROR', errorcode: 'NOT_FOUND', message: 'Could not find any users' });
}
})
.catch((err) => {
@ -97,6 +97,7 @@ async function post(req: Request, res: Response) {
.create({
data: {
name: value.name,
email: value.email,
code: value.code === '0000' ? null : value.code
},
select: {
@ -127,6 +128,7 @@ async function patch(req: Request, res: Response) {
},
data: {
name: value.name,
email: value.email,
code: value.code === '0000' ? null : value.code
},
select: {

View File

@ -22,6 +22,7 @@ const schema_get = validator
// MARK: CREATE user
const schema_post = validator.object({
name: validator.string().min(1).max(32).required(),
email: validator.string().email().trim().required(),
code: validator.string().min(4).max(4).trim().regex(new RegExp(/^[0-9]+$/))
});
@ -30,9 +31,10 @@ const schema_patch = validator
.object({
id: validator.number().positive().precision(0).required(),
name: validator.string().min(1).max(32),
email: validator.string().email().trim(),
code: validator.string().min(4).max(4).trim().regex(new RegExp(/^[0-9]+$/))
})
.or('name', 'code');
.or('name', 'email', 'code');
// MARK: DELETE user
const schema_del = validator.object({