2018-08-29 10:26:25 -04:00
|
|
|
import { AllowNull, BelongsTo, Column, CreatedAt, ForeignKey, Model, Table } from 'sequelize-typescript'
|
|
|
|
import { VideoModel } from './video'
|
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'videoView',
|
2019-04-26 03:16:43 -04:00
|
|
|
updatedAt: false,
|
2018-08-29 10:26:25 -04:00
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'videoId' ]
|
2018-09-04 09:25:02 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'startDate' ]
|
2018-08-29 10:26:25 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class VideoViewModel extends Model<VideoViewModel> {
|
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column(Sequelize.DATE)
|
|
|
|
startDate: Date
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column(Sequelize.DATE)
|
|
|
|
endDate: Date
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
views: number
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
Video: VideoModel
|
|
|
|
|
2019-04-11 11:33:36 -04:00
|
|
|
static removeOldRemoteViewsHistory (beforeDate: string) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
startDate: {
|
|
|
|
[Sequelize.Op.lt]: beforeDate
|
|
|
|
},
|
|
|
|
videoId: {
|
|
|
|
[Sequelize.Op.in]: Sequelize.literal('(SELECT "id" FROM "video" WHERE "remote" IS TRUE)')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoViewModel.destroy(query)
|
|
|
|
}
|
2018-08-29 10:26:25 -04:00
|
|
|
}
|