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