2017-12-12 11:53:50 -05:00
|
|
|
import { AllowNull, BelongsTo, Column, CreatedAt, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
|
|
|
import { VideoAbuseObject } from '../../../shared/models/activitypub/objects'
|
|
|
|
import { isVideoAbuseReasonValid } from '../../helpers/custom-validators/videos'
|
2017-06-16 03:45:46 -04:00
|
|
|
import { CONFIG } from '../../initializers'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { AccountModel } from '../account/account'
|
|
|
|
import { getSort, throwIfNotValid } from '../utils'
|
|
|
|
import { VideoModel } from './video'
|
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'videoAbuse',
|
|
|
|
indexes: [
|
2017-01-04 14:59:23 -05:00
|
|
|
{
|
2017-12-12 11:53:50 -05:00
|
|
|
fields: [ 'videoId' ]
|
2017-01-04 14:59:23 -05:00
|
|
|
},
|
|
|
|
{
|
2017-12-12 11:53:50 -05:00
|
|
|
fields: [ 'reporterAccountId' ]
|
2017-01-04 14:59:23 -05:00
|
|
|
}
|
2017-05-22 14:58:25 -04:00
|
|
|
]
|
2017-12-12 11:53:50 -05:00
|
|
|
})
|
|
|
|
export class VideoAbuseModel extends Model<VideoAbuseModel> {
|
2017-05-22 14:58:25 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Is('VideoAbuseReason', value => throwIfNotValid(value, isVideoAbuseReasonValid, 'reason'))
|
|
|
|
@Column
|
|
|
|
reason: string
|
2017-11-16 11:04:19 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
2017-11-16 11:04:19 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
2017-05-22 14:58:25 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@ForeignKey(() => AccountModel)
|
|
|
|
@Column
|
|
|
|
reporterAccountId: number
|
2017-01-04 14:59:23 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@BelongsTo(() => AccountModel, {
|
2017-01-04 14:59:23 -05:00
|
|
|
foreignKey: {
|
2017-11-27 03:47:21 -05:00
|
|
|
allowNull: false
|
2017-01-04 14:59:23 -05:00
|
|
|
},
|
2017-12-12 11:53:50 -05:00
|
|
|
onDelete: 'cascade'
|
2017-01-04 14:59:23 -05:00
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
Account: AccountModel
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
2017-01-04 14:59:23 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@BelongsTo(() => VideoModel, {
|
2017-01-04 14:59:23 -05:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
2017-12-12 11:53:50 -05:00
|
|
|
onDelete: 'cascade'
|
2017-01-04 14:59:23 -05:00
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
Video: VideoModel
|
|
|
|
|
|
|
|
static listForApi (start: number, count: number, sort: string) {
|
|
|
|
const query = {
|
|
|
|
offset: start,
|
|
|
|
limit: count,
|
|
|
|
order: [ getSort(sort) ],
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: AccountModel,
|
2017-12-14 11:38:41 -05:00
|
|
|
required: true
|
2017-12-12 11:53:50 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
model: VideoModel,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-01-04 14:59:23 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return VideoAbuseModel.findAndCountAll(query)
|
|
|
|
.then(({ rows, count }) => {
|
|
|
|
return { total: count, data: rows }
|
|
|
|
})
|
2017-01-04 14:59:23 -05:00
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
toFormattedJSON () {
|
|
|
|
let reporterServerHost
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
if (this.Account.Actor.Server) {
|
|
|
|
reporterServerHost = this.Account.Actor.Server.host
|
2017-12-12 11:53:50 -05: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 14:59:23 -05:00
|
|
|
}
|