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

113 lines
2.4 KiB
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import { CONFIG } from '../initializers'
import { isVideoAbuseReporterUsernameValid, isVideoAbuseReasonValid } from '../helpers'
import { getSort } from './utils'
2017-01-04 19:59:23 +00:00
module.exports = function (sequelize, DataTypes) {
const VideoAbuse = sequelize.define('VideoAbuse',
{
reporterUsername: {
type: DataTypes.STRING,
allowNull: false,
validate: {
reporterUsernameValid: function (value) {
2017-05-15 20:22:03 +00:00
const res = isVideoAbuseReporterUsernameValid(value)
2017-01-04 19:59:23 +00:00
if (res === false) throw new Error('Video abuse reporter username is not valid.')
}
}
},
reason: {
type: DataTypes.STRING,
allowNull: false,
validate: {
reasonValid: function (value) {
2017-05-15 20:22:03 +00:00
const res = isVideoAbuseReasonValid(value)
2017-01-04 19:59:23 +00:00
if (res === false) throw new Error('Video abuse reason is not valid.')
}
}
}
},
{
indexes: [
{
fields: [ 'videoId' ]
},
{
fields: [ 'reporterPodId' ]
}
],
classMethods: {
associate,
listForApi
},
instanceMethods: {
toFormatedJSON
}
}
)
return VideoAbuse
}
// ---------------------------------------------------------------------------
function associate (models) {
this.belongsTo(models.Pod, {
foreignKey: {
name: 'reporterPodId',
allowNull: true
},
onDelete: 'cascade'
})
this.belongsTo(models.Video, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
}
function listForApi (start, count, sort, callback) {
const query = {
offset: start,
limit: count,
2017-05-15 20:22:03 +00:00
order: [ getSort(sort) ],
2017-01-04 19:59:23 +00:00
include: [
{
model: this.sequelize.models.Pod,
required: false
}
]
}
return this.findAndCountAll(query).asCallback(function (err, result) {
if (err) return callback(err)
return callback(null, result.rows, result.count)
})
}
function toFormatedJSON () {
let reporterPodHost
if (this.Pod) {
reporterPodHost = this.Pod.host
} else {
// It means it's our video
2017-05-15 20:22:03 +00:00
reporterPodHost = CONFIG.WEBSERVER.HOST
2017-01-04 19:59:23 +00:00
}
const json = {
id: this.id,
reporterPodHost,
reason: this.reason,
reporterUsername: this.reporterUsername,
videoId: this.videoId,
createdAt: this.createdAt
2017-01-04 19:59:23 +00:00
}
return json
}