summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/endpoints/notes.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-11-12 02:02:25 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-11-12 02:02:25 +0900
commit0e4a111f81cceed275d9bec2695f6e401fb654d8 (patch)
tree40874799472fa07416f17b50a398ac33b7771905 /packages/backend/src/server/api/endpoints/notes.ts
parentupdate deps (diff)
downloadsharkey-0e4a111f81cceed275d9bec2695f6e401fb654d8.tar.gz
sharkey-0e4a111f81cceed275d9bec2695f6e401fb654d8.tar.bz2
sharkey-0e4a111f81cceed275d9bec2695f6e401fb654d8.zip
refactoring
Resolve #7779
Diffstat (limited to 'packages/backend/src/server/api/endpoints/notes.ts')
-rw-r--r--packages/backend/src/server/api/endpoints/notes.ts94
1 files changed, 94 insertions, 0 deletions
diff --git a/packages/backend/src/server/api/endpoints/notes.ts b/packages/backend/src/server/api/endpoints/notes.ts
new file mode 100644
index 0000000000..a3f6e187f2
--- /dev/null
+++ b/packages/backend/src/server/api/endpoints/notes.ts
@@ -0,0 +1,94 @@
+import $ from 'cafy';
+import { ID } from '@/misc/cafy-id';
+import define from '../define';
+import { makePaginationQuery } from '../common/make-pagination-query';
+import { Notes } from '@/models/index';
+
+export const meta = {
+ tags: ['notes'],
+
+ params: {
+ local: {
+ validator: $.optional.bool,
+ },
+
+ reply: {
+ validator: $.optional.bool,
+ },
+
+ renote: {
+ validator: $.optional.bool,
+ },
+
+ withFiles: {
+ validator: $.optional.bool,
+ },
+
+ poll: {
+ validator: $.optional.bool,
+ },
+
+ limit: {
+ validator: $.optional.num.range(1, 100),
+ default: 10
+ },
+
+ sinceId: {
+ validator: $.optional.type(ID),
+ },
+
+ untilId: {
+ validator: $.optional.type(ID),
+ },
+ },
+
+ res: {
+ type: 'array' as const,
+ optional: false as const, nullable: false as const,
+ items: {
+ type: 'object' as const,
+ optional: false as const, nullable: false as const,
+ ref: 'Note',
+ }
+ },
+};
+
+export default define(meta, async (ps) => {
+ const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId)
+ .andWhere(`note.visibility = 'public'`)
+ .andWhere(`note.localOnly = FALSE`)
+ .innerJoinAndSelect('note.user', 'user')
+ .leftJoinAndSelect('note.reply', 'reply')
+ .leftJoinAndSelect('note.renote', 'renote')
+ .leftJoinAndSelect('reply.user', 'replyUser')
+ .leftJoinAndSelect('renote.user', 'renoteUser');
+
+ if (ps.local) {
+ query.andWhere('note.userHost IS NULL');
+ }
+
+ if (ps.reply != undefined) {
+ query.andWhere(ps.reply ? 'note.replyId IS NOT NULL' : 'note.replyId IS NULL');
+ }
+
+ if (ps.renote != undefined) {
+ query.andWhere(ps.renote ? 'note.renoteId IS NOT NULL' : 'note.renoteId IS NULL');
+ }
+
+ if (ps.withFiles != undefined) {
+ query.andWhere(ps.withFiles ? `note.fileIds != '{}'` : `note.fileIds = '{}'`);
+ }
+
+ if (ps.poll != undefined) {
+ query.andWhere(ps.poll ? 'note.hasPoll = TRUE' : 'note.hasPoll = FALSE');
+ }
+
+ // TODO
+ //if (bot != undefined) {
+ // query.isBot = bot;
+ //}
+
+ const notes = await query.take(ps.limit!).getMany();
+
+ return await Notes.packMany(notes);
+});