2023-03-23 10:25:17 -05:00
|
|
|
import { prisma } from "@/lib/api/db";
|
2023-06-14 17:34:54 -05:00
|
|
|
import { LinkIncludingShortenedCollectionAndTags } from "@/types/global";
|
2023-03-25 09:17:34 -05:00
|
|
|
import fs from "fs";
|
2023-06-24 16:54:35 -05:00
|
|
|
import { Collection, Link, UsersAndCollections } from "@prisma/client";
|
2023-04-26 15:40:48 -05:00
|
|
|
import getPermission from "@/lib/api/getPermission";
|
2023-03-23 10:25:17 -05:00
|
|
|
|
2023-06-09 17:31:14 -05:00
|
|
|
export default async function deleteLink(
|
2023-06-14 17:34:54 -05:00
|
|
|
link: LinkIncludingShortenedCollectionAndTags,
|
2023-05-27 11:29:39 -05:00
|
|
|
userId: number
|
|
|
|
) {
|
|
|
|
if (!link || !link.collectionId)
|
|
|
|
return { response: "Please choose a valid link.", status: 401 };
|
2023-03-23 10:25:17 -05:00
|
|
|
|
2023-06-24 16:54:35 -05:00
|
|
|
const collectionIsAccessible = (await getPermission(
|
|
|
|
userId,
|
|
|
|
link.collectionId
|
|
|
|
)) as
|
|
|
|
| (Collection & {
|
|
|
|
members: UsersAndCollections[];
|
|
|
|
})
|
|
|
|
| null;
|
2023-03-23 10:25:17 -05:00
|
|
|
|
|
|
|
const memberHasAccess = collectionIsAccessible?.members.some(
|
2023-03-28 02:31:50 -05:00
|
|
|
(e: UsersAndCollections) => e.userId === userId && e.canDelete
|
2023-03-23 10:25:17 -05:00
|
|
|
);
|
|
|
|
|
2023-03-28 02:31:50 -05:00
|
|
|
if (!(collectionIsAccessible?.ownerId === userId || memberHasAccess))
|
|
|
|
return { response: "Collection is not accessible.", status: 401 };
|
2023-03-23 10:25:17 -05:00
|
|
|
|
|
|
|
const deleteLink: Link = await prisma.link.delete({
|
|
|
|
where: {
|
|
|
|
id: link.id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2023-03-25 09:17:34 -05:00
|
|
|
fs.unlink(`data/archives/${link.collectionId}/${link.id}.pdf`, (err) => {
|
|
|
|
if (err) console.log(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
fs.unlink(`data/archives/${link.collectionId}/${link.id}.png`, (err) => {
|
|
|
|
if (err) console.log(err);
|
|
|
|
});
|
|
|
|
|
2023-03-28 02:31:50 -05:00
|
|
|
return { response: deleteLink, status: 200 };
|
2023-03-23 10:25:17 -05:00
|
|
|
}
|