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