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