|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import { Op, Transaction } from 'sequelize'
- import { AllowNull, BelongsTo, Column, CreatedAt, DataType, Default, ForeignKey, Table, UpdatedAt } from 'sequelize-typescript'
- import { VideoPrivacy } from '@peertube/peertube-models'
- import { MScheduleVideoUpdate, MScheduleVideoUpdateFormattable } from '@server/types/models/index.js'
- import { VideoModel } from './video.js'
- import { SequelizeModel } from '../shared/index.js'
-
- @Table({
- tableName: 'scheduleVideoUpdate',
- indexes: [
- {
- fields: [ 'videoId' ],
- unique: true
- },
- {
- fields: [ 'updateAt' ]
- }
- ]
- })
- export class ScheduleVideoUpdateModel extends SequelizeModel<ScheduleVideoUpdateModel> {
-
- @AllowNull(false)
- @Default(null)
- @Column
- updateAt: Date
-
- @AllowNull(true)
- @Default(null)
- @Column(DataType.INTEGER)
- privacy: typeof VideoPrivacy.PUBLIC | typeof VideoPrivacy.UNLISTED | typeof VideoPrivacy.INTERNAL
-
- @CreatedAt
- createdAt: Date
-
- @UpdatedAt
- updatedAt: Date
-
- @ForeignKey(() => VideoModel)
- @Column
- videoId: number
-
- @BelongsTo(() => VideoModel, {
- foreignKey: {
- allowNull: false
- },
- onDelete: 'cascade'
- })
- Video: Awaited<VideoModel>
-
- static areVideosToUpdate () {
- const query = {
- logging: false,
- attributes: [ 'id' ],
- where: {
- updateAt: {
- [Op.lte]: new Date()
- }
- }
- }
-
- return ScheduleVideoUpdateModel.findOne(query)
- .then(res => !!res)
- }
-
- static listVideosToUpdate (transaction?: Transaction) {
- const query = {
- where: {
- updateAt: {
- [Op.lte]: new Date()
- }
- },
- transaction
- }
-
- return ScheduleVideoUpdateModel.findAll<MScheduleVideoUpdate>(query)
- }
-
- static deleteByVideoId (videoId: number, t: Transaction) {
- const query = {
- where: {
- videoId
- },
- transaction: t
- }
-
- return ScheduleVideoUpdateModel.destroy(query)
- }
-
- toFormattedJSON (this: MScheduleVideoUpdateFormattable) {
- return {
- updateAt: this.updateAt,
- privacy: this.privacy || undefined
- }
- }
- }
|