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