Mobile API Voting

Add:
- api/mobile/voting/[id]/contribution : mengecek kontibutor
- api/mobile/voting: method : GET , POST , PUT, DEL

### No Issue
This commit is contained in:
2025-09-18 17:38:35 +08:00
parent 7ab42a61b5
commit b4fb23b87a
3 changed files with 330 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import { NextResponse } from "next/server";
import prisma from "@/lib/prisma";
export { POST };
export { POST, GET };
async function POST(request: Request) {
try {
@@ -52,3 +52,72 @@ async function POST(request: Request) {
);
}
}
async function GET(request: Request) {
const { searchParams } = new URL(request.url);
const search = searchParams.get("search");
try {
const data = await prisma.voting.findMany({
orderBy: {
updatedAt: "desc",
},
where: {
voting_StatusId: "1",
isArsip: false,
isActive: true,
akhirVote: {
gte: new Date(),
},
title: {
contains: search || "",
mode: "insensitive",
},
},
include: {
Voting_DaftarNamaVote: {
orderBy: {
createdAt: "asc",
},
},
Author: {
select: {
id: true,
username: true,
Profile: {
select: {
id: true,
name: true,
imageId: true,
},
},
},
},
},
});
console.log("[DATA]", data);
return NextResponse.json(
{
success: true,
message: "Berhasil mendapatkan data",
data: data,
},
{
status: 200,
}
);
} catch (error) {
return NextResponse.json(
{
success: false,
message: "Gagal mendapatkan data",
reason: (error as Error).message,
},
{
status: 500,
}
);
}
}