2017-05-15 22:22:03 +02:00
|
|
|
import { values } from 'lodash'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { Transaction } from 'sequelize'
|
|
|
|
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
|
|
|
import { IFindOptions } from 'sequelize-typescript/lib/interfaces/IFindOptions'
|
|
|
|
import { VideoRateType } from '../../../shared/models/videos'
|
2017-06-16 09:45:46 +02:00
|
|
|
import { VIDEO_RATE_TYPES } from '../../initializers'
|
2017-12-12 17:53:50 +01:00
|
|
|
import { VideoModel } from '../video/video'
|
|
|
|
import { AccountModel } from './account'
|
2018-05-25 16:21:16 +02:00
|
|
|
import { ActorModel } from '../activitypub/actor'
|
2017-03-08 21:35:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
/*
|
|
|
|
Account rates per video.
|
|
|
|
*/
|
|
|
|
@Table({
|
|
|
|
tableName: 'accountVideoRate',
|
|
|
|
indexes: [
|
2017-03-08 21:35:43 +01:00
|
|
|
{
|
2017-12-12 17:53:50 +01:00
|
|
|
fields: [ 'videoId', 'accountId' ],
|
|
|
|
unique: true
|
2017-03-08 21:35:43 +01:00
|
|
|
}
|
2017-12-12 17:53:50 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AccountVideoRateModel extends Model<AccountVideoRateModel> {
|
2017-03-08 21:35:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column(DataType.ENUM(values(VIDEO_RATE_TYPES)))
|
|
|
|
type: VideoRateType
|
2017-05-22 20:58:25 +02:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
2017-05-22 20:58:25 +02:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
2017-03-08 21:35:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
2017-03-08 21:35:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@BelongsTo(() => VideoModel, {
|
2017-03-08 21:35:43 +01:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
2017-12-12 17:53:50 +01:00
|
|
|
Video: VideoModel
|
2017-03-08 21:35:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@ForeignKey(() => AccountModel)
|
|
|
|
@Column
|
|
|
|
accountId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => AccountModel, {
|
2017-03-08 21:35:43 +01:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
2017-12-12 17:53:50 +01:00
|
|
|
Account: AccountModel
|
2017-03-08 21:35:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
static load (accountId: number, videoId: number, transaction: Transaction) {
|
|
|
|
const options: IFindOptions<AccountVideoRateModel> = {
|
|
|
|
where: {
|
|
|
|
accountId,
|
|
|
|
videoId
|
|
|
|
}
|
2017-03-08 21:35:43 +01:00
|
|
|
}
|
2017-12-12 17:53:50 +01:00
|
|
|
if (transaction) options.transaction = transaction
|
2017-03-08 21:35:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
return AccountVideoRateModel.findOne(options)
|
|
|
|
}
|
2018-05-25 16:21:16 +02:00
|
|
|
|
|
|
|
static listAndCountAccountUrlsByVideoId (rateType: VideoRateType, videoId: number, start: number, count: number, t?: Transaction) {
|
|
|
|
const query = {
|
2018-06-13 17:43:30 +02:00
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2018-05-25 16:21:16 +02:00
|
|
|
where: {
|
|
|
|
videoId,
|
|
|
|
type: rateType
|
|
|
|
},
|
|
|
|
transaction: t,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'actorId' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'url' ],
|
|
|
|
model: ActorModel.unscoped(),
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return AccountVideoRateModel.findAndCountAll(query)
|
|
|
|
}
|
2017-03-08 21:35:43 +01:00
|
|
|
}
|