PeerTube/server/models/video/video-abuse.ts

130 lines
2.9 KiB
TypeScript
Raw Normal View History

2017-05-22 20:58:25 +02:00
import * as Sequelize from 'sequelize'
2017-06-16 09:45:46 +02:00
import { CONFIG } from '../../initializers'
2017-11-15 15:12:23 +01:00
import { isVideoAbuseReasonValid } from '../../helpers'
2017-01-04 20:59:23 +01:00
2017-06-16 09:45:46 +02:00
import { addMethodsToModel, getSort } from '../utils'
2017-05-22 20:58:25 +02:00
import {
VideoAbuseInstance,
VideoAbuseAttributes,
VideoAbuseMethods
} from './video-abuse-interface'
let VideoAbuse: Sequelize.Model<VideoAbuseInstance, VideoAbuseAttributes>
2017-08-25 11:45:31 +02:00
let toFormattedJSON: VideoAbuseMethods.ToFormattedJSON
2017-05-22 20:58:25 +02:00
let listForApi: VideoAbuseMethods.ListForApi
2017-06-11 17:35:32 +02:00
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
VideoAbuse = sequelize.define<VideoAbuseInstance, VideoAbuseAttributes>('VideoAbuse',
2017-01-04 20:59:23 +01:00
{
reason: {
type: DataTypes.STRING,
allowNull: false,
validate: {
2017-07-11 17:04:57 +02:00
reasonValid: value => {
2017-05-15 22:22:03 +02:00
const res = isVideoAbuseReasonValid(value)
2017-01-04 20:59:23 +01:00
if (res === false) throw new Error('Video abuse reason is not valid.')
}
}
}
},
{
indexes: [
{
fields: [ 'videoId' ]
},
{
2017-11-15 15:12:23 +01:00
fields: [ 'reporterAccountId' ]
2017-01-04 20:59:23 +01:00
}
2017-05-22 20:58:25 +02:00
]
2017-01-04 20:59:23 +01:00
}
)
2017-05-22 20:58:25 +02:00
const classMethods = [
associate,
listForApi
]
const instanceMethods = [
2017-08-25 11:45:31 +02:00
toFormattedJSON
2017-05-22 20:58:25 +02:00
]
addMethodsToModel(VideoAbuse, classMethods, instanceMethods)
2017-01-04 20:59:23 +01:00
return VideoAbuse
}
2017-05-22 20:58:25 +02:00
// ------------------------------ METHODS ------------------------------
2017-08-25 11:45:31 +02:00
toFormattedJSON = function (this: VideoAbuseInstance) {
2017-11-15 11:00:25 +01:00
let reporterServerHost
2017-05-22 20:58:25 +02:00
2017-11-15 15:12:23 +01:00
if (this.Account.Server) {
reporterServerHost = this.Account.Server.host
2017-05-22 20:58:25 +02:00
} else {
// It means it's our video
2017-11-15 11:00:25 +01:00
reporterServerHost = CONFIG.WEBSERVER.HOST
2017-05-22 20:58:25 +02:00
}
const json = {
id: this.id,
reason: this.reason,
2017-11-15 15:12:23 +01:00
reporterUsername: this.Account.name,
reporterServerHost,
videoId: this.Video.id,
videoUUID: this.Video.uuid,
videoName: this.Video.name,
2017-05-22 20:58:25 +02:00
createdAt: this.createdAt
}
return json
}
// ------------------------------ STATICS ------------------------------
2017-01-04 20:59:23 +01:00
function associate (models) {
2017-11-15 15:12:23 +01:00
VideoAbuse.belongsTo(models.Account, {
2017-01-04 20:59:23 +01:00
foreignKey: {
2017-11-15 15:12:23 +01:00
name: 'reporterAccountId',
2017-01-04 20:59:23 +01:00
allowNull: true
},
onDelete: 'CASCADE'
2017-01-04 20:59:23 +01:00
})
2017-05-22 20:58:25 +02:00
VideoAbuse.belongsTo(models.Video, {
2017-01-04 20:59:23 +01:00
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'CASCADE'
2017-01-04 20:59:23 +01:00
})
}
listForApi = function (start: number, count: number, sort: string) {
2017-01-04 20:59:23 +01:00
const query = {
offset: start,
limit: count,
2017-05-15 22:22:03 +02:00
order: [ getSort(sort) ],
2017-01-04 20:59:23 +01:00
include: [
{
2017-11-15 15:12:23 +01:00
model: VideoAbuse['sequelize'].models.Account,
required: true,
include: [
{
model: VideoAbuse['sequelize'].models.Server,
required: false
}
]
},
{
model: VideoAbuse['sequelize'].models.Video,
required: true
2017-01-04 20:59:23 +01:00
}
]
}
return VideoAbuse.findAndCountAll(query).then(({ rows, count }) => {
return { total: count, data: rows }
2017-01-04 20:59:23 +01:00
})
}