2023-01-13 05:40:33 +01:00
|
|
|
import { PromoReads } from "@/models/index.js";
|
|
|
|
import { genId } from "@/misc/gen-id.js";
|
|
|
|
import define from "../../define.js";
|
|
|
|
import { ApiError } from "../../error.js";
|
|
|
|
import { getNote } from "../../common/getters.js";
|
2020-02-18 10:14:38 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2023-01-13 05:40:33 +01:00
|
|
|
tags: ["notes"],
|
2020-02-18 10:14:38 +01:00
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2020-02-18 10:14:38 +01:00
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
2023-01-13 05:40:33 +01:00
|
|
|
message: "No such note.",
|
|
|
|
code: "NO_SUCH_NOTE",
|
|
|
|
id: "d785b897-fcd3-4fe9-8fc3-b85c26e6c932",
|
2020-02-18 10:14:38 +01:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-02-18 10:14:38 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "object",
|
2022-02-19 06:05:32 +01:00
|
|
|
properties: {
|
2023-01-13 05:40:33 +01:00
|
|
|
noteId: { type: "string", format: "misskey:id" },
|
2022-02-19 06:05:32 +01:00
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
required: ["noteId"],
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
|
|
|
|
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2023-01-13 05:40:33 +01:00
|
|
|
const note = await getNote(ps.noteId, user).catch((err) => {
|
|
|
|
if (err.id === "9725d0ce-ba28-4dde-95a7-2cbb2c15de24")
|
|
|
|
throw new ApiError(meta.errors.noSuchNote);
|
2022-07-25 18:15:21 +02:00
|
|
|
throw err;
|
2020-02-18 10:14:38 +01:00
|
|
|
});
|
|
|
|
|
2023-07-11 07:58:58 +02:00
|
|
|
const exist = await PromoReads.exist({
|
|
|
|
where: {
|
|
|
|
noteId: note.id,
|
|
|
|
userId: user.id,
|
|
|
|
},
|
2020-02-18 10:14:38 +01:00
|
|
|
});
|
|
|
|
|
2023-07-11 07:58:58 +02:00
|
|
|
if (exist) {
|
2020-02-18 10:14:38 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-03-21 13:27:09 +01:00
|
|
|
await PromoReads.insert({
|
2020-02-18 10:14:38 +01:00
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
noteId: note.id,
|
2021-12-09 15:58:30 +01:00
|
|
|
userId: user.id,
|
2020-02-18 10:14:38 +01:00
|
|
|
});
|
|
|
|
});
|