2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
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'],
|
|
|
|
|
2018-09-05 14:55:51 +00:00
|
|
|
params: {
|
2018-11-01 18:32:24 +00:00
|
|
|
local: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
reply: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
renote: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
withFiles: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
poll: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 14:58:30 +00:00
|
|
|
default: 10,
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
sinceId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2019-02-24 10:42:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 10:42:26 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
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
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
};
|
2017-03-02 23:06:34 +00:00
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, 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
|
|
|
//}
|
|
|
|
|
2019-04-12 16:43:22 +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
|
|
|
});
|