2022-02-27 04:07:39 +02:00
|
|
|
import define from '../define.js';
|
|
|
|
import { makePaginationQuery } from '../common/make-pagination-query.js';
|
|
|
|
import { Notes } from '@/models/index.js';
|
2018-09-05 17:55:51 +03:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2019-02-24 12:42:26 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 12:42:26 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'Note',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-24 12:42:26 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
local: { type: 'boolean' },
|
|
|
|
reply: { type: 'boolean' },
|
|
|
|
renote: { type: 'boolean' },
|
|
|
|
withFiles: { type: 'boolean' },
|
|
|
|
poll: { type: 'boolean' },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} 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) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`note.visibility = 'public'`)
|
|
|
|
.andWhere(`note.localOnly = FALSE`)
|
2021-03-21 05:33:37 +02:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
2021-03-21 05:31:56 +02:00
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.local) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere('note.userHost IS NULL');
|
2018-05-23 09:25:15 +03:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.reply != undefined) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere(ps.reply ? 'note.replyId IS NOT NULL' : 'note.replyId IS NULL');
|
2017-03-19 08:23:30 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.renote != undefined) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere(ps.renote ? 'note.renoteId IS NOT NULL' : 'note.renoteId IS NULL');
|
2017-03-19 08:23:30 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
if (ps.withFiles != undefined) {
|
|
|
|
query.andWhere(ps.withFiles ? `note.fileIds != '{}'` : `note.fileIds = '{}'`);
|
|
|
|
}
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.poll != undefined) {
|
2019-04-07 15:50:36 +03:00
|
|
|
query.andWhere(ps.poll ? 'note.hasPoll = TRUE' : 'note.hasPoll = FALSE');
|
2017-03-03 21:28:38 +02:00
|
|
|
}
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2018-03-16 20:33:36 +02:00
|
|
|
// TODO
|
|
|
|
//if (bot != undefined) {
|
2018-03-29 08:48:47 +03:00
|
|
|
// query.isBot = bot;
|
2018-03-16 20:33:36 +02:00
|
|
|
//}
|
|
|
|
|
2022-02-19 07:05:32 +02:00
|
|
|
const notes = await query.take(ps.limit).getMany();
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Notes.packMany(notes);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|