2018-11-01 13:32:24 -05:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
|
2018-10-03 10:39:11 -05:00
|
|
|
import Note, { packMany, INote } from '../../../../models/note';
|
2018-06-17 19:54:53 -05:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2018-11-01 13:32:24 -05:00
|
|
|
import getParams from '../../get-params';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿の文脈を取得します。',
|
|
|
|
'en-US': 'Show conversation of a note.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
|
|
|
},
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
offset: {
|
|
|
|
validator: $.num.optional.min(0),
|
|
|
|
default: 0
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
// Lookup note
|
|
|
|
const note = await Note.findOne({
|
2018-11-01 13:32:24 -05:00
|
|
|
_id: ps.noteId
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (note === null) {
|
|
|
|
return rej('note not found');
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-06-17 19:54:53 -05:00
|
|
|
const conversation: INote[] = [];
|
2016-12-28 16:49:51 -06:00
|
|
|
let i = 0;
|
|
|
|
|
2018-06-17 19:54:53 -05:00
|
|
|
async function get(id: any) {
|
2016-12-28 16:49:51 -06:00
|
|
|
i++;
|
2018-04-07 12:30:37 -05:00
|
|
|
const p = await Note.findOne({ _id: id });
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
if (i > ps.offset) {
|
2018-05-25 07:05:16 -05:00
|
|
|
conversation.push(p);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-11-01 13:32:24 -05:00
|
|
|
if (conversation.length == ps.limit) {
|
2016-12-28 16:49:51 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-29 00:48:47 -05:00
|
|
|
if (p.replyId) {
|
|
|
|
await get(p.replyId);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (note.replyId) {
|
|
|
|
await get(note.replyId);
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2018-10-03 10:39:11 -05:00
|
|
|
res(await packMany(conversation, user));
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|