next/server/api/story/[id]/[chapter]/index.put.ts

58 lines
1.6 KiB
TypeScript
Raw Normal View History

import { FormChapter } from "@client/types/form/story";
import { countWords } from "@functions";
import { messages } from "@server/constants";
import { storyQuerier } from "@server/dbHelpers";
import { isLoggedIn } from "@server/middlewareButNotReally";
import { canModify } from "@server/middlewareButNotReally/storyPrivileges";
import { replaceOrUploadContent, bodyHandler } from "@server/storyHelpers";
import { Story } from "@models/stories";
2023-10-02 15:46:56 -04:00
export default eventHandler(async (ev) => {
isLoggedIn(ev);
const story = await storyQuerier(ev);
if (!canModify(ev, story)) {
throw createError({
statusCode: 403,
message: messages[403],
2023-10-02 15:46:56 -04:00
});
}
const body = await readBody(ev);
const cc: FormChapter = body.chapters[0];
const cid = story.chapters[ev.context.chapterIndex].id;
const content = await bodyHandler(cc);
await replaceOrUploadContent(cid!, content);
let ns;
try {
ns = await Story.findOneAndUpdate(
{
"chapters.id": cid,
},
{
$set: {
"chapters.$.title": cc.chapterTitle,
"chapters.$.summary": cc.summary,
"chapters.$.characters": cc.characters,
"chapters.$.relationships": Array.from(new Set(cc.relationships)),
"chapters.$.bands": cc.bands,
"chapters.$.nsfw": cc.nsfw,
2023-10-02 15:46:56 -04:00
"chapters.$.notes": cc.notes,
"chapters.$.words": countWords(content),
"chapters.$.genre": cc.genre,
"chapters.$.loggedInOnly": cc.loggedInOnly,
2023-10-02 15:46:56 -04:00
},
},
{ new: true },
);
} catch (e: any) {
throw createError({
statusCode: 500,
message: e.toString(),
});
}
return {
data: ns,
message: "Chapter updated",
succes: true,
};
});