2022-02-27 03:07:39 +01:00
|
|
|
import define from '../define.js';
|
|
|
|
import { Announcements, AnnouncementReads } from '@/models/index.js';
|
|
|
|
import { makePaginationQuery } from '../common/make-pagination-query.js';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
export const meta = {
|
2020-04-03 15:42:29 +02:00
|
|
|
tags: ['meta'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2021-03-06 14:34:11 +01:00
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
items: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
properties: {
|
|
|
|
id: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
updatedAt: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 14:34:11 +01:00
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
text: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
title: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
imageUrl: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-03-06 14:34:11 +01:00
|
|
|
},
|
|
|
|
isRead: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'boolean',
|
|
|
|
optional: true, nullable: false,
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
withUnreads: { type: 'boolean', default: false },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} 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) => {
|
2020-01-29 20:37:25 +01:00
|
|
|
const query = makePaginationQuery(Announcements.createQueryBuilder('announcement'), ps.sinceId, ps.untilId);
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
const announcements = await query.take(ps.limit).getMany();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
if (user) {
|
2022-03-26 07:34:00 +01:00
|
|
|
const reads = (await AnnouncementReads.findBy({
|
2021-12-09 15:58:30 +01:00
|
|
|
userId: user.id,
|
2020-01-29 20:37:25 +01:00
|
|
|
})).map(x => x.announcementId);
|
|
|
|
|
|
|
|
for (const announcement of announcements) {
|
|
|
|
(announcement as any).isRead = reads.includes(announcement.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-03 13:09:07 +01:00
|
|
|
return (ps.withUnreads ? announcements.filter((a: any) => !a.isRead) : announcements).map((a) => ({
|
|
|
|
...a,
|
|
|
|
createdAt: a.createdAt.toISOString(),
|
|
|
|
updatedAt: a.updatedAt?.toISOString() ?? null,
|
|
|
|
}));
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|