Files
sistem-desa-mandiri/src/app/api/mobile/task/file/[id]/route.ts

227 lines
7.2 KiB
TypeScript

import { DIR, funDeleteFile, funUploadFile, prisma } from "@/module/_global";
import { funGetUserById } from "@/module/auth";
import { createLogUserMobile } from "@/module/user";
import _ from "lodash";
import { NextResponse } from "next/server";
// HAPUS DETAIL FILE, HAPUS FILE DI ASSETS DAN DATABASE (BUKAN PAKE ISACTIVE)
export async function DELETE(request: Request, context: { params: { id: string } }) {
try {
const { id } = context.params;
const { user } = (await request.json())
const userMobile = await funGetUserById({ id: String(user) })
if (userMobile.id == "null" || userMobile.id == undefined || userMobile.id == "") {
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 200 });
}
const data = await prisma.divisionProjectFile.count({
where: {
id: id,
},
});
if (data == 0) {
return NextResponse.json(
{
success: false,
message: "Hapus file gagal, data tidak ditemukan",
},
{ status: 200 }
);
}
const dataRelasi = await prisma.divisionProjectFile.findUnique({
where: {
id: id,
}
})
const dataFile = await prisma.containerFileDivision.findUnique({
where: {
id: dataRelasi?.idFile
}
})
await funDeleteFile({ fileId: String(dataFile?.idStorage) })
const deleteRelasi = await prisma.divisionProjectFile.delete({
where: {
id: id,
},
});
const deleteFile = await prisma.containerFileDivision.delete({
where: {
id: dataRelasi?.idFile,
},
});
// create log user
const log = await createLogUserMobile({ act: 'DELETE', desc: 'User menghapus file tugas divisi', table: 'divisionProject', data: String(dataRelasi?.idProject), user: userMobile.id })
return NextResponse.json({ success: true, message: "File berhasil dihapus", data, }, { status: 200 });
} catch (error) {
console.error(error);
return NextResponse.json({ success: false, message: "Gagal menghapus file, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
}
}
// TAMBAH FILE TASK DIVISI
export async function POST(request: Request, context: { params: { id: string } }) {
try {
const { id } = context.params;
const body = await request.formData()
const data = JSON.parse(body.get("data") as string)
const user = await funGetUserById({ id: data.user })
const cekFile = body.has("file0")
if (user.id == "null" || user.id == undefined || user.id == "") {
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 200 });
}
const dataCek = await prisma.divisionProject.count({
where: {
id: id,
},
});
if (dataCek == 0) {
return NextResponse.json(
{
success: false,
message: "Tambah file tugas gagal, data tugas tidak ditemukan",
},
{ status: 200 }
);
}
const dataProject = await prisma.divisionProject.findUnique({
where: {
id: id,
},
});
let fileFix: any[] = []
if (cekFile) {
body.delete("data")
for (var pair of body.entries()) {
if (String(pair[0]).substring(0, 4) == "file") {
const file = body.get(pair[0]) as File
const fExt = file.name.split(".").pop()
const fName = file.name.replace("." + fExt, "")
const upload = await funUploadFile({ file: file, dirId: DIR.task })
if (upload.success) {
const insertToContainer = await prisma.containerFileDivision.create({
data: {
idDivision: String(dataProject?.idDivision),
name: fName,
extension: String(fExt),
idStorage: upload.data.id
},
select: {
id: true
}
})
const dataFile = {
idProject: id,
idDivision: dataProject?.idDivision,
idFile: insertToContainer.id,
createdBy: user.id,
}
fileFix.push(dataFile)
}
}
}
const insertFile = await prisma.divisionProjectFile.createMany({
data: fileFix
})
}
// create log user
const log = await createLogUserMobile({ act: 'CREATE', desc: 'User menambahkan file tugas divisi baru', table: 'divisionProject', data: id, user: user.id })
return NextResponse.json({ success: true, message: "Berhasil menambahkan file" }, { status: 200 });
} catch (error) {
console.error(error);
return NextResponse.json({ success: false, message: "Gagal menambahkan filae, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
}
}
// CEK FILE TASK DIVISI APAKAH PERNAH DIUPLOAD PADA TASK YG SAMA
export async function PUT(request: Request, context: { params: { id: string } }) {
try {
const { id } = context.params;
const body = await request.formData()
const data = JSON.parse(body.get("data") as string)
const user = await funGetUserById({ id: data.user })
if (user.id == "null" || user.id == undefined || user.id == "") {
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 200 });
}
const file = body.get("file") as File
const fileName = decodeURIComponent(file.name)
const dataCek = await prisma.divisionProject.count({
where: {
id: id,
},
});
if (dataCek == 0) {
return NextResponse.json(
{
success: false,
message: "Upload file gagal, data tugas tidak ditemukan",
},
{ status: 200 }
);
}
const dataTaskFile = await prisma.divisionProjectFile.findMany({
where: {
idProject: id,
isActive: true
},
select: {
ContainerFileDivision: {
select: {
name: true,
extension: true
}
}
}
})
const dataOmit = dataTaskFile.map((v: any) => ({
..._.omit(v, ["ContainerFileDivision"]),
file: v.ContainerFileDivision.name + '.' + v.ContainerFileDivision.extension,
}))
const cek = dataOmit.some((i: any) => i.file == fileName)
if (cek) {
return NextResponse.json({ success: false, message: "File sudah pernah diupload" }, { status: 200 });
} else {
return NextResponse.json({ success: true, message: "Cek berhasil" }, { status: 200 });
}
} catch (error) {
console.error(error);
return NextResponse.json({ success: false, message: "Upload file gagal, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
}
}