PeerTube/shared/models/moderation/abuse/abuse.model.ts

74 lines
1.3 KiB
TypeScript
Raw Normal View History

2020-07-01 14:05:30 +00:00
import { Account } from '../../actors/account.model'
import { AbuseState } from './abuse-state.model'
import { AbusePredefinedReasonsString } from './abuse-reason.model'
import { VideoConstant } from '../../videos/video-constant.model'
import { VideoChannel } from '../../videos/channel/video-channel.model'
export interface VideoAbuse {
id: number
name: string
uuid: string
nsfw: boolean
2020-07-07 08:57:04 +00:00
2020-07-01 14:05:30 +00:00
deleted: boolean
blacklisted: boolean
startAt: number | null
endAt: number | null
thumbnailPath?: string
channel?: VideoChannel
2020-07-07 12:34:16 +00:00
countReports: number
nthReport: number
2020-07-01 14:05:30 +00:00
}
export interface VideoCommentAbuse {
id: number
threadId: number
2020-07-07 08:57:04 +00:00
video: {
id: number
name: string
uuid: string
}
2020-07-01 14:05:30 +00:00
text: string
2020-07-07 08:57:04 +00:00
2020-07-01 14:05:30 +00:00
deleted: boolean
}
export interface Abuse {
id: number
2020-07-07 12:34:16 +00:00
2020-07-01 14:05:30 +00:00
reason: string
predefinedReasons?: AbusePredefinedReasonsString[]
2020-07-07 12:34:16 +00:00
2020-07-01 14:05:30 +00:00
reporterAccount: Account
2020-07-07 12:34:16 +00:00
flaggedAccount: Account
2020-07-01 14:05:30 +00:00
state: VideoConstant<AbuseState>
moderationComment?: string
video?: VideoAbuse
comment?: VideoCommentAbuse
createdAt: Date
updatedAt: Date
countReportsForReporter?: number
countReportsForReportee?: number
2020-07-07 12:34:16 +00:00
// FIXME: deprecated in 2.3, remove the following properties
2020-07-07 15:18:26 +00:00
// @deprecated
2020-07-09 13:54:24 +00:00
startAt?: null
2020-07-07 15:18:26 +00:00
// @deprecated
2020-07-09 13:54:24 +00:00
endAt?: null
2020-07-07 15:18:26 +00:00
// @deprecated
count?: number
// @deprecated
nth?: number
2020-07-01 14:05:30 +00:00
}