1
0
Fork 0
peertube/server/models/video/video-abuse.ts

116 lines
2.6 KiB
TypeScript
Raw Normal View History

2018-02-01 10:08:10 +00:00
import { AfterCreate, AllowNull, BelongsTo, Column, CreatedAt, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
2017-12-12 16:53:50 +00:00
import { VideoAbuseObject } from '../../../shared/models/activitypub/objects'
import { isVideoAbuseReasonValid } from '../../helpers/custom-validators/videos'
2017-06-16 07:45:46 +00:00
import { CONFIG } from '../../initializers'
2018-02-01 10:08:10 +00:00
import { Emailer } from '../../lib/emailer'
2017-12-12 16:53:50 +00:00
import { AccountModel } from '../account/account'
import { getSort, throwIfNotValid } from '../utils'
import { VideoModel } from './video'
@Table({
tableName: 'videoAbuse',
indexes: [
2017-01-04 19:59:23 +00:00
{
2017-12-12 16:53:50 +00:00
fields: [ 'videoId' ]
2017-01-04 19:59:23 +00:00
},
{
2017-12-12 16:53:50 +00:00
fields: [ 'reporterAccountId' ]
2017-01-04 19:59:23 +00:00
}
2017-05-22 18:58:25 +00:00
]
2017-12-12 16:53:50 +00:00
})
export class VideoAbuseModel extends Model<VideoAbuseModel> {
2017-05-22 18:58:25 +00:00
2017-12-12 16:53:50 +00:00
@AllowNull(false)
@Is('VideoAbuseReason', value => throwIfNotValid(value, isVideoAbuseReasonValid, 'reason'))
@Column
reason: string
2017-11-16 16:04:19 +00:00
2017-12-12 16:53:50 +00:00
@CreatedAt
createdAt: Date
2017-11-16 16:04:19 +00:00
2017-12-12 16:53:50 +00:00
@UpdatedAt
updatedAt: Date
2017-05-22 18:58:25 +00:00
2017-12-12 16:53:50 +00:00
@ForeignKey(() => AccountModel)
@Column
reporterAccountId: number
2017-01-04 19:59:23 +00:00
2017-12-12 16:53:50 +00:00
@BelongsTo(() => AccountModel, {
2017-01-04 19:59:23 +00:00
foreignKey: {
2017-11-27 08:47:21 +00:00
allowNull: false
2017-01-04 19:59:23 +00:00
},
2017-12-12 16:53:50 +00:00
onDelete: 'cascade'
2017-01-04 19:59:23 +00:00
})
2017-12-12 16:53:50 +00:00
Account: AccountModel
@ForeignKey(() => VideoModel)
@Column
videoId: number
2017-01-04 19:59:23 +00:00
2017-12-12 16:53:50 +00:00
@BelongsTo(() => VideoModel, {
2017-01-04 19:59:23 +00:00
foreignKey: {
allowNull: false
},
2017-12-12 16:53:50 +00:00
onDelete: 'cascade'
2017-01-04 19:59:23 +00:00
})
2017-12-12 16:53:50 +00:00
Video: VideoModel
2018-02-01 10:08:10 +00:00
@AfterCreate
static sendEmailNotification (instance: VideoAbuseModel) {
return Emailer.Instance.addVideoAbuseReport(instance.videoId)
}
2017-12-12 16:53:50 +00:00
static listForApi (start: number, count: number, sort: string) {
const query = {
offset: start,
limit: count,
2018-02-19 08:41:03 +00:00
order: getSort(sort),
2017-12-12 16:53:50 +00:00
include: [
{
model: AccountModel,
2017-12-14 16:38:41 +00:00
required: true
2017-12-12 16:53:50 +00:00
},
{
model: VideoModel,
required: true
}
]
}
2017-01-04 19:59:23 +00:00
2017-12-12 16:53:50 +00:00
return VideoAbuseModel.findAndCountAll(query)
.then(({ rows, count }) => {
return { total: count, data: rows }
})
2017-01-04 19:59:23 +00:00
}
2017-12-12 16:53:50 +00:00
toFormattedJSON () {
let reporterServerHost
2017-12-14 16:38:41 +00:00
if (this.Account.Actor.Server) {
reporterServerHost = this.Account.Actor.Server.host
2017-12-12 16:53:50 +00:00
} else {
// It means it's our video
reporterServerHost = CONFIG.WEBSERVER.HOST
}
return {
id: this.id,
reason: this.reason,
reporterUsername: this.Account.name,
reporterServerHost,
videoId: this.Video.id,
videoUUID: this.Video.uuid,
videoName: this.Video.name,
createdAt: this.createdAt
}
}
toActivityPubObject (): VideoAbuseObject {
return {
type: 'Flag' as 'Flag',
content: this.reason,
object: this.Video.url
}
}
2017-01-04 19:59:23 +00:00
}