2023-01-13 13:40:33 +09:00
|
|
|
import type { User } from "@/models/entities/user.js";
|
|
|
|
import type { SelectQueryBuilder } from "typeorm";
|
|
|
|
import { Brackets } from "typeorm";
|
2020-02-15 21:39:38 +09:00
|
|
|
|
2023-01-13 13:40:33 +09:00
|
|
|
export function generateRepliesQuery(
|
|
|
|
q: SelectQueryBuilder<any>,
|
|
|
|
me?: Pick<User, "id" | "showTimelineReplies"> | null,
|
|
|
|
) {
|
2020-02-15 21:39:38 +09:00
|
|
|
if (me == null) {
|
2023-01-13 13:40:33 +09:00
|
|
|
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");
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
);
|
2022-02-15 23:08:50 +09:00
|
|
|
} else if (!me.showTimelineReplies) {
|
2023-01-13 13:40:33 +09:00
|
|
|
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");
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
);
|
2020-02-15 21:39:38 +09:00
|
|
|
}
|
|
|
|
}
|