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