diff options
Diffstat (limited to 'server/lib/job-queue/handlers/video-live-ending.ts')
-rw-r--r-- | server/lib/job-queue/handlers/video-live-ending.ts | 84 |
1 files changed, 72 insertions, 12 deletions
diff --git a/server/lib/job-queue/handlers/video-live-ending.ts b/server/lib/job-queue/handlers/video-live-ending.ts index 1a58a9f7e..1a9a36129 100644 --- a/server/lib/job-queue/handlers/video-live-ending.ts +++ b/server/lib/job-queue/handlers/video-live-ending.ts | |||
@@ -1,24 +1,89 @@ | |||
1 | import * as Bull from 'bull' | 1 | import * as Bull from 'bull' |
2 | import { readdir, remove } from 'fs-extra' | 2 | import { readdir, remove } from 'fs-extra' |
3 | import { join } from 'path' | 3 | import { join } from 'path' |
4 | import { getVideoFileResolution, hlsPlaylistToFragmentedMP4 } from '@server/helpers/ffmpeg-utils' | ||
4 | import { getHLSDirectory } from '@server/lib/video-paths' | 5 | import { getHLSDirectory } from '@server/lib/video-paths' |
6 | import { generateHlsPlaylist } from '@server/lib/video-transcoding' | ||
5 | import { VideoModel } from '@server/models/video/video' | 7 | import { VideoModel } from '@server/models/video/video' |
8 | import { VideoLiveModel } from '@server/models/video/video-live' | ||
6 | import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist' | 9 | import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist' |
7 | import { VideoLiveEndingPayload } from '@shared/models' | 10 | import { MStreamingPlaylist, MVideo } from '@server/types/models' |
11 | import { VideoLiveEndingPayload, VideoState } from '@shared/models' | ||
8 | import { logger } from '../../../helpers/logger' | 12 | import { logger } from '../../../helpers/logger' |
9 | 13 | ||
10 | async function processVideoLiveEnding (job: Bull.Job) { | 14 | async function processVideoLiveEnding (job: Bull.Job) { |
11 | const payload = job.data as VideoLiveEndingPayload | 15 | const payload = job.data as VideoLiveEndingPayload |
12 | 16 | ||
13 | const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(payload.videoId) | 17 | const video = await VideoModel.load(payload.videoId) |
14 | if (!video) { | 18 | const live = await VideoLiveModel.loadByVideoId(payload.videoId) |
15 | logger.warn('Video live %d does not exist anymore. Cannot cleanup.', payload.videoId) | 19 | |
20 | const streamingPlaylist = await VideoStreamingPlaylistModel.loadHLSPlaylistByVideo(video.id) | ||
21 | if (!video || !streamingPlaylist || !live) { | ||
22 | logger.warn('Video live %d does not exist anymore. Cannot process live ending.', payload.videoId) | ||
16 | return | 23 | return |
17 | } | 24 | } |
18 | 25 | ||
19 | const streamingPlaylist = await VideoStreamingPlaylistModel.loadHLSPlaylistByVideo(video.id) | 26 | if (live.saveReplay !== true) { |
27 | return cleanupLive(video, streamingPlaylist) | ||
28 | } | ||
29 | |||
30 | return saveLive(video, streamingPlaylist) | ||
31 | } | ||
32 | |||
33 | // --------------------------------------------------------------------------- | ||
34 | |||
35 | export { | ||
36 | processVideoLiveEnding | ||
37 | } | ||
38 | |||
39 | // --------------------------------------------------------------------------- | ||
40 | |||
41 | async function saveLive (video: MVideo, streamingPlaylist: MStreamingPlaylist) { | ||
42 | const videoFiles = await streamingPlaylist.get('VideoFiles') | ||
43 | const hlsDirectory = getHLSDirectory(video, false) | ||
44 | |||
45 | for (const videoFile of videoFiles) { | ||
46 | const playlistPath = join(hlsDirectory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(videoFile.resolution)) | ||
47 | |||
48 | const mp4TmpName = buildMP4TmpName(videoFile.resolution) | ||
49 | await hlsPlaylistToFragmentedMP4(playlistPath, mp4TmpName) | ||
50 | } | ||
51 | |||
52 | await cleanupLiveFiles(hlsDirectory) | ||
53 | |||
54 | video.isLive = false | ||
55 | video.state = VideoState.TO_TRANSCODE | ||
56 | await video.save() | ||
57 | |||
58 | const videoWithFiles = await VideoModel.loadWithFiles(video.id) | ||
59 | |||
60 | for (const videoFile of videoFiles) { | ||
61 | const videoInputPath = buildMP4TmpName(videoFile.resolution) | ||
62 | const { isPortraitMode } = await getVideoFileResolution(videoInputPath) | ||
63 | |||
64 | await generateHlsPlaylist({ | ||
65 | video: videoWithFiles, | ||
66 | videoInputPath, | ||
67 | resolution: videoFile.resolution, | ||
68 | copyCodecs: true, | ||
69 | isPortraitMode | ||
70 | }) | ||
71 | } | ||
72 | |||
73 | video.state = VideoState.PUBLISHED | ||
74 | await video.save() | ||
75 | } | ||
76 | |||
77 | async function cleanupLive (video: MVideo, streamingPlaylist: MStreamingPlaylist) { | ||
20 | const hlsDirectory = getHLSDirectory(video, false) | 78 | const hlsDirectory = getHLSDirectory(video, false) |
21 | 79 | ||
80 | await cleanupLiveFiles(hlsDirectory) | ||
81 | |||
82 | streamingPlaylist.destroy() | ||
83 | .catch(err => logger.error('Cannot remove live streaming playlist.', { err })) | ||
84 | } | ||
85 | |||
86 | async function cleanupLiveFiles (hlsDirectory: string) { | ||
22 | const files = await readdir(hlsDirectory) | 87 | const files = await readdir(hlsDirectory) |
23 | 88 | ||
24 | for (const filename of files) { | 89 | for (const filename of files) { |
@@ -35,13 +100,8 @@ async function processVideoLiveEnding (job: Bull.Job) { | |||
35 | .catch(err => logger.error('Cannot remove %s.', p, { err })) | 100 | .catch(err => logger.error('Cannot remove %s.', p, { err })) |
36 | } | 101 | } |
37 | } | 102 | } |
38 | |||
39 | streamingPlaylist.destroy() | ||
40 | .catch(err => logger.error('Cannot remove live streaming playlist.', { err })) | ||
41 | } | 103 | } |
42 | 104 | ||
43 | // --------------------------------------------------------------------------- | 105 | function buildMP4TmpName (resolution: number) { |
44 | 106 | return resolution + 'tmp.mp4' | |
45 | export { | ||
46 | processVideoLiveEnding | ||
47 | } | 107 | } |