Sharkey/src/server/api/endpoints/notes/conversation.ts

78 lines
1.5 KiB
TypeScript
Raw Normal View History

2019-02-05 04:48:08 +02:00
import $ from 'cafy';
import ID, { transform } from '../../../../misc/cafy-id';
import Note, { packMany, INote } from '../../../../models/note';
2018-11-02 06:47:44 +02:00
import define from '../../define';
import { ApiError } from '../../error';
import { getValiedNote } from '../../common/getters';
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
export const meta = {
desc: {
'ja-JP': '指定した投稿の文脈を取得します。',
'en-US': 'Show conversation of a note.'
},
requireCredential: false,
params: {
noteId: {
validator: $.type(ID),
transform: transform,
2018-11-03 15:49:36 +02:00
desc: {
'ja-JP': '対象の投稿のID',
'en-US': 'Target note ID'
}
2018-11-01 20:32:24 +02:00
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
limit: {
2019-02-13 09:33:07 +02:00
validator: $.optional.num.range(1, 100),
2018-11-01 20:32:24 +02:00
default: 10
},
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
offset: {
2019-02-13 09:33:07 +02:00
validator: $.optional.num.min(0),
2018-11-01 20:32:24 +02:00
default: 0
},
},
errors: {
noSuchNote: {
message: 'No such note.',
code: 'NO_SUCH_NOTE',
id: 'e1035875-9551-45ec-afa8-1ded1fcb53c8'
}
2018-11-01 20:32:24 +02:00
}
};
export default define(meta, async (ps, user) => {
const note = await getValiedNote(ps.noteId).catch(e => {
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
throw e;
2016-12-29 00:49:51 +02:00
});
2018-06-18 03:54:53 +03:00
const conversation: INote[] = [];
2016-12-29 00:49:51 +02:00
let i = 0;
2018-06-18 03:54:53 +03:00
async function get(id: any) {
2016-12-29 00:49:51 +02:00
i++;
2018-04-07 20:30:37 +03:00
const p = await Note.findOne({ _id: id });
2016-12-29 00:49:51 +02:00
2018-11-01 20:32:24 +02:00
if (i > ps.offset) {
2018-05-25 15:05:16 +03:00
conversation.push(p);
2016-12-29 00:49:51 +02:00
}
2018-11-01 20:32:24 +02:00
if (conversation.length == ps.limit) {
2016-12-29 00:49:51 +02:00
return;
}
2018-03-29 08:48:47 +03:00
if (p.replyId) {
await get(p.replyId);
2016-12-29 00:49:51 +02:00
}
}
2018-04-07 20:30:37 +03:00
if (note.replyId) {
await get(note.replyId);
2016-12-29 00:49:51 +02:00
}
return await packMany(conversation, user);
});