el.xwx.moe/lib/api/controllers/links/postLink.ts

107 lines
3.4 KiB
TypeScript
Raw Normal View History

2023-04-23 08:26:39 -05:00
// Copyright (C) 2022-present Daniel31x13 <daniel31x13@gmail.com>
// This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3.
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
import { prisma } from "@/lib/api/db";
2023-03-28 02:31:50 -05:00
import { ExtendedLink } from "@/types/global";
import getTitle from "../../getTitle";
import archive from "../../archive";
2023-03-10 13:25:33 -06:00
import { Link, UsersAndCollections } from "@prisma/client";
import AES from "crypto-js/aes";
import getPermission from "@/lib/api/getPermission";
2023-03-28 02:31:50 -05:00
export default async function (link: ExtendedLink, userId: number) {
link.collection.name = link.collection.name.trim();
if (!link.name) {
2023-03-28 02:31:50 -05:00
return { response: "Please enter a valid name for the link.", status: 401 };
} else if (!link.collection.name) {
return { response: "Please enter a valid collection name.", status: 401 };
}
2023-03-28 02:31:50 -05:00
if (link.collection.ownerId) {
const collectionIsAccessible = await getPermission(
2023-03-28 02:31:50 -05:00
userId,
link.collection.id
);
2023-03-28 02:31:50 -05:00
const memberHasAccess = collectionIsAccessible?.members.some(
(e: UsersAndCollections) => e.userId === userId && e.canCreate
);
2023-03-28 02:31:50 -05:00
if (!(collectionIsAccessible?.ownerId === userId || memberHasAccess))
return { response: "Collection is not accessible.", status: 401 };
} else {
link.collection.ownerId = userId;
}
const title = await getTitle(link.url);
const newLink: Link = await prisma.link.create({
data: {
name: link.name,
2023-03-05 15:03:20 -06:00
url: link.url,
collection: {
2023-03-28 02:31:50 -05:00
connectOrCreate: {
where: {
name_ownerId: {
ownerId: link.collection.ownerId,
name: link.collection.name,
},
},
create: {
name: link.collection.name,
ownerId: userId,
},
},
},
tags: {
2023-03-28 02:31:50 -05:00
connectOrCreate: link.tags.map((tag) => ({
where: {
2023-03-28 02:31:50 -05:00
name_ownerId: {
name: tag.name,
ownerId: link.collection.ownerId,
},
},
create: {
2023-03-28 02:31:50 -05:00
name: tag.name,
owner: {
connect: {
2023-03-28 02:31:50 -05:00
id: link.collection.ownerId,
},
},
},
})),
},
title,
screenshotPath: "",
pdfPath: "",
},
});
2023-03-28 02:31:50 -05:00
console.log(newLink);
const AES_SECRET = process.env.AES_SECRET as string;
2023-03-25 09:17:34 -05:00
const screenshotHashedPath = AES.encrypt(
`data/archives/${newLink.collectionId}/${newLink.id}.png`,
AES_SECRET
).toString();
const pdfHashedPath = AES.encrypt(
`data/archives/${newLink.collectionId}/${newLink.id}.pdf`,
AES_SECRET
).toString();
2023-03-10 13:25:33 -06:00
const updatedLink: ExtendedLink = await prisma.link.update({
where: { id: newLink.id },
2023-03-25 09:17:34 -05:00
data: { screenshotPath: screenshotHashedPath, pdfPath: pdfHashedPath },
2023-03-10 13:25:33 -06:00
include: { tags: true, collection: true },
});
archive(updatedLink.url, updatedLink.collectionId, updatedLink.id);
2023-03-28 02:31:50 -05:00
return { response: updatedLink, status: 200 };
}