2020-02-25 23:54:35 +01:00
|
|
|
import { Notes } from '../models';
|
|
|
|
|
2020-02-25 23:56:32 +01:00
|
|
|
export async function countSameRenotes(userId: string, renoteId: string, excludeNoteId: string | undefined): Promise<number> {
|
2020-02-25 23:54:35 +01:00
|
|
|
// 指定したユーザーの指定したノートのリノートがいくつあるか数える
|
|
|
|
const query = Notes.createQueryBuilder('note')
|
|
|
|
.where('note.userId = :userId', { userId })
|
|
|
|
.andWhere('note.renoteId = :renoteId', { renoteId })
|
|
|
|
|
|
|
|
// 指定した投稿を除く
|
|
|
|
if (excludeNoteId) {
|
|
|
|
query.andWhere('note.id != :excludeNoteId', { excludeNoteId })
|
|
|
|
}
|
|
|
|
|
|
|
|
return await query.getCount();
|
|
|
|
}
|