2019-03-07 06:03:46 +02:00
|
|
|
import $ from 'cafy';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2019-03-07 06:03:46 +02:00
|
|
|
import define from '../../define';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
|
|
import { Brackets } from 'typeorm';
|
|
|
|
import { Notes } from '../../../../models';
|
2019-03-07 06:03:46 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿への返信/引用を取得します。',
|
|
|
|
'en-US': 'Get replies/quotes of a note.'
|
|
|
|
},
|
|
|
|
|
|
|
|
tags: ['notes'],
|
|
|
|
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
limit: {
|
|
|
|
validator: $.optional.num.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-03-07 06:03:46 +02:00
|
|
|
items: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-03-07 06:03:46 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`note.replyId = :noteId`, { noteId: ps.noteId })
|
|
|
|
.orWhere(new Brackets(qb => { qb
|
|
|
|
.where(`note.renoteId = :noteId`, { noteId: ps.noteId })
|
|
|
|
.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`note.text IS NOT NULL`)
|
|
|
|
.orWhere(`note.fileIds != '{}'`)
|
|
|
|
.orWhere(`note.hasPoll = TRUE`);
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
}))
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
|
|
|
|
2019-12-11 17:49:30 +02:00
|
|
|
generateVisibilityQuery(query, user);
|
2019-04-07 15:50:36 +03:00
|
|
|
if (user) generateMuteQuery(query, user);
|
|
|
|
|
2019-04-12 19:43:22 +03:00
|
|
|
const notes = await query.take(ps.limit!).getMany();
|
2019-04-07 15:50:36 +03:00
|
|
|
|
|
|
|
return await Notes.packMany(notes, user);
|
2019-03-07 06:03:46 +02:00
|
|
|
});
|