2023-01-13 05:40:33 +01:00
|
|
|
import { publishMainStream } from "@/services/stream.js";
|
|
|
|
import { Users, Pages } from "@/models/index.js";
|
|
|
|
import define from "../define.js";
|
|
|
|
import { ApiError } from "../error.js";
|
2019-07-06 11:14:50 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2019-07-06 11:14:50 +02:00
|
|
|
secure: true,
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchPage: {
|
2023-01-13 05:40:33 +01:00
|
|
|
message: "No such page.",
|
|
|
|
code: "NO_SUCH_PAGE",
|
|
|
|
id: "4a13ad31-6729-46b4-b9af-e86b265c2e74",
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2019-07-06 11:14:50 +02: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
|
|
|
pageId: { type: "string", format: "misskey:id" },
|
|
|
|
event: { type: "string" },
|
2022-02-19 06:05:32 +01:00
|
|
|
var: {},
|
|
|
|
},
|
2023-01-13 05:40:33 +01:00
|
|
|
required: ["pageId", "event"],
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2022-03-26 07:34:00 +01:00
|
|
|
const page = await Pages.findOneBy({ id: ps.pageId });
|
2019-07-06 11:14:50 +02:00
|
|
|
if (page == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchPage);
|
|
|
|
}
|
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
publishMainStream(page.userId, "pageEvent", {
|
2019-07-06 11:14:50 +02:00
|
|
|
pageId: ps.pageId,
|
|
|
|
event: ps.event,
|
2019-07-06 22:12:31 +02:00
|
|
|
var: ps.var,
|
2019-07-09 09:55:55 +02:00
|
|
|
userId: user.id,
|
2023-01-13 05:40:33 +01:00
|
|
|
user: await Users.pack(
|
|
|
|
user.id,
|
|
|
|
{ id: page.userId },
|
|
|
|
{
|
|
|
|
detail: true,
|
|
|
|
},
|
|
|
|
),
|
2019-07-06 11:14:50 +02:00
|
|
|
});
|
|
|
|
});
|