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

128 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-06-16 07:45:46 +00:00
import { CONFIG } from '../../initializers'
import { isVideoAbuseReporterUsernameValid, isVideoAbuseReasonValid } from '../../helpers'
2017-01-04 19:59:23 +00:00
2017-06-16 07:45:46 +00:00
import { addMethodsToModel, getSort } from '../utils'
2017-05-22 18:58:25 +00:00
import {
VideoAbuseInstance,
VideoAbuseAttributes,
VideoAbuseMethods
} from './video-abuse-interface'
let VideoAbuse: Sequelize.Model<VideoAbuseInstance, VideoAbuseAttributes>
2017-06-17 09:28:11 +00:00
let toFormatedJSON: VideoAbuseMethods.ToFormatedJSON
2017-05-22 18:58:25 +00:00
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 ------------------------------
2017-06-17 09:28:11 +00:00
toFormatedJSON = function (this: VideoAbuseInstance) {
2017-05-22 18:58:25 +00:00
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'
})
}
listForApi = function (start: number, count: number, sort: string) {
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
}
]
}
return VideoAbuse.findAndCountAll(query).then(({ rows, count }) => {
return { total: count, data: rows }
2017-01-04 19:59:23 +00:00
})
}