diff options
author | Chocobozzz <me@florianbigard.com> | 2022-09-16 09:37:07 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-09-16 09:37:07 +0200 |
commit | 3204f4d17dec79413a94eae8a71b72e0c7ec7ba5 (patch) | |
tree | b6f5a2c3d6e55676972e671fb0ef429a7bdd975b /server/lib | |
parent | c95fbe65530191d7be22341815ecb743c139396f (diff) | |
download | PeerTube-3204f4d17dec79413a94eae8a71b72e0c7ec7ba5.tar.gz PeerTube-3204f4d17dec79413a94eae8a71b72e0c7ec7ba5.tar.zst PeerTube-3204f4d17dec79413a94eae8a71b72e0c7ec7ba5.zip |
Fix sync import of latest videos
Diffstat (limited to 'server/lib')
-rw-r--r-- | server/lib/job-queue/handlers/video-channel-import.ts | 4 | ||||
-rw-r--r-- | server/lib/sync-channel.ts | 5 | ||||
-rw-r--r-- | server/lib/video-import.ts | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/server/lib/job-queue/handlers/video-channel-import.ts b/server/lib/job-queue/handlers/video-channel-import.ts index 9aaad659e..600292844 100644 --- a/server/lib/job-queue/handlers/video-channel-import.ts +++ b/server/lib/job-queue/handlers/video-channel-import.ts | |||
@@ -5,7 +5,7 @@ import { synchronizeChannel } from '@server/lib/sync-channel' | |||
5 | import { VideoChannelModel } from '@server/models/video/video-channel' | 5 | import { VideoChannelModel } from '@server/models/video/video-channel' |
6 | import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync' | 6 | import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync' |
7 | import { MChannelSync } from '@server/types/models' | 7 | import { MChannelSync } from '@server/types/models' |
8 | import { VideoChannelImportPayload } from '@shared/models' | 8 | import { VideoChannelImportPayload, VideoChannelSyncState } from '@shared/models' |
9 | 9 | ||
10 | export async function processVideoChannelImport (job: Job) { | 10 | export async function processVideoChannelImport (job: Job) { |
11 | const payload = job.data as VideoChannelImportPayload | 11 | const payload = job.data as VideoChannelImportPayload |
@@ -42,5 +42,7 @@ export async function processVideoChannelImport (job: Job) { | |||
42 | }) | 42 | }) |
43 | } catch (err) { | 43 | } catch (err) { |
44 | logger.error(`Failed to import channel ${videoChannel.name}`, { err }) | 44 | logger.error(`Failed to import channel ${videoChannel.name}`, { err }) |
45 | channelSync.state = VideoChannelSyncState.FAILED | ||
46 | await channelSync.save() | ||
45 | } | 47 | } |
46 | } | 48 | } |
diff --git a/server/lib/sync-channel.ts b/server/lib/sync-channel.ts index 3a81daac0..6cd1fc26d 100644 --- a/server/lib/sync-channel.ts +++ b/server/lib/sync-channel.ts | |||
@@ -93,7 +93,10 @@ async function skipImport (channel: MChannel, targetUrl: string, onlyAfter?: Dat | |||
93 | 93 | ||
94 | const videoInfo = await youtubeDL.getInfoForDownload() | 94 | const videoInfo = await youtubeDL.getInfoForDownload() |
95 | 95 | ||
96 | if (videoInfo.originallyPublishedAt.getTime() < onlyAfter.getTime()) { | 96 | const onlyAfterWithoutTime = new Date(onlyAfter) |
97 | onlyAfterWithoutTime.setHours(0, 0, 0) | ||
98 | |||
99 | if (videoInfo.originallyPublishedAtWithoutTime.getTime() >= onlyAfterWithoutTime.getTime()) { | ||
97 | return true | 100 | return true |
98 | } | 101 | } |
99 | } | 102 | } |
diff --git a/server/lib/video-import.ts b/server/lib/video-import.ts index de95116aa..d9da09040 100644 --- a/server/lib/video-import.ts +++ b/server/lib/video-import.ts | |||
@@ -125,7 +125,7 @@ async function buildVideoFromImport ({ channelId, importData, importDataOverride | |||
125 | channelId, | 125 | channelId, |
126 | originallyPublishedAt: importDataOverride?.originallyPublishedAt | 126 | originallyPublishedAt: importDataOverride?.originallyPublishedAt |
127 | ? new Date(importDataOverride?.originallyPublishedAt) | 127 | ? new Date(importDataOverride?.originallyPublishedAt) |
128 | : importData.originallyPublishedAt | 128 | : importData.originallyPublishedAtWithoutTime |
129 | } | 129 | } |
130 | 130 | ||
131 | videoData = await Hooks.wrapObject( | 131 | videoData = await Hooks.wrapObject( |