2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../define';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { makePaginationQuery } from '../common/make-pagination-query';
|
|
|
|
import { Notes } from '../../../models';
|
2018-09-05 16:55:51 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '投稿を取得します。'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
local: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルの投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
reply: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '返信に限定するか否か'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
renote: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Renoteに限定するか否か'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
withFiles: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
poll: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'アンケートが添付された投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-09-05 16:55:51 +02:00
|
|
|
default: 10
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2019-02-24 11:42:26 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-24 11:42:26 +01:00
|
|
|
items: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Note',
|
2019-02-24 11:42:26 +01:00
|
|
|
}
|
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
};
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`note.visibility = 'public'`)
|
|
|
|
.andWhere(`note.localOnly = FALSE`)
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.local) {
|
2019-04-07 14:50:36 +02:00
|
|
|
query.andWhere('note.userHost IS NULL');
|
2018-05-23 08:25:15 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.reply != undefined) {
|
2019-04-07 14:50:36 +02:00
|
|
|
query.andWhere(ps.reply ? 'note.replyId IS NOT NULL' : 'note.replyId IS NULL');
|
2017-03-19 07:23:30 +01:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.renote != undefined) {
|
2019-04-07 14:50:36 +02:00
|
|
|
query.andWhere(ps.renote ? 'note.renoteId IS NOT NULL' : 'note.renoteId IS NULL');
|
2017-03-19 07:23:30 +01:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (ps.withFiles != undefined) {
|
|
|
|
query.andWhere(ps.withFiles ? `note.fileIds != '{}'` : `note.fileIds = '{}'`);
|
|
|
|
}
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.poll != undefined) {
|
2019-04-07 14:50:36 +02:00
|
|
|
query.andWhere(ps.poll ? 'note.hasPoll = TRUE' : 'note.hasPoll = FALSE');
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2018-03-16 19:33:36 +01:00
|
|
|
// TODO
|
|
|
|
//if (bot != undefined) {
|
2018-03-29 07:48:47 +02:00
|
|
|
// query.isBot = bot;
|
2018-03-16 19:33:36 +01:00
|
|
|
//}
|
|
|
|
|
2019-04-12 18:43:22 +02:00
|
|
|
const notes = await query.take(ps.limit!).getMany();
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.packMany(notes);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|