]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/server-commands/videos/live-command.ts
Fix e2e tests
[github/Chocobozzz/PeerTube.git] / shared / server-commands / videos / live-command.ts
CommitLineData
4f219914
C
1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3import { readdir } from 'fs-extra'
4import { omit } from 'lodash'
5import { join } from 'path'
c55e3d72 6import { wait } from '@shared/core-utils'
4c7e60bc 7import { HttpStatusCode, LiveVideo, LiveVideoCreate, LiveVideoUpdate, VideoCreateResult, VideoDetails, VideoState } from '@shared/models'
4f219914 8import { unwrapBody } from '../requests'
4f219914
C
9import { AbstractCommand, OverrideCommandOptions } from '../shared'
10import { sendRTMPStream, testFfmpegStreamError } from './live'
4f219914
C
11
12export class LiveCommand extends AbstractCommand {
13
04aed767 14 get (options: OverrideCommandOptions & {
4f219914
C
15 videoId: number | string
16 }) {
17 const path = '/api/v1/videos/live'
18
19 return this.getRequestBody<LiveVideo>({
20 ...options,
21
22 path: path + '/' + options.videoId,
a1637fa1 23 implicitToken: true,
4f219914
C
24 defaultExpectedStatus: HttpStatusCode.OK_200
25 })
26 }
27
04aed767 28 update (options: OverrideCommandOptions & {
4f219914
C
29 videoId: number | string
30 fields: LiveVideoUpdate
31 }) {
32 const { videoId, fields } = options
33 const path = '/api/v1/videos/live'
34
35 return this.putBodyRequest({
36 ...options,
37
38 path: path + '/' + videoId,
39 fields,
a1637fa1 40 implicitToken: true,
4f219914
C
41 defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
42 })
43 }
44
04aed767 45 async create (options: OverrideCommandOptions & {
4f219914
C
46 fields: LiveVideoCreate
47 }) {
48 const { fields } = options
49 const path = '/api/v1/videos/live'
50
51 const attaches: any = {}
52 if (fields.thumbnailfile) attaches.thumbnailfile = fields.thumbnailfile
53 if (fields.previewfile) attaches.previewfile = fields.previewfile
54
55 const body = await unwrapBody<{ video: VideoCreateResult }>(this.postUploadRequest({
56 ...options,
57
58 path,
59 attaches,
60 fields: omit(fields, 'thumbnailfile', 'previewfile'),
a1637fa1 61 implicitToken: true,
4f219914
C
62 defaultExpectedStatus: HttpStatusCode.OK_200
63 }))
64
65 return body.video
66 }
67
68 async sendRTMPStreamInVideo (options: OverrideCommandOptions & {
69 videoId: number | string
70 fixtureName?: string
c826f34a 71 copyCodecs?: boolean
4f219914 72 }) {
c826f34a 73 const { videoId, fixtureName, copyCodecs } = options
04aed767 74 const videoLive = await this.get({ videoId })
4f219914 75
c826f34a 76 return sendRTMPStream({ rtmpBaseUrl: videoLive.rtmpUrl, streamKey: videoLive.streamKey, fixtureName, copyCodecs })
4f219914
C
77 }
78
04aed767 79 async runAndTestStreamError (options: OverrideCommandOptions & {
4f219914
C
80 videoId: number | string
81 shouldHaveError: boolean
82 }) {
83 const command = await this.sendRTMPStreamInVideo(options)
84
85 return testFfmpegStreamError(command, options.shouldHaveError)
86 }
87
04aed767 88 waitUntilPublished (options: OverrideCommandOptions & {
4f219914
C
89 videoId: number | string
90 }) {
91 const { videoId } = options
04aed767 92 return this.waitUntilState({ videoId, state: VideoState.PUBLISHED })
4f219914
C
93 }
94
04aed767 95 waitUntilWaiting (options: OverrideCommandOptions & {
4f219914
C
96 videoId: number | string
97 }) {
98 const { videoId } = options
04aed767 99 return this.waitUntilState({ videoId, state: VideoState.WAITING_FOR_LIVE })
4f219914
C
100 }
101
04aed767 102 waitUntilEnded (options: OverrideCommandOptions & {
4f219914
C
103 videoId: number | string
104 }) {
105 const { videoId } = options
04aed767 106 return this.waitUntilState({ videoId, state: VideoState.LIVE_ENDED })
4f219914
C
107 }
108
04aed767 109 waitUntilSegmentGeneration (options: OverrideCommandOptions & {
4f219914
C
110 videoUUID: string
111 resolution: number
112 segment: number
113 }) {
114 const { resolution, segment, videoUUID } = options
115 const segmentName = `${resolution}-00000${segment}.ts`
116
89d241a7 117 return this.server.servers.waitUntilLog(`${videoUUID}/${segmentName}`, 2, false)
4f219914
C
118 }
119
04aed767 120 async waitUntilSaved (options: OverrideCommandOptions & {
4f219914
C
121 videoId: number | string
122 }) {
123 let video: VideoDetails
124
125 do {
89d241a7 126 video = await this.server.videos.getWithToken({ token: options.token, id: options.videoId })
4f219914
C
127
128 await wait(500)
0305db28 129 } while (video.isLive === true || video.state.id !== VideoState.PUBLISHED)
4f219914
C
130 }
131
04aed767 132 async countPlaylists (options: OverrideCommandOptions & {
4f219914
C
133 videoUUID: string
134 }) {
89d241a7 135 const basePath = this.server.servers.buildDirectory('streaming-playlists')
4f219914
C
136 const hlsPath = join(basePath, 'hls', options.videoUUID)
137
138 const files = await readdir(hlsPath)
139
140 return files.filter(f => f.endsWith('.m3u8')).length
141 }
142
04aed767 143 private async waitUntilState (options: OverrideCommandOptions & {
4f219914
C
144 videoId: number | string
145 state: VideoState
146 }) {
147 let video: VideoDetails
148
149 do {
89d241a7 150 video = await this.server.videos.getWithToken({ token: options.token, id: options.videoId })
4f219914
C
151
152 await wait(500)
153 } while (video.state.id !== options.state)
154 }
155}