From fd6a74a83594bfb59e28bf9cae71a39884ebcc2f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 11 Jun 2021 14:33:16 +0200 Subject: Refactor schedule update --- server/models/video/schedule-video-update.ts | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) (limited to 'server/models') diff --git a/server/models/video/schedule-video-update.ts b/server/models/video/schedule-video-update.ts index b0952c431..d462c20c7 100644 --- a/server/models/video/schedule-video-update.ts +++ b/server/models/video/schedule-video-update.ts @@ -1,9 +1,9 @@ import { Op, Transaction } from 'sequelize' import { AllowNull, BelongsTo, Column, CreatedAt, Default, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript' -import { MScheduleVideoUpdateFormattable, MScheduleVideoUpdateVideoAll } from '@server/types/models' +import { MScheduleVideoUpdateFormattable, MScheduleVideoUpdate } from '@server/types/models' import { AttributesOnly } from '@shared/core-utils' import { VideoPrivacy } from '../../../shared/models/videos' -import { ScopeNames as VideoScopeNames, VideoModel } from './video' +import { VideoModel } from './video' @Table({ tableName: 'scheduleVideoUpdate', @@ -62,31 +62,17 @@ export class ScheduleVideoUpdateModel extends Model !!res) } - static listVideosToUpdate (t: Transaction) { + static listVideosToUpdate (transaction?: Transaction) { const query = { where: { updateAt: { [Op.lte]: new Date() } }, - include: [ - { - model: VideoModel.scope( - [ - VideoScopeNames.WITH_WEBTORRENT_FILES, - VideoScopeNames.WITH_STREAMING_PLAYLISTS, - VideoScopeNames.WITH_ACCOUNT_DETAILS, - VideoScopeNames.WITH_BLACKLISTED, - VideoScopeNames.WITH_THUMBNAILS, - VideoScopeNames.WITH_TAGS - ] - ) - } - ], - transaction: t + transaction } - return ScheduleVideoUpdateModel.findAll(query) + return ScheduleVideoUpdateModel.findAll(query) } static deleteByVideoId (videoId: number, t: Transaction) { -- cgit v1.2.3