2022-06-14 09:01:23 +00:00
|
|
|
import { Notes } from '@/models/index.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import define from '../define.js';
|
|
|
|
import { makePaginationQuery } from '../common/make-pagination-query.js';
|
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-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
2022-04-03 04:57:26 +00:00
|
|
|
local: { type: 'boolean', default: false },
|
2022-02-19 05:05:32 +00:00
|
|
|
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)
|
2022-06-14 09:01:23 +00:00
|
|
|
.andWhere('note.visibility = \'public\'')
|
|
|
|
.andWhere('note.localOnly = FALSE')
|
2021-03-21 03:33:37 +00:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
2022-02-27 04:59:10 +00:00
|
|
|
.leftJoinAndSelect('user.avatar', 'avatar')
|
|
|
|
.leftJoinAndSelect('user.banner', 'banner')
|
2021-03-21 03:31:56 +00:00
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
2022-02-27 04:59:10 +00:00
|
|
|
.leftJoinAndSelect('replyUser.avatar', 'replyUserAvatar')
|
|
|
|
.leftJoinAndSelect('replyUser.banner', 'replyUserBanner')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser')
|
|
|
|
.leftJoinAndSelect('renoteUser.avatar', 'renoteUserAvatar')
|
|
|
|
.leftJoinAndSelect('renoteUser.banner', 'renoteUserBanner');
|
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
|
|
|
}
|
|
|
|
|
2022-04-03 06:33:22 +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
|
|
|
}
|
|
|
|
|
2022-04-03 06:33:22 +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
|
|
|
}
|
|
|
|
|
2022-04-03 06:33:22 +00:00
|
|
|
if (ps.withFiles !== undefined) {
|
2022-06-14 09:01:23 +00:00
|
|
|
query.andWhere(ps.withFiles ? 'note.fileIds != \'{}\'' : 'note.fileIds = \'{}\'');
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2017-03-02 23:06:34 +00:00
|
|
|
|
2022-04-03 06:33:22 +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
|
|
|
});
|