2019-04-18 05:28:17 -04:00
|
|
|
import { AllowNull, BelongsTo, Column, CreatedAt, Default, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
2018-06-14 12:06:56 -04:00
|
|
|
import { ScopeNames as VideoScopeNames, VideoModel } from './video'
|
|
|
|
import { VideoPrivacy } from '../../../shared/models/videos'
|
2019-04-18 05:28:17 -04:00
|
|
|
import { Op, Transaction } from 'sequelize'
|
2019-08-20 13:05:31 -04:00
|
|
|
import { MScheduleVideoUpdateFormattable } from '@server/typings/models'
|
2018-06-14 12:06:56 -04:00
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'scheduleVideoUpdate',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'videoId' ],
|
|
|
|
unique: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'updateAt' ]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ScheduleVideoUpdateModel extends Model<ScheduleVideoUpdateModel> {
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
updateAt: Date
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
2018-06-15 10:52:15 -04:00
|
|
|
privacy: VideoPrivacy.PUBLIC | VideoPrivacy.UNLISTED
|
2018-06-14 12:06:56 -04:00
|
|
|
|
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
Video: VideoModel
|
|
|
|
|
2018-06-15 10:52:15 -04:00
|
|
|
static areVideosToUpdate () {
|
|
|
|
const query = {
|
|
|
|
logging: false,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
where: {
|
|
|
|
updateAt: {
|
2019-04-18 05:28:17 -04:00
|
|
|
[Op.lte]: new Date()
|
2018-06-15 10:52:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ScheduleVideoUpdateModel.findOne(query)
|
|
|
|
.then(res => !!res)
|
|
|
|
}
|
|
|
|
|
2018-06-14 12:06:56 -04:00
|
|
|
static listVideosToUpdate (t: Transaction) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
updateAt: {
|
2019-04-18 05:28:17 -04:00
|
|
|
[Op.lte]: new Date()
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoModel.scope(
|
|
|
|
[
|
|
|
|
VideoScopeNames.WITH_FILES,
|
2019-04-02 05:26:47 -04:00
|
|
|
VideoScopeNames.WITH_ACCOUNT_DETAILS,
|
2019-04-24 10:43:41 -04:00
|
|
|
VideoScopeNames.WITH_BLACKLISTED,
|
|
|
|
VideoScopeNames.WITH_THUMBNAILS
|
2018-06-14 12:06:56 -04:00
|
|
|
]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
],
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
|
|
|
return ScheduleVideoUpdateModel.findAll(query)
|
|
|
|
}
|
|
|
|
|
2018-06-18 04:24:53 -04:00
|
|
|
static deleteByVideoId (videoId: number, t: Transaction) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
videoId
|
|
|
|
},
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
|
|
|
return ScheduleVideoUpdateModel.destroy(query)
|
|
|
|
}
|
|
|
|
|
2019-08-20 13:05:31 -04:00
|
|
|
toFormattedJSON (this: MScheduleVideoUpdateFormattable) {
|
2018-06-15 10:52:15 -04:00
|
|
|
return {
|
|
|
|
updateAt: this.updateAt,
|
|
|
|
privacy: this.privacy || undefined
|
|
|
|
}
|
|
|
|
}
|
2018-06-14 12:06:56 -04:00
|
|
|
}
|