mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-27 13:45:27 -05:00
add suggestion backend
This commit is contained in:
@@ -2,6 +2,6 @@ import { User } from "@prisma/client";
|
|||||||
import { NextApiRequest } from "next";
|
import { NextApiRequest } from "next";
|
||||||
import { getSession } from "next-auth/client";
|
import { getSession } from "next-auth/client";
|
||||||
|
|
||||||
export const getMySession = (req?: NextApiRequest): Promise<User | null> =>
|
export const getMySession = (req: NextApiRequest): Promise<User | null> =>
|
||||||
// @ts-expect-error
|
// @ts-expect-error
|
||||||
getSession({ req });
|
getSession({ req });
|
||||||
|
|||||||
6
lib/errors.ts
Normal file
6
lib/errors.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
export class UserError extends Error {
|
||||||
|
constructor(message: string) {
|
||||||
|
super(message);
|
||||||
|
this.name = "UserError";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@ export const SUGGESTION_DESCRIPTION_LIMIT = 500;
|
|||||||
|
|
||||||
export const suggestionSchema = z.object({
|
export const suggestionSchema = z.object({
|
||||||
description: z.string().max(SUGGESTION_DESCRIPTION_LIMIT),
|
description: z.string().max(SUGGESTION_DESCRIPTION_LIMIT),
|
||||||
suggestedUserId: z.number().int(),
|
suggestedId: z.number().int(),
|
||||||
tier: z.number().int().min(1).max(3),
|
tier: z.number().int().min(1).max(3),
|
||||||
region: z.enum(["NA", "EU"]),
|
region: z.enum(["NA", "EU"]),
|
||||||
});
|
});
|
||||||
|
|||||||
42
pages/api/plus/suggestions.ts
Normal file
42
pages/api/plus/suggestions.ts
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
import { getMySession } from "lib/api";
|
||||||
|
import { UserError } from "lib/errors";
|
||||||
|
import { NextApiRequest, NextApiResponse } from "next";
|
||||||
|
import plusService from "services/plus";
|
||||||
|
import { ZodError } from "zod";
|
||||||
|
|
||||||
|
const suggestionsHandler = async (
|
||||||
|
req: NextApiRequest,
|
||||||
|
res: NextApiResponse
|
||||||
|
) => {
|
||||||
|
const user = await getMySession(req);
|
||||||
|
|
||||||
|
switch (req.method) {
|
||||||
|
case "POST":
|
||||||
|
await postHandler(req, res);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
res.status(405).end();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function postHandler(req: NextApiRequest, res: NextApiResponse) {
|
||||||
|
if (!user) return res.status(401).end();
|
||||||
|
|
||||||
|
try {
|
||||||
|
await plusService.addSuggestion({ data: req.body, userId: user.id });
|
||||||
|
} catch (e) {
|
||||||
|
if (e instanceof ZodError) {
|
||||||
|
res.status(400).json({ message: e.message });
|
||||||
|
} else if (e instanceof UserError) {
|
||||||
|
res.status(400).json({ message: e.message });
|
||||||
|
} else {
|
||||||
|
res.status(500).end();
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
res.status(200).end();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default suggestionsHandler;
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
import { Prisma } from "@prisma/client";
|
import { Prisma } from "@prisma/client";
|
||||||
|
import { UserError } from "lib/errors";
|
||||||
import { getPercentageFromCounts } from "lib/plus";
|
import { getPercentageFromCounts } from "lib/plus";
|
||||||
import { userBasicSelection } from "lib/prisma";
|
import { userBasicSelection } from "lib/prisma";
|
||||||
|
import { suggestionSchema } from "lib/validators/suggestion";
|
||||||
import prisma from "prisma/client";
|
import prisma from "prisma/client";
|
||||||
|
|
||||||
export type VotingSummariesByMonthAndTier = Prisma.PromiseReturnType<
|
export type VotingSummariesByMonthAndTier = Prisma.PromiseReturnType<
|
||||||
@@ -102,25 +104,44 @@ const addSuggestion = async ({
|
|||||||
data,
|
data,
|
||||||
userId,
|
userId,
|
||||||
}: {
|
}: {
|
||||||
data: Prisma.PlusSuggestionUncheckedCreateInput;
|
data: unknown;
|
||||||
userId: number;
|
userId: number;
|
||||||
}) => {
|
}) => {
|
||||||
const existingSuggestion = await prisma.plusSuggestion.findUnique({
|
const parsedData = { ...suggestionSchema.parse(data), suggesterId: userId };
|
||||||
where: { tier_suggestedId_suggesterId: data },
|
const [suggestions, plusStatus] = await Promise.all([
|
||||||
});
|
prisma.plusSuggestion.findMany({}),
|
||||||
|
prisma.plusStatus.findUnique({ where: { userId } }),
|
||||||
|
]);
|
||||||
|
const existingSuggestion = suggestions.find(
|
||||||
|
({ tier, suggestedId }) =>
|
||||||
|
tier === parsedData.tier && suggestedId === parsedData.suggestedId
|
||||||
|
);
|
||||||
|
|
||||||
// every user can only send one new suggestion per month
|
// every user can only send one new suggestion per month
|
||||||
if (!existingSuggestion) {
|
if (!existingSuggestion) {
|
||||||
const usersSuggestion = await prisma.plusSuggestion.findFirst({
|
const usersSuggestion = suggestions.find(
|
||||||
where: { isResuggestion: false, suggesterId: userId },
|
({ isResuggestion, suggesterId }) =>
|
||||||
});
|
isResuggestion === false && suggesterId === userId
|
||||||
|
);
|
||||||
if (usersSuggestion) {
|
if (usersSuggestion) {
|
||||||
throw Error("Already made a new suggestion");
|
throw new UserError("already made a new suggestion");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
!plusStatus ||
|
||||||
|
!plusStatus.membershipTier ||
|
||||||
|
plusStatus.membershipTier > parsedData.tier
|
||||||
|
) {
|
||||||
|
throw new UserError(
|
||||||
|
"not a member of high enough tier to suggest for this tier"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO voting has started
|
||||||
|
|
||||||
return prisma.plusSuggestion.create({
|
return prisma.plusSuggestion.create({
|
||||||
data: { ...data, isResuggestion: !!existingSuggestion },
|
data: { ...parsedData, isResuggestion: !!existingSuggestion },
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user