PeerTube/server/models/video/video-abuse.ts

140 lines
3.3 KiB
TypeScript
Raw Normal View History

import { AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
2017-12-12 17:53:50 +01:00
import { VideoAbuseObject } from '../../../shared/models/activitypub/objects'
2018-03-12 11:29:46 +01:00
import { VideoAbuse } from '../../../shared/models/videos'
import {
isVideoAbuseModerationCommentValid,
isVideoAbuseReasonValid,
isVideoAbuseStateValid
} from '../../helpers/custom-validators/video-abuses'
2017-12-12 17:53:50 +01:00
import { AccountModel } from '../account/account'
import { getSort, throwIfNotValid } from '../utils'
import { VideoModel } from './video'
import { VideoAbuseState } from '../../../shared'
import { CONSTRAINTS_FIELDS, VIDEO_ABUSE_STATES } from '../../initializers/constants'
2017-12-12 17:53:50 +01:00
@Table({
tableName: 'videoAbuse',
indexes: [
2017-01-04 20:59:23 +01:00
{
2017-12-12 17:53:50 +01:00
fields: [ 'videoId' ]
2017-01-04 20:59:23 +01:00
},
{
2017-12-12 17:53:50 +01:00
fields: [ 'reporterAccountId' ]
2017-01-04 20:59:23 +01:00
}
2017-05-22 20:58:25 +02:00
]
2017-12-12 17:53:50 +01:00
})
export class VideoAbuseModel extends Model<VideoAbuseModel> {
2017-05-22 20:58:25 +02:00
2017-12-12 17:53:50 +01:00
@AllowNull(false)
@Default(null)
2017-12-12 17:53:50 +01:00
@Is('VideoAbuseReason', value => throwIfNotValid(value, isVideoAbuseReasonValid, 'reason'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_ABUSES.REASON.max))
2017-12-12 17:53:50 +01:00
reason: string
2017-11-16 17:04:19 +01:00
@AllowNull(false)
@Default(null)
@Is('VideoAbuseState', value => throwIfNotValid(value, isVideoAbuseStateValid, 'state'))
@Column
state: VideoAbuseState
@AllowNull(true)
@Default(null)
2019-04-18 11:28:17 +02:00
@Is('VideoAbuseModerationComment', value => throwIfNotValid(value, isVideoAbuseModerationCommentValid, 'moderationComment', true))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_ABUSES.MODERATION_COMMENT.max))
moderationComment: string
2017-12-12 17:53:50 +01:00
@CreatedAt
createdAt: Date
2017-11-16 17:04:19 +01:00
2017-12-12 17:53:50 +01:00
@UpdatedAt
updatedAt: Date
2017-05-22 20:58:25 +02:00
2017-12-12 17:53:50 +01:00
@ForeignKey(() => AccountModel)
@Column
reporterAccountId: number
2017-01-04 20:59:23 +01:00
2017-12-12 17:53:50 +01:00
@BelongsTo(() => AccountModel, {
2017-01-04 20:59:23 +01:00
foreignKey: {
2017-11-27 09:47:21 +01:00
allowNull: false
2017-01-04 20:59:23 +01:00
},
2017-12-12 17:53:50 +01:00
onDelete: 'cascade'
2017-01-04 20:59:23 +01:00
})
2017-12-12 17:53:50 +01:00
Account: AccountModel
@ForeignKey(() => VideoModel)
@Column
videoId: number
2017-01-04 20:59:23 +01:00
2017-12-12 17:53:50 +01:00
@BelongsTo(() => VideoModel, {
2017-01-04 20:59:23 +01:00
foreignKey: {
allowNull: false
},
2017-12-12 17:53:50 +01:00
onDelete: 'cascade'
2017-01-04 20:59:23 +01:00
})
2017-12-12 17:53:50 +01:00
Video: VideoModel
static loadByIdAndVideoId (id: number, videoId: number) {
const query = {
where: {
id,
videoId
}
}
return VideoAbuseModel.findOne(query)
}
2017-12-12 17:53:50 +01:00
static listForApi (start: number, count: number, sort: string) {
const query = {
offset: start,
limit: count,
2018-02-19 09:41:03 +01:00
order: getSort(sort),
2017-12-12 17:53:50 +01:00
include: [
{
model: AccountModel,
2017-12-14 17:38:41 +01:00
required: true
2017-12-12 17:53:50 +01:00
},
{
model: VideoModel,
required: true
}
]
}
2017-01-04 20:59:23 +01:00
2017-12-12 17:53:50 +01:00
return VideoAbuseModel.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
2017-01-04 20:59:23 +01:00
}
2018-03-12 11:29:46 +01:00
toFormattedJSON (): VideoAbuse {
2017-12-12 17:53:50 +01:00
return {
id: this.id,
reason: this.reason,
2018-03-12 11:29:46 +01:00
reporterAccount: this.Account.toFormattedJSON(),
state: {
id: this.state,
label: VideoAbuseModel.getStateLabel(this.state)
},
moderationComment: this.moderationComment,
2018-03-12 11:29:46 +01:00
video: {
id: this.Video.id,
uuid: this.Video.uuid,
name: this.Video.name
},
2017-12-12 17:53:50 +01:00
createdAt: this.createdAt
}
}
toActivityPubObject (): VideoAbuseObject {
return {
type: 'Flag' as 'Flag',
content: this.reason,
object: this.Video.url
}
}
private static getStateLabel (id: number) {
return VIDEO_ABUSE_STATES[id] || 'Unknown'
}
2017-01-04 20:59:23 +01:00
}