1
0
Fork 0
peertube/server/models/user-video-rate.ts

81 lines
1.7 KiB
TypeScript
Raw Normal View History

2017-03-08 20:35:43 +00:00
/*
User rates per video.
*/
2017-05-15 20:22:03 +00:00
import { values } from 'lodash'
2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-03-08 20:35:43 +00:00
2017-05-15 20:22:03 +00:00
import { VIDEO_RATE_TYPES } from '../initializers'
2017-03-08 20:35:43 +00:00
2017-05-22 18:58:25 +00:00
import { addMethodsToModel } from './utils'
import {
UserVideoRateClass,
UserVideoRateInstance,
UserVideoRateAttributes,
2017-03-08 20:35:43 +00:00
2017-05-22 18:58:25 +00:00
UserVideoRateMethods
} from './user-video-rate-interface'
let UserVideoRate: Sequelize.Model<UserVideoRateInstance, UserVideoRateAttributes>
let load: UserVideoRateMethods.Load
2017-06-11 15:35:32 +00:00
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
UserVideoRate = sequelize.define<UserVideoRateInstance, UserVideoRateAttributes>('UserVideoRate',
2017-03-08 20:35:43 +00:00
{
type: {
2017-05-15 20:22:03 +00:00
type: DataTypes.ENUM(values(VIDEO_RATE_TYPES)),
2017-03-08 20:35:43 +00:00
allowNull: false
}
},
{
indexes: [
{
fields: [ 'videoId', 'userId', 'type' ],
unique: true
}
2017-05-22 18:58:25 +00:00
]
2017-03-08 20:35:43 +00:00
}
)
2017-05-22 18:58:25 +00:00
const classMethods = [
associate,
load
]
addMethodsToModel(UserVideoRate, classMethods)
2017-03-08 20:35:43 +00:00
return UserVideoRate
}
// ------------------------------ STATICS ------------------------------
function associate (models) {
2017-05-22 18:58:25 +00:00
UserVideoRate.belongsTo(models.Video, {
2017-03-08 20:35:43 +00:00
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'CASCADE'
})
2017-05-22 18:58:25 +00:00
UserVideoRate.belongsTo(models.User, {
2017-03-08 20:35:43 +00:00
foreignKey: {
name: 'userId',
allowNull: false
},
onDelete: 'CASCADE'
})
}
2017-06-10 20:15:25 +00:00
load = function (userId: number, videoId: number, transaction: Sequelize.Transaction, callback: UserVideoRateMethods.LoadCallback) {
2017-05-22 18:58:25 +00:00
const options: Sequelize.FindOptions = {
2017-03-08 20:35:43 +00:00
where: {
userId,
videoId
}
}
if (transaction) options.transaction = transaction
2017-05-22 18:58:25 +00:00
return UserVideoRate.findOne(options).asCallback(callback)
2017-03-08 20:35:43 +00:00
}