mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
92 lines
2.9 KiB
TypeScript
92 lines
2.9 KiB
TypeScript
import { Prisma, Article } from "@prisma/client";
|
|
import { ResponseError } from "../../../types/responseErrors";
|
|
import { formatTextToUrlName } from "../../../utils";
|
|
import prisma from "../../../lib/prisma";
|
|
|
|
import type { NextApiRequest, NextApiResponse } from 'next'
|
|
import { UpdateArticle } from "../../../types/api";
|
|
import { isValidText } from "../../../validators";
|
|
|
|
type ArticleWithIncludes = Prisma.ArticleGetPayload<{ include: { contentTableEntries: true, category: true, image: true } }>
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
const articleId: string = formatTextToUrlName(req.query.articleId.toString())
|
|
|
|
console.log(`API articleId: ${articleId}`)
|
|
if (req.method == "GET") { //* GET
|
|
console.log("get")
|
|
await prisma.article
|
|
.findUnique({ where: { id: articleId }, include: { category: true, image: true } })
|
|
.then((result: ArticleWithIncludes) => {
|
|
if (result !== null) {
|
|
console.log("result", result)
|
|
res.json(result);
|
|
} else {
|
|
console.log("no article found")
|
|
const error: ResponseError = {
|
|
code: "404",
|
|
message: "No article with this name found!",
|
|
};
|
|
res.status(404).json(error);
|
|
}
|
|
}, (err) => {
|
|
console.log("reason", err)
|
|
})
|
|
.catch((err) => {
|
|
console.log("catch", err)
|
|
const error: ResponseError = {
|
|
code: "500",
|
|
message: err,
|
|
};
|
|
res.status(500).json(error);
|
|
});
|
|
} else if (req.method == "PUT") {//* PUT
|
|
console.log("PUT")
|
|
const data: UpdateArticle = req.body;
|
|
|
|
if (!isValidText(data.title)) {
|
|
res.json({ target: "title", error: "Not a valid title" });
|
|
return;
|
|
}
|
|
|
|
if (!isValidText(data.introduction)) {
|
|
res.json({ target: "introduction", error: "Not a valid introduction" });
|
|
return;
|
|
}
|
|
|
|
if (!data.categoryId) {
|
|
res.json({ target: "category", error: "Category is required" });
|
|
return;
|
|
}
|
|
|
|
const newArticle: Prisma.ArticleUncheckedUpdateInput = {
|
|
title: data.title ?? undefined,
|
|
name: formatTextToUrlName(data.title) ?? undefined,
|
|
introduction: data.introduction ?? undefined,
|
|
|
|
categoryId: data.categoryId?.toString() ?? undefined,
|
|
contentTable: data.contentTable ?? undefined,
|
|
markdown: data.markdown ?? undefined,
|
|
imageId: data.imageId?.toString() ?? undefined,
|
|
}
|
|
console.log(newArticle)
|
|
await prisma.article.update({ data: newArticle, where: { id: articleId }, include: { category: true } })
|
|
.then(
|
|
(data) => {
|
|
res.json({ success: true, data: data });
|
|
},
|
|
(errorReason) => {
|
|
console.log(errorReason)
|
|
if (errorReason.code === "P2002") {
|
|
res.json({ target: errorReason.meta.target[0], error: "Already exists" });
|
|
}
|
|
}
|
|
)
|
|
.catch((err) => {
|
|
console.error(err);
|
|
res.status(500).end();
|
|
});
|
|
}
|
|
|
|
}
|