2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../define.js';
|
|
|
|
import { ApiError } from '../../error.js';
|
|
|
|
import { getNote } from '../../common/getters.js';
|
|
|
|
import { Note } from '@/models/entities/note.js';
|
|
|
|
import { Notes } from '@/models/index.js';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2018-11-01 20:32:24 +02:00
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-23 04:20:58 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'Note',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'e1035875-9551-45ec-afa8-1ded1fcb53c8',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-11-01 20:32:24 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
offset: { type: 'integer', default: 0 },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2019-02-22 07:02:56 +02:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
2019-02-22 04:46:58 +02:00
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
2016-12-29 00:49:51 +02:00
|
|
|
});
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const conversation: Note[] = [];
|
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++;
|
2022-03-26 08:34:00 +02:00
|
|
|
const p = await Notes.findOneBy({ id });
|
2019-04-12 19:43:22 +03:00
|
|
|
if (p == null) return;
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
if (i > ps.offset!) {
|
2018-05-25 15:05:16 +03:00
|
|
|
conversation.push(p);
|
2016-12-29 00:49:51 +02:00
|
|
|
}
|
|
|
|
|
2022-04-03 09:33:22 +03: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
|
|
|
}
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Notes.packMany(conversation, user);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|