refactor: properly migrate thread ids

Commit fc65190ef7 introduced thread ids but
did not add the thread id to previous notes. This is fixed by this commit.

The original notes in each thread should also have a thread id set which will
be the same as their ID.

These two migrations allow the threadId column be a NOT NULL column.
This commit is contained in:
Johann150 2022-08-02 16:59:21 +02:00
parent e27494cf3e
commit 457bd5ee3f
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1
8 changed files with 46 additions and 21 deletions

View file

@ -0,0 +1,30 @@
export class fixThreadId1659446758000 {
name = 'fixThreadId1659446758000'
async up(queryRunner) {
await Promise.all([
queryRunner.query(`UPDATE "note" SET "threadId" = "id" WHERE "replyId" IS NULL`),
queryRunner.query(`WITH "threads" ("noteId", "thread") AS (
SELECT "id" as "noteId", "parent" as "thread" FROM (
WITH RECURSIVE "parents" ("id", "parent", "height") AS (
SELECT "id", "replyId", 0 FROM "note" WHERE "replyId" IS NOT NULL AND "threadId" IS NULL
UNION ALL
SELECT "parents"."id", "note"."replyId", "parents"."height" + 1
FROM "parents"
JOIN "note" ON "parents"."parent" = "note"."id"
WHERE "note"."replyId" IS NOT NULL
) SELECT *, MAX("height") OVER (PARTITION BY "id") AS "maxheight" FROM "parents"
) AS "x"
WHERE "height" = "maxheight"
) UPDATE "note" SET "threadId" = "threads"."thread" FROM "threads" WHERE "id" = "threads"."noteId"`),
]);
await queryRunner.query(`ALTER TABLE "note" ALTER COLUMN "threadId" SET NOT NULL`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "note" ALTER COLUMN "threaadId" DROP NOT NULL`);
// Cannot un-fix thread id's for ones that just were not migrated (2nd query above)
// but can remove the thread ids for the root notes of each thread.
await queryRunner.query(`UPDATE "note" SET "threadId" = NULL WHERE "replyId" IS NULL`);
}
}

View file

@ -51,7 +51,7 @@ export class Note {
@Column('varchar', {
length: 256, nullable: true,
})
public threadId: string | null;
public threadId: string;
@Column('text', {
nullable: true,

View file

@ -7,11 +7,7 @@ export function generateMutedNoteThreadQuery(q: SelectQueryBuilder<any>, me: { i
.select('threadMuted.threadId')
.where('threadMuted.userId = :userId', { userId: me.id });
q.andWhere(`note.id NOT IN (${ mutedQuery.getQuery() })`);
q.andWhere(new Brackets(qb => { qb
.where('note.threadId IS NULL')
.orWhere(`note.threadId NOT IN (${ mutedQuery.getQuery() })`);
}));
q.andWhere(`note.threadId NOT IN (${ mutedQuery.getQuery() })`);
q.setParameters(mutedQuery.getParameters());
}

View file

@ -57,7 +57,7 @@ export default define(meta, paramDef, async (ps, user) => {
NoteThreadMutings.count({
where: {
userId: user.id,
threadId: note.threadId || note.id,
threadId: note.threadId,
},
take: 1,
}),

View file

@ -41,9 +41,7 @@ export default define(meta, paramDef, async (ps, user) => {
const mutedNotes = await Notes.find({
where: [{
id: note.threadId || note.id,
}, {
threadId: note.threadId || note.id,
threadId: note.threadId,
}],
});
@ -52,7 +50,7 @@ export default define(meta, paramDef, async (ps, user) => {
await NoteThreadMutings.insert({
id: genId(),
createdAt: new Date(),
threadId: note.threadId || note.id,
threadId: note.threadId,
userId: user.id,
mutingNotificationTypes: ps.mutingNotificationTypes,
});

View file

@ -29,7 +29,7 @@ export default define(meta, paramDef, async (ps, user) => {
});
await NoteThreadMutings.delete({
threadId: note.threadId || note.id,
threadId: note.threadId,
userId: user.id,
});
});

View file

@ -369,7 +369,7 @@ export default async (user: { id: User['id']; username: User['username']; host:
if (data.reply.userHost === null) {
const threadMuted = await NoteThreadMutings.findOneBy({
userId: data.reply.userId,
threadId: data.reply.threadId || data.reply.id,
threadId: data.reply.threadId,
});
if (!threadMuted) {
@ -500,15 +500,16 @@ function incRenoteCount(renote: Note): void {
async function insertNote(user: { id: User['id']; host: User['host']; }, data: Option, tags: string[], emojis: string[], mentionedUsers: MinimumUser[]): Promise<Note> {
const createdAt = data.createdAt ?? new Date();
const id = genId(createdAt);
const insert = new Note({
id: genId(createdAt),
id,
createdAt,
fileIds: data.files?.map(file => file.id) ?? [],
replyId: data.reply?.id ?? null,
renoteId: data.renote?.id ?? null,
channelId: data.channel?.id ?? null,
threadId: data.reply?.threadId ?? data.reply?.id ?? null,
fileIds: data.files ? data.files.map(file => file.id) : [],
replyId: data.reply ? data.reply.id : null,
renoteId: data.renote ? data.renote.id : null,
channelId: data.channel ? data.channel.id : null,
threadId: data.reply?.threadId ?? id,
name: data.name,
text: data.text,
hasPoll: data.poll != null,
@ -616,7 +617,7 @@ async function createMentionedEvents(mentionedUsers: MinimumUser[], note: Note,
for (const u of mentionedUsers.filter(u => Users.isLocalUser(u))) {
const threadMuted = await NoteThreadMutings.findOneBy({
userId: u.id,
threadId: note.threadId || note.id,
threadId: note.threadId,
});
if (threadMuted) {

View file

@ -20,7 +20,7 @@ export async function insertNoteUnread(userId: User['id'], note: Note, params: {
// スレッドミュート
const threadMute = await NoteThreadMutings.findOneBy({
userId,
threadId: note.threadId || note.id,
threadId: note.threadId,
});
if (threadMute) return;