2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2023-09-20 05:33:36 +03:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 11:51:28 +03:00
|
|
|
import { MiUser } from './User.js';
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@Entity('abuse_user_report')
|
|
|
|
export class MiAbuseUserReport {
|
2019-04-07 15:50:36 +03:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
2023-08-16 11:51:28 +03:00
|
|
|
public targetUserId: MiUser['id'];
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public targetUser: MiUser | null;
|
2019-04-07 15:50:36 +03:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
2023-08-16 11:51:28 +03:00
|
|
|
public reporterId: MiUser['id'];
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public reporter: MiUser | null;
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2020-10-19 13:29:04 +03:00
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
nullable: true,
|
2020-10-19 13:29:04 +03:00
|
|
|
})
|
2023-08-16 11:51:28 +03:00
|
|
|
public assigneeId: MiUser['id'] | null;
|
2020-10-19 13:29:04 +03:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'SET NULL',
|
2020-10-19 13:29:04 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public assignee: MiUser | null;
|
2020-10-19 13:29:04 +03:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('boolean', {
|
2021-12-09 16:58:30 +02:00
|
|
|
default: false,
|
2020-10-19 13:29:04 +03:00
|
|
|
})
|
|
|
|
public resolved: boolean;
|
|
|
|
|
2022-01-20 20:06:38 +02:00
|
|
|
@Column('boolean', {
|
2022-09-17 21:27:08 +03:00
|
|
|
default: false,
|
2022-01-20 20:06:38 +02:00
|
|
|
})
|
|
|
|
public forwarded: boolean;
|
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
@Column('varchar', {
|
2020-10-19 13:29:04 +03:00
|
|
|
length: 2048,
|
2019-04-07 15:50:36 +03:00
|
|
|
})
|
|
|
|
public comment: string;
|
2020-10-19 13:29:04 +03:00
|
|
|
|
|
|
|
//#region Denormalized fields
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2020-10-19 13:29:04 +03:00
|
|
|
})
|
|
|
|
public targetUserHost: string | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128, nullable: true,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2020-10-19 13:29:04 +03:00
|
|
|
})
|
|
|
|
public reporterHost: string | null;
|
|
|
|
//#endregion
|
2019-04-07 15:50:36 +03:00
|
|
|
}
|