2023-07-27 14:31:52 +09:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-07-27 13:34:20 +09:00
|
|
|
import { Entity, Index, JoinColumn, Column, ManyToOne, PrimaryColumn } from 'typeorm';
|
2023-09-20 11:40:17 +09:00
|
|
|
import { mutedNoteReasons } from '@/types.js';
|
2023-09-20 11:33:36 +09:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 17:51:28 +09:00
|
|
|
import { MiNote } from './Note.js';
|
|
|
|
import { MiUser } from './User.js';
|
2020-07-27 13:34:20 +09:00
|
|
|
|
2023-08-16 17:51:28 +09:00
|
|
|
@Entity('muted_note')
|
2020-07-27 13:34:20 +09:00
|
|
|
@Index(['noteId', 'userId'], { unique: true })
|
2023-08-16 17:51:28 +09:00
|
|
|
export class MiMutedNote {
|
2020-07-27 13:34:20 +09:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: 'The note ID.',
|
2020-07-27 13:34:20 +09:00
|
|
|
})
|
2023-08-16 17:51:28 +09:00
|
|
|
public noteId: MiNote['id'];
|
2020-07-27 13:34:20 +09:00
|
|
|
|
2023-08-16 17:51:28 +09:00
|
|
|
@ManyToOne(type => MiNote, {
|
2021-12-09 23:58:30 +09:00
|
|
|
onDelete: 'CASCADE',
|
2020-07-27 13:34:20 +09:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 17:51:28 +09:00
|
|
|
public note: MiNote | null;
|
2020-07-27 13:34:20 +09:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: 'The user ID.',
|
2020-07-27 13:34:20 +09:00
|
|
|
})
|
2023-08-16 17:51:28 +09:00
|
|
|
public userId: MiUser['id'];
|
2020-07-27 13:34:20 +09:00
|
|
|
|
2023-08-16 17:51:28 +09:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 23:58:30 +09:00
|
|
|
onDelete: 'CASCADE',
|
2020-07-27 13:34:20 +09:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 17:51:28 +09:00
|
|
|
public user: MiUser | null;
|
2020-07-27 13:34:20 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ミュートされた理由。
|
|
|
|
*/
|
|
|
|
@Index()
|
|
|
|
@Column('enum', {
|
|
|
|
enum: mutedNoteReasons,
|
2021-12-09 23:58:30 +09:00
|
|
|
comment: 'The reason of the MutedNote.',
|
2020-07-27 13:34:20 +09:00
|
|
|
})
|
|
|
|
public reason: typeof mutedNoteReasons[number];
|
|
|
|
}
|