2020-02-15 13:39:38 +01:00
|
|
|
import { User } from '../../../models/entities/user';
|
|
|
|
import { Brackets, SelectQueryBuilder } from 'typeorm';
|
|
|
|
|
2021-03-24 03:05:37 +01:00
|
|
|
export function generateRepliesQuery(q: SelectQueryBuilder<any>, me?: { id: User['id'] } | null) {
|
2020-02-15 13:39:38 +01:00
|
|
|
if (me == null) {
|
|
|
|
q.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`note.replyId IS NULL`) // 返信ではない
|
|
|
|
.orWhere(new Brackets(qb => { qb // 返信だけど投稿者自身への返信
|
|
|
|
.where(`note.replyId IS NOT NULL`)
|
|
|
|
.andWhere('note.replyUserId = note.userId');
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
q.andWhere(new Brackets(qb => { qb
|
|
|
|
.where(`note.replyId IS NULL`) // 返信ではない
|
|
|
|
.orWhere('note.replyUserId = :meId', { meId: me.id }) // 返信だけど自分のノートへの返信
|
|
|
|
.orWhere(new Brackets(qb => { qb // 返信だけど自分の行った返信
|
|
|
|
.where(`note.replyId IS NOT NULL`)
|
|
|
|
.andWhere('note.userId = :meId', { meId: me.id });
|
|
|
|
}))
|
|
|
|
.orWhere(new Brackets(qb => { qb // 返信だけど投稿者自身への返信
|
|
|
|
.where(`note.replyId IS NOT NULL`)
|
|
|
|
.andWhere('note.replyUserId = note.userId');
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|