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

71 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-07-01 16:05:30 +02: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'
2020-07-24 15:05:51 +02:00
export interface AdminVideoAbuse {
2020-07-01 16:05:30 +02:00
id: number
name: string
uuid: string
nsfw: boolean
2020-07-07 10:57:04 +02:00
2020-07-01 16:05:30 +02:00
deleted: boolean
blacklisted: boolean
startAt: number | null
endAt: number | null
thumbnailPath?: string
channel?: VideoChannel
2020-07-07 14:34:16 +02:00
countReports: number
nthReport: number
2020-07-01 16:05:30 +02:00
}
2020-07-24 15:05:51 +02:00
export interface AdminVideoCommentAbuse {
2020-07-01 16:05:30 +02:00
id: number
threadId: number
2020-07-07 10:57:04 +02:00
video: {
id: number
name: string
uuid: string
}
2020-07-01 16:05:30 +02:00
text: string
2020-07-07 10:57:04 +02:00
2020-07-01 16:05:30 +02:00
deleted: boolean
}
2020-07-24 15:05:51 +02:00
export interface AdminAbuse {
2020-07-01 16:05:30 +02:00
id: number
2020-07-07 14:34:16 +02:00
2020-07-01 16:05:30 +02:00
reason: string
predefinedReasons?: AbusePredefinedReasonsString[]
2020-07-07 14:34:16 +02:00
2020-07-01 16:05:30 +02:00
reporterAccount: Account
2020-07-07 14:34:16 +02:00
flaggedAccount: Account
2020-07-01 16:05:30 +02:00
state: VideoConstant<AbuseState>
moderationComment?: string
2020-07-24 15:05:51 +02:00
video?: AdminVideoAbuse
comment?: AdminVideoCommentAbuse
2020-07-01 16:05:30 +02:00
createdAt: Date
updatedAt: Date
countReportsForReporter?: number
countReportsForReportee?: number
2020-07-07 14:34:16 +02:00
2020-07-24 15:05:51 +02:00
countMessages: number
2020-07-01 16:05:30 +02:00
}
2020-07-24 15:05:51 +02:00
export type UserVideoAbuse = Omit<AdminVideoAbuse, 'countReports' | 'nthReport'>
export type UserVideoCommentAbuse = AdminVideoCommentAbuse
export type UserAbuse = Omit<AdminAbuse, 'reporterAccount' | 'countReportsForReportee' | 'countReportsForReporter' | 'startAt' | 'endAt'
| 'count' | 'nth' | 'moderationComment'>