从零搭建基于 AI 问答平台(9) 定义 Game 接口

添加 game api 模块,定义 POST 方法

添加 src/app/api/game/route.ts,:

1
2
3
4
5
6
7
8
9
10
11
12
export async function POST(req: Request, res: Response) {
try {
const { userId } = await auth();
if (!userId) {
return NextResponse.json(
{ error: "You must be logged in to create a game." },
{
status: 401,
}
);
};
...

创建 Game

1
2
3
4
5
6
7
8
9

const game = await prisma.game.create({
data: {
gameType: type,
timeStarted: new Date(),
userId: userId,
topic,
},
});

更新 topic count

同时考虑插入和更新两种情况:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
await prisma.topic_count.upsert({
where: {
topic,
},
create: {
topic,
count: 1,
},
update: {
count: {
increment: 1,
},
},
});

插入多项选择问题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
type mcqQuestion = {
question: string;
answer: string;
option1: string;
option2: string;
option3: string;
};
const manyData = data.questions.map((question: mcqQuestion) => {
// mix up the options lol
const options = [
question.option1,
question.option2,
question.option3,
question.answer,
].sort(() => Math.random() - 0.5);
return {
question: question.question,
answer: question.answer,
options: JSON.stringify(options),
gameId: game.id,
questionType: "mcq",
};
});

await prisma.question.createMany({
data: manyData,
});

插入开放问题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
type openQuestion = {
question: string;
answer: string;
};
await prisma.question.createMany({
data: data.questions.map((question: openQuestion) => {
return {
question: question.question,
answer: question.answer,
gameId: game.id,
questionType: "open_ended",
};
}),
});

如果感兴趣本项目,请访问项目目录: 从零搭建基于 AI 问答平台 - 目录


作者:Bearalise
出处:从零搭建基于 AI 问答平台(9) 定义 Game 接口
版权:本文版权归作者所有
转载:欢迎转载,但未经作者同意,必须保留此段声明,必须在文章中给出原文链接。

请我喝杯咖啡吧~

支付宝
微信