2024-09-30 18:14:00 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: hazelnoot and other Sharkey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2024-09-30 03:27:38 +02:00
|
|
|
import { PrimaryColumn, Entity, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
|
|
import { MiUser } from '@/models/User.js';
|
|
|
|
import { MiNote } from '@/models/Note.js';
|
2024-10-09 21:09:55 +02:00
|
|
|
import { isQuote, isRenote } from '@/misc/is-renote.js';
|
2024-09-30 03:27:38 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a user to the most recent post by that user.
|
|
|
|
* Public, home-only, and followers-only posts are included.
|
|
|
|
* DMs are not counted.
|
|
|
|
*/
|
|
|
|
@Entity('latest_note')
|
2024-10-08 22:37:44 +02:00
|
|
|
export class SkLatestNote {
|
2024-09-30 03:27:38 +02:00
|
|
|
@PrimaryColumn({
|
|
|
|
name: 'user_id',
|
|
|
|
type: 'varchar' as const,
|
|
|
|
length: 32,
|
|
|
|
})
|
|
|
|
public userId: string;
|
|
|
|
|
2024-10-08 23:02:31 +02:00
|
|
|
@PrimaryColumn('boolean', {
|
|
|
|
name: 'is_public',
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public isPublic: boolean;
|
|
|
|
|
|
|
|
@PrimaryColumn('boolean', {
|
|
|
|
name: 'is_reply',
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public isReply: boolean;
|
|
|
|
|
|
|
|
@PrimaryColumn('boolean', {
|
|
|
|
name: 'is_quote',
|
|
|
|
default: false,
|
|
|
|
})
|
|
|
|
public isQuote: boolean;
|
|
|
|
|
2024-09-30 03:27:38 +02:00
|
|
|
@ManyToOne(() => MiUser, {
|
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
2024-09-30 04:51:24 +02:00
|
|
|
@JoinColumn({
|
|
|
|
name: 'user_id',
|
|
|
|
})
|
2024-09-30 03:27:38 +02:00
|
|
|
public user: MiUser | null;
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
name: 'note_id',
|
|
|
|
type: 'varchar' as const,
|
|
|
|
length: 32,
|
|
|
|
})
|
|
|
|
public noteId: string;
|
|
|
|
|
|
|
|
@ManyToOne(() => MiNote, {
|
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
2024-09-30 04:51:24 +02:00
|
|
|
@JoinColumn({
|
|
|
|
name: 'note_id',
|
|
|
|
})
|
2024-09-30 03:27:38 +02:00
|
|
|
public note: MiNote | null;
|
2024-09-30 03:52:57 +02:00
|
|
|
|
2024-10-08 22:37:44 +02:00
|
|
|
constructor(data?: Partial<SkLatestNote>) {
|
2024-09-30 05:22:58 +02:00
|
|
|
if (!data) return;
|
|
|
|
|
2024-09-30 03:52:57 +02:00
|
|
|
for (const [k, v] of Object.entries(data)) {
|
2024-09-30 04:50:39 +02:00
|
|
|
(this as Record<string, unknown>)[k] = v;
|
2024-09-30 03:52:57 +02:00
|
|
|
}
|
|
|
|
}
|
2024-10-09 21:09:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a compound key matching a provided note.
|
|
|
|
*/
|
|
|
|
static keyFor(note: MiNote) {
|
|
|
|
return {
|
|
|
|
userId: note.userId,
|
|
|
|
isPublic: note.visibility === 'public',
|
|
|
|
isReply: note.replyId != null,
|
|
|
|
isQuote: isRenote(note) && isQuote(note),
|
|
|
|
};
|
|
|
|
}
|
2024-10-14 00:11:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if two notes would produce equivalent compound keys.
|
|
|
|
*/
|
|
|
|
static areEquivalent(first: MiNote, second: MiNote): boolean {
|
|
|
|
return (
|
|
|
|
first.userId === second.userId &&
|
|
|
|
first.visibility === second.visibility &&
|
|
|
|
(first.replyId != null) === (second.replyId != null) &&
|
|
|
|
(isRenote(first) && isQuote(first)) === (isRenote(second) && isQuote(second))
|
|
|
|
);
|
|
|
|
}
|
2024-09-30 03:27:38 +02:00
|
|
|
}
|