]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/server-commands/videos/live-command.ts
Fix live tests
[github/Chocobozzz/PeerTube.git] / shared / server-commands / videos / live-command.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import { readdir } from 'fs-extra'
4 import { join } from 'path'
5 import { omit, wait } from '@shared/core-utils'
6 import {
7 HttpStatusCode,
8 LiveVideo,
9 LiveVideoCreate,
10 LiveVideoSession,
11 LiveVideoUpdate,
12 ResultList,
13 VideoCreateResult,
14 VideoDetails,
15 VideoState
16 } from '@shared/models'
17 import { unwrapBody } from '../requests'
18 import { ObjectStorageCommand, PeerTubeServer } from '../server'
19 import { AbstractCommand, OverrideCommandOptions } from '../shared'
20 import { sendRTMPStream, testFfmpegStreamError } from './live'
21
22 export class LiveCommand extends AbstractCommand {
23
24 get (options: OverrideCommandOptions & {
25 videoId: number | string
26 }) {
27 const path = '/api/v1/videos/live'
28
29 return this.getRequestBody<LiveVideo>({
30 ...options,
31
32 path: path + '/' + options.videoId,
33 implicitToken: true,
34 defaultExpectedStatus: HttpStatusCode.OK_200
35 })
36 }
37
38 // ---------------------------------------------------------------------------
39
40 listSessions (options: OverrideCommandOptions & {
41 videoId: number | string
42 }) {
43 const path = `/api/v1/videos/live/${options.videoId}/sessions`
44
45 return this.getRequestBody<ResultList<LiveVideoSession>>({
46 ...options,
47
48 path,
49 implicitToken: true,
50 defaultExpectedStatus: HttpStatusCode.OK_200
51 })
52 }
53
54 async findLatestSession (options: OverrideCommandOptions & {
55 videoId: number | string
56 }) {
57 const { data: sessions } = await this.listSessions(options)
58
59 return sessions[sessions.length - 1]
60 }
61
62 getReplaySession (options: OverrideCommandOptions & {
63 videoId: number | string
64 }) {
65 const path = `/api/v1/videos/${options.videoId}/live-session`
66
67 return this.getRequestBody<LiveVideoSession>({
68 ...options,
69
70 path,
71 implicitToken: true,
72 defaultExpectedStatus: HttpStatusCode.OK_200
73 })
74 }
75
76 // ---------------------------------------------------------------------------
77
78 update (options: OverrideCommandOptions & {
79 videoId: number | string
80 fields: LiveVideoUpdate
81 }) {
82 const { videoId, fields } = options
83 const path = '/api/v1/videos/live'
84
85 return this.putBodyRequest({
86 ...options,
87
88 path: path + '/' + videoId,
89 fields,
90 implicitToken: true,
91 defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
92 })
93 }
94
95 async create (options: OverrideCommandOptions & {
96 fields: LiveVideoCreate
97 }) {
98 const { fields } = options
99 const path = '/api/v1/videos/live'
100
101 const attaches: any = {}
102 if (fields.thumbnailfile) attaches.thumbnailfile = fields.thumbnailfile
103 if (fields.previewfile) attaches.previewfile = fields.previewfile
104
105 const body = await unwrapBody<{ video: VideoCreateResult }>(this.postUploadRequest({
106 ...options,
107
108 path,
109 attaches,
110 fields: omit(fields, [ 'thumbnailfile', 'previewfile' ]),
111 implicitToken: true,
112 defaultExpectedStatus: HttpStatusCode.OK_200
113 }))
114
115 return body.video
116 }
117
118 // ---------------------------------------------------------------------------
119
120 async sendRTMPStreamInVideo (options: OverrideCommandOptions & {
121 videoId: number | string
122 fixtureName?: string
123 copyCodecs?: boolean
124 }) {
125 const { videoId, fixtureName, copyCodecs } = options
126 const videoLive = await this.get({ videoId })
127
128 return sendRTMPStream({ rtmpBaseUrl: videoLive.rtmpUrl, streamKey: videoLive.streamKey, fixtureName, copyCodecs })
129 }
130
131 async runAndTestStreamError (options: OverrideCommandOptions & {
132 videoId: number | string
133 shouldHaveError: boolean
134 }) {
135 const command = await this.sendRTMPStreamInVideo(options)
136
137 return testFfmpegStreamError(command, options.shouldHaveError)
138 }
139
140 // ---------------------------------------------------------------------------
141
142 waitUntilPublished (options: OverrideCommandOptions & {
143 videoId: number | string
144 }) {
145 const { videoId } = options
146 return this.waitUntilState({ videoId, state: VideoState.PUBLISHED })
147 }
148
149 waitUntilWaiting (options: OverrideCommandOptions & {
150 videoId: number | string
151 }) {
152 const { videoId } = options
153 return this.waitUntilState({ videoId, state: VideoState.WAITING_FOR_LIVE })
154 }
155
156 waitUntilEnded (options: OverrideCommandOptions & {
157 videoId: number | string
158 }) {
159 const { videoId } = options
160 return this.waitUntilState({ videoId, state: VideoState.LIVE_ENDED })
161 }
162
163 async waitUntilSegmentGeneration (options: OverrideCommandOptions & {
164 server: PeerTubeServer
165 videoUUID: string
166 playlistNumber: number
167 segment: number
168 objectStorage: boolean
169 }) {
170 const { server, objectStorage, playlistNumber, segment, videoUUID } = options
171
172 const segmentName = `${playlistNumber}-00000${segment}.ts`
173 const baseUrl = objectStorage
174 ? ObjectStorageCommand.getPlaylistBaseUrl() + 'hls'
175 : server.url + '/static/streaming-playlists/hls'
176
177 let error = true
178
179 while (error) {
180 try {
181 await this.getRawRequest({
182 ...options,
183
184 url: `${baseUrl}/${videoUUID}/${segmentName}`,
185 implicitToken: false,
186 defaultExpectedStatus: HttpStatusCode.OK_200
187 })
188
189 error = false
190 } catch {
191 error = true
192 await wait(100)
193 }
194 }
195 }
196
197 async waitUntilReplacedByReplay (options: OverrideCommandOptions & {
198 videoId: number | string
199 }) {
200 let video: VideoDetails
201
202 do {
203 video = await this.server.videos.getWithToken({ token: options.token, id: options.videoId })
204
205 await wait(500)
206 } while (video.isLive === true || video.state.id !== VideoState.PUBLISHED)
207 }
208
209 // ---------------------------------------------------------------------------
210
211 getSegmentFile (options: OverrideCommandOptions & {
212 videoUUID: string
213 playlistNumber: number
214 segment: number
215 objectStorage?: boolean // default false
216 }) {
217 const { playlistNumber, segment, videoUUID, objectStorage = false } = options
218
219 const segmentName = `${playlistNumber}-00000${segment}.ts`
220 const baseUrl = objectStorage
221 ? ObjectStorageCommand.getPlaylistBaseUrl()
222 : `${this.server.url}/static/streaming-playlists/hls`
223
224 const url = `${baseUrl}/${videoUUID}/${segmentName}`
225
226 return this.getRawRequest({
227 ...options,
228
229 url,
230 implicitToken: false,
231 defaultExpectedStatus: HttpStatusCode.OK_200
232 })
233 }
234
235 getPlaylistFile (options: OverrideCommandOptions & {
236 videoUUID: string
237 playlistName: string
238 objectStorage?: boolean // default false
239 }) {
240 const { playlistName, videoUUID, objectStorage = false } = options
241
242 const baseUrl = objectStorage
243 ? ObjectStorageCommand.getPlaylistBaseUrl()
244 : `${this.server.url}/static/streaming-playlists/hls`
245
246 const url = `${baseUrl}/${videoUUID}/${playlistName}`
247
248 return this.getRawRequest({
249 ...options,
250
251 url,
252 implicitToken: false,
253 defaultExpectedStatus: HttpStatusCode.OK_200
254 })
255 }
256
257 // ---------------------------------------------------------------------------
258
259 async countPlaylists (options: OverrideCommandOptions & {
260 videoUUID: string
261 }) {
262 const basePath = this.server.servers.buildDirectory('streaming-playlists')
263 const hlsPath = join(basePath, 'hls', options.videoUUID)
264
265 const files = await readdir(hlsPath)
266
267 return files.filter(f => f.endsWith('.m3u8')).length
268 }
269
270 private async waitUntilState (options: OverrideCommandOptions & {
271 videoId: number | string
272 state: VideoState
273 }) {
274 let video: VideoDetails
275
276 do {
277 video = await this.server.videos.getWithToken({ token: options.token, id: options.videoId })
278
279 await wait(500)
280 } while (video.state.id !== options.state)
281 }
282 }