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

132 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-05-15 20:22:03 +00:00
import { CONFIG } from '../initializers'
import { isVideoAbuseReporterUsernameValid, isVideoAbuseReasonValid } from '../helpers'
2017-01-04 19:59:23 +00:00
2017-05-22 18:58:25 +00:00
import { addMethodsToModel, getSort } from './utils'
import {
VideoAbuseClass,
VideoAbuseInstance,
VideoAbuseAttributes,
VideoAbuseMethods
} from './video-abuse-interface'
let VideoAbuse: Sequelize.Model<VideoAbuseInstance, VideoAbuseAttributes>
let listForApi: VideoAbuseMethods.ListForApi
2017-06-11 15:35:32 +00:00
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
VideoAbuse = sequelize.define<VideoAbuseInstance, VideoAbuseAttributes>('VideoAbuse',
2017-01-04 19:59:23 +00:00
{
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' ]
}
2017-05-22 18:58:25 +00:00
]
2017-01-04 19:59:23 +00:00
}
)
2017-05-22 18:58:25 +00:00
const classMethods = [
associate,
listForApi
]
const instanceMethods = [
toFormatedJSON
]
addMethodsToModel(VideoAbuse, classMethods, instanceMethods)
2017-01-04 19:59:23 +00:00
return VideoAbuse
}
2017-05-22 18:58:25 +00:00
// ------------------------------ METHODS ------------------------------
function toFormatedJSON () {
let reporterPodHost
if (this.Pod) {
reporterPodHost = this.Pod.host
} else {
// It means it's our video
reporterPodHost = CONFIG.WEBSERVER.HOST
}
const json = {
id: this.id,
reporterPodHost,
reason: this.reason,
reporterUsername: this.reporterUsername,
videoId: this.videoId,
createdAt: this.createdAt
}
return json
}
// ------------------------------ STATICS ------------------------------
2017-01-04 19:59:23 +00:00
function associate (models) {
2017-05-22 18:58:25 +00:00
VideoAbuse.belongsTo(models.Pod, {
2017-01-04 19:59:23 +00:00
foreignKey: {
name: 'reporterPodId',
allowNull: true
},
onDelete: 'cascade'
})
2017-05-22 18:58:25 +00:00
VideoAbuse.belongsTo(models.Video, {
2017-01-04 19:59:23 +00:00
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
}
2017-05-22 18:58:25 +00:00
listForApi = function (start, count, sort, callback) {
2017-01-04 19:59:23 +00:00
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: [
{
2017-05-22 18:58:25 +00:00
model: VideoAbuse['sequelize'].models.Pod,
2017-01-04 19:59:23 +00:00
required: false
}
]
}
2017-05-22 18:58:25 +00:00
return VideoAbuse.findAndCountAll(query).asCallback(function (err, result) {
2017-01-04 19:59:23 +00:00
if (err) return callback(err)
return callback(null, result.rows, result.count)
})
}