Files
hipmi/src/app/api/mobile/voting/[id]/route.ts
bagasbanuna d09e30c049 Voting notifikasi for mobile
Fix:
- src/app/api/mobile/admin/voting/[id]/route.ts
- src/app/api/mobile/event/route.ts
- src/app/api/mobile/voting/[id]/route.ts
- src/app/api/mobile/voting/route.ts
- src/lib/mobile/route-page-mobile.ts

### No Issue
2026-01-15 17:38:33 +08:00

289 lines
6.8 KiB
TypeScript

import { NextResponse } from "next/server";
import prisma from "@/lib/prisma";
import _ from "lodash";
import { sendNotificationMobileToOneUser } from "@/lib/mobile/notification/send-notification";
import {
NotificationMobileBodyType,
NotificationMobileTitleType,
} from "../../../../../../types/type-mobile-notification";
import { routeUserMobile } from "@/lib/mobile/route-page-mobile";
export { GET, DELETE, PUT, POST };
async function GET(request: Request, { params }: { params: { id: string } }) {
const { id } = params;
try {
const data = await prisma.voting.findUnique({
where: {
id: id,
},
include: {
Voting_DaftarNamaVote: {
orderBy: {
createdAt: "asc",
},
where: {
isActive: true,
},
},
Author: {
select: {
id: true,
username: true,
Profile: {
select: {
id: true,
name: true,
imageId: true,
},
},
},
},
},
});
const listNamaVote = data?.Voting_DaftarNamaVote || [];
for (let v of listNamaVote) {
const kontributor = await prisma.voting_Kontributor.findMany({
where: {
voting_DaftarNamaVoteId: v.id,
},
});
const updateData = await prisma.voting_DaftarNamaVote.update({
where: {
id: v.id,
},
data: {
jumlah: kontributor.length,
},
});
}
return NextResponse.json({
success: true,
message: "Success get voting",
data: data,
});
} catch (error) {
console.log("[ERROR VOTING]", error);
return NextResponse.json({
success: false,
message: "Error get voting",
reason: (error as Error).message,
});
}
}
async function DELETE(
request: Request,
{ params }: { params: { id: string } }
) {
try {
const { id } = params;
const deleteListVoteName = await prisma.voting_DaftarNamaVote.deleteMany({
where: {
votingId: id,
},
});
const deleteData = await prisma.voting.delete({
where: {
id: id,
},
});
return NextResponse.json({
success: true,
message: "Berhasil menghapus data",
});
} catch (error) {
return NextResponse.json({
success: false,
message: "Gagal menghapus data",
reason: (error as Error).message,
});
}
}
async function PUT(request: Request, { params }: { params: { id: string } }) {
const { id } = params;
const { data } = await request.json();
const { searchParams } = new URL(request.url);
const category = searchParams.get("category");
let fixData;
try {
if (category === "edit") {
const updateVoting = await prisma.voting.update({
where: {
id: id,
},
data: {
title: data.title,
deskripsi: data.deskripsi.trim(),
awalVote: data.awalVote,
akhirVote: data.akhirVote,
},
select: {
Voting_DaftarNamaVote: {
where: {
isActive: true,
},
},
},
});
if (!updateVoting)
return NextResponse.json({ status: 400, message: "Gagal Update" });
const deleatePrevPilihan = await prisma.voting_DaftarNamaVote.deleteMany({
where: {
votingId: id,
},
});
if (!deleatePrevPilihan)
return NextResponse.json({
status: 400,
message: "Gagal Update Pilihan",
});
for (let v of data.listVote) {
const namaPilihan = await prisma.voting_DaftarNamaVote.create({
data: {
value: v,
votingId: id,
},
});
if (!namaPilihan)
return NextResponse.json({
status: 400,
message: "Gagal Membuat List",
});
}
} else if (category === "archive") {
const updateVoting = await prisma.voting.update({
where: {
id: id,
},
data: {
isArsip: data,
},
});
if (!updateVoting)
return NextResponse.json({ status: 400, message: "Gagal Update" });
}
return NextResponse.json({
success: true,
message: "Berhasil mengupdate data",
});
} catch (error) {
return NextResponse.json({
success: false,
message: "Gagal mengupdate data",
reason: (error as Error).message,
});
}
}
// Voting masuk melalui API ini
async function POST(request: Request, { params }: { params: { id: string } }) {
const { id } = params;
const { data } = await request.json();
const { chooseId, userId } = data;
try {
const findDatapilihan = await prisma.voting_DaftarNamaVote.findFirst({
where: {
id: chooseId,
},
select: {
jumlah: true,
value: true,
},
});
if (!findDatapilihan)
return NextResponse.json({
success: false,
message: "Data tidak ditemukan",
});
const updateDataPilihan = await prisma.voting_DaftarNamaVote.update({
where: {
id: data.chooseId,
},
data: {
jumlah: findDatapilihan.jumlah + 1,
},
});
if (!updateDataPilihan)
return NextResponse.json({
success: false,
message: "Gagal Update Data",
});
const findVotingData = await prisma.voting.findUnique({
where: { id: id },
select: { authorId: true, title: true },
});
const createKontributor = await prisma.voting_Kontributor.create({
data: {
votingId: id,
authorId: data.userId,
voting_DaftarNamaVoteId: data.chooseId,
},
select: {
Voting: {
select: {
id: true,
title: true,
authorId: true,
},
},
},
});
if (!createKontributor)
return NextResponse.json({
success: false,
message: "Gagal Menjadi Kontributor",
});
// SEND NOTIFICATION
if (userId !== findVotingData?.authorId) {
await sendNotificationMobileToOneUser({
recipientId: findVotingData?.authorId as string,
senderId: userId,
payload: {
title: "User Melakukan Vote" as NotificationMobileTitleType,
body: `Salah satu user telah melakukan voting pada: ${findVotingData?.title}` as NotificationMobileBodyType,
type: "announcement",
deepLink: routeUserMobile.votingDetailPublised({ id: id }),
kategoriApp: "VOTING",
},
});
}
return NextResponse.json({
success: true,
message: "Berhasil Voting",
});
} catch (error) {
console.log("[ERROR]", error);
return NextResponse.json({
success: false,
message: "Gagal menghapus data",
reason: (error as Error).message,
});
}
}