many changes across the app

This commit is contained in:
Daniel
2023-05-01 13:37:01 +03:30
parent c1d1d4a4a2
commit 0d0e53218f
14 changed files with 215 additions and 55 deletions
@@ -33,7 +33,13 @@ export default async function (collection: { id: number }, userId: number) {
},
});
fs.rmdirSync(`data/archives/${collection.id}`, { recursive: true });
try {
fs.rmdirSync(`data/archives/${collection.id}`, { recursive: true });
} catch (error) {
console.log(
"Collection's archive directory wasn't deleted most likely because it didn't exist..."
);
}
return await prisma.collection.delete({
where: {
+21 -4
View File
@@ -5,7 +5,7 @@
import { prisma } from "@/lib/api/db";
import { ExtendedLink } from "@/types/global";
import { Link, UsersAndCollections } from "@prisma/client";
import { UsersAndCollections } from "@prisma/client";
import getPermission from "@/lib/api/getPermission";
export default async function (link: ExtendedLink, userId: number) {
@@ -17,10 +17,23 @@ export default async function (link: ExtendedLink, userId: number) {
(e: UsersAndCollections) => e.userId === userId && e.canUpdate
);
if (!(collectionIsAccessible?.ownerId === userId || memberHasAccess))
return { response: "Collection is not accessible.", status: 401 };
if (link.collection.ownerId) {
const collectionIsAccessible = await getPermission(
userId,
link.collection.id
);
const updatedLink: Link = await prisma.link.update({
const memberHasAccess = collectionIsAccessible?.members.some(
(e: UsersAndCollections) => e.userId === userId && e.canCreate
);
if (!(collectionIsAccessible?.ownerId === userId || memberHasAccess))
return { response: "Collection is not accessible.", status: 401 };
} else {
link.collection.ownerId = userId;
}
const updatedLink: ExtendedLink = await prisma.link.update({
where: {
id: link.id,
},
@@ -60,6 +73,10 @@ export default async function (link: ExtendedLink, userId: number) {
})),
},
},
include: {
tags: true,
collection: true,
},
});
return { response: updatedLink, status: 200 };