2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-11-01 19:32:24 +01:00
|
|
|
import Note, { packMany } from '../../../../models/note';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2018-11-01 19:32:24 +01:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿のRenote一覧を取得します。',
|
|
|
|
'en-US': 'Show a renotes of a note.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
2018-11-03 14:49:36 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-01 19:32:24 +01:00
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
transform: transform,
|
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 19:32:24 +01:00
|
|
|
transform: transform,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2018-11-01 19:32:24 +01:00
|
|
|
// Check if both of sinceId and untilId is specified
|
|
|
|
if (ps.sinceId && ps.untilId) {
|
|
|
|
return rej('cannot set sinceId and untilId');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup note
|
|
|
|
const note = await Note.findOne({
|
|
|
|
_id: ps.noteId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
renoteId: note._id
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
if (ps.sinceId) {
|
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
|
|
|
$gt: ps.sinceId
|
|
|
|
};
|
|
|
|
} else if (ps.untilId) {
|
|
|
|
query._id = {
|
|
|
|
$lt: ps.untilId
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const renotes = await Note
|
|
|
|
.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
|
|
|
|
|
|
|
res(await packMany(renotes, user));
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|