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