2019-02-04 20:48:08 -06:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../misc/cafy-id';
|
2018-10-03 10:39:11 -05:00
|
|
|
import Note, { packMany } from '../../../models/note';
|
2018-11-01 23:47:44 -05:00
|
|
|
import define from '../define';
|
2018-09-05 09:55:51 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '投稿を取得します。'
|
|
|
|
},
|
|
|
|
|
2019-02-22 20:20:58 -06:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-09-05 09:55:51 -05:00
|
|
|
params: {
|
2018-11-01 13:32:24 -05:00
|
|
|
local: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 09:55:51 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルの投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
reply: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 09:55:51 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '返信に限定するか否か'
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
renote: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 09:55:51 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Renoteに限定するか否か'
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
withFiles: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 09:55:51 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
media: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 09:55:51 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
poll: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 09:55:51 -05:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'アンケートが添付された投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
limit: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-09-05 09:55:51 -05:00
|
|
|
default: 10
|
2018-11-01 13:32:24 -05:00
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
sinceId: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 13:32:24 -05:00
|
|
|
transform: transform,
|
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
untilId: {
|
2019-02-13 01:33:07 -06:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 13:32:24 -05:00
|
|
|
transform: transform,
|
|
|
|
},
|
2019-02-24 04:42:26 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
}
|
|
|
|
},
|
2018-09-05 09:55:51 -05:00
|
|
|
};
|
2017-03-02 17:06:34 -06:00
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
export default define(meta, async (ps) => {
|
2017-03-03 13:28:38 -06:00
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
2018-05-28 11:50:01 -05:00
|
|
|
const query = {
|
2018-11-30 03:13:55 -06:00
|
|
|
deletedAt: null,
|
2019-02-14 17:38:59 -06:00
|
|
|
visibility: 'public',
|
|
|
|
localOnly: { $ne: true },
|
2018-05-28 11:50:01 -05:00
|
|
|
} as any;
|
2018-09-05 09:55:51 -05:00
|
|
|
if (ps.sinceId) {
|
2017-03-03 13:28:38 -06:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-09-05 09:55:51 -05:00
|
|
|
$gt: ps.sinceId
|
2017-03-03 13:28:38 -06:00
|
|
|
};
|
2018-09-05 09:55:51 -05:00
|
|
|
} else if (ps.untilId) {
|
2017-03-03 13:28:38 -06:00
|
|
|
query._id = {
|
2018-09-05 09:55:51 -05:00
|
|
|
$lt: ps.untilId
|
2017-03-02 17:06:34 -06:00
|
|
|
};
|
2017-03-03 13:28:38 -06:00
|
|
|
}
|
2017-03-02 17:06:34 -06:00
|
|
|
|
2018-09-05 09:55:51 -05:00
|
|
|
if (ps.local) {
|
2018-05-23 01:47:51 -05:00
|
|
|
query['_user.host'] = null;
|
2018-05-23 01:25:15 -05:00
|
|
|
}
|
|
|
|
|
2018-09-05 09:55:51 -05:00
|
|
|
if (ps.reply != undefined) {
|
|
|
|
query.replyId = ps.reply ? { $exists: true, $ne: null } : null;
|
2017-03-19 01:23:30 -05:00
|
|
|
}
|
|
|
|
|
2018-09-05 09:55:51 -05:00
|
|
|
if (ps.renote != undefined) {
|
|
|
|
query.renoteId = ps.renote ? { $exists: true, $ne: null } : null;
|
2017-03-19 01:23:30 -05:00
|
|
|
}
|
|
|
|
|
2018-09-05 09:55:51 -05:00
|
|
|
const withFiles = ps.withFiles != undefined ? ps.withFiles : ps.media;
|
|
|
|
|
2018-12-02 04:24:57 -06:00
|
|
|
if (withFiles) query.fileIds = { $exists: true, $ne: null };
|
2017-03-02 17:06:34 -06:00
|
|
|
|
2018-09-05 09:55:51 -05:00
|
|
|
if (ps.poll != undefined) {
|
|
|
|
query.poll = ps.poll ? { $exists: true, $ne: null } : null;
|
2017-03-03 13:28:38 -06:00
|
|
|
}
|
2017-03-02 17:06:34 -06:00
|
|
|
|
2018-03-16 13:33:36 -05:00
|
|
|
// TODO
|
|
|
|
//if (bot != undefined) {
|
2018-03-29 00:48:47 -05:00
|
|
|
// query.isBot = bot;
|
2018-03-16 13:33:36 -05:00
|
|
|
//}
|
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
const notes = await Note.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
2017-03-02 17:06:34 -06:00
|
|
|
|
2019-02-21 20:46:58 -06:00
|
|
|
return await packMany(notes);
|
|
|
|
});
|