2018-07-07 12:19:00 +02:00
|
|
|
import $ from 'cafy'; import ID from '../../../misc/cafy-id';
|
2018-04-07 19:30:37 +02:00
|
|
|
import Note, { pack } from '../../../models/note';
|
2018-09-05 16:55:51 +02:00
|
|
|
import getParams from '../get-params';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '投稿を取得します。'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
|
|
|
local: $.bool.optional.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルの投稿に限定するか否か'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
reply: $.bool.optional.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '返信に限定するか否か'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
renote: $.bool.optional.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Renoteに限定するか否か'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
withFiles: $.bool.optional.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
media: $.bool.optional.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
poll: $.bool.optional.note({
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'アンケートが添付された投稿に限定するか否か'
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
|
|
|
|
limit: $.num.optional.range(1, 100).note({
|
|
|
|
default: 10
|
|
|
|
}),
|
|
|
|
|
|
|
|
sinceId: $.type(ID).optional.note({}),
|
|
|
|
|
|
|
|
untilId: $.type(ID).optional.note({}),
|
|
|
|
}
|
|
|
|
};
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any) => new Promise(async (res, rej) => {
|
2018-09-05 16:55:51 +02:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) throw psErr;
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Check if both of sinceId and untilId is specified
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.sinceId && ps.untilId) {
|
2018-03-29 07:48:47 +02:00
|
|
|
return rej('cannot set sinceId and untilId');
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Construct query
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
2018-05-28 18:50:01 +02:00
|
|
|
const query = {
|
|
|
|
visibility: 'public'
|
|
|
|
} as any;
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.sinceId) {
|
2017-03-03 20:28:38 +01:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-09-05 16:55:51 +02:00
|
|
|
$gt: ps.sinceId
|
2017-03-03 20:28:38 +01:00
|
|
|
};
|
2018-09-05 16:55:51 +02:00
|
|
|
} else if (ps.untilId) {
|
2017-03-03 20:28:38 +01:00
|
|
|
query._id = {
|
2018-09-05 16:55:51 +02:00
|
|
|
$lt: ps.untilId
|
2017-03-03 00:06:34 +01:00
|
|
|
};
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.local) {
|
2018-05-23 08:47:51 +02:00
|
|
|
query['_user.host'] = null;
|
2018-05-23 08:25:15 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.reply != undefined) {
|
|
|
|
query.replyId = ps.reply ? { $exists: true, $ne: null } : null;
|
2017-03-19 07:23:30 +01:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.renote != undefined) {
|
|
|
|
query.renoteId = ps.renote ? { $exists: true, $ne: null } : null;
|
2017-03-19 07:23:30 +01:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
const withFiles = ps.withFiles != undefined ? ps.withFiles : ps.media;
|
|
|
|
|
|
|
|
if (withFiles) {
|
|
|
|
query.fileIds = withFiles ? { $exists: true, $ne: null } : [];
|
2017-03-03 20:28:38 +01:00
|
|
|
}
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.poll != undefined) {
|
|
|
|
query.poll = ps.poll ? { $exists: true, $ne: null } : null;
|
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
|
|
|
//}
|
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Issue query
|
2018-04-07 19:30:37 +02:00
|
|
|
const notes = await Note
|
2017-03-03 20:28:38 +01:00
|
|
|
.find(query, {
|
2018-09-05 16:55:51 +02:00
|
|
|
limit: ps.limit,
|
2017-03-03 20:28:38 +01:00
|
|
|
sort: sort
|
|
|
|
});
|
2017-03-03 00:06:34 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
// Serialize
|
2018-04-09 21:15:20 +02:00
|
|
|
res(await Promise.all(notes.map(note => pack(note))));
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|