X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=shared%2Fserver-commands%2Fvideos%2Fstreaming-playlists-command.ts;h=87aacc5f69ff2969d67c656ea644b9a4186a9e94;hb=a63943feaeae0fa5f66a06b676de558b86f03299;hp=25e446e729b2c55c3a65c0d5536114286454d6de;hpb=cea2fd90ddb3bf57c2fed77128938d12d4c2be6b;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/server-commands/videos/streaming-playlists-command.ts b/shared/server-commands/videos/streaming-playlists-command.ts index 25e446e72..87aacc5f6 100644 --- a/shared/server-commands/videos/streaming-playlists-command.ts +++ b/shared/server-commands/videos/streaming-playlists-command.ts @@ -7,25 +7,33 @@ export class StreamingPlaylistsCommand extends AbstractCommand { async get (options: OverrideCommandOptions & { url: string + + videoFileToken?: string + reinjectVideoFileToken?: boolean + withRetry?: boolean // default false currentRetry?: number - }) { - const { withRetry, currentRetry = 1 } = options + }): Promise { + const { videoFileToken, reinjectVideoFileToken, withRetry = false, currentRetry = 1 } = options try { const result = await unwrapTextOrDecode(this.getRawRequest({ ...options, url: options.url, + query: { + videoFileToken, + reinjectVideoFileToken + }, implicitToken: false, defaultExpectedStatus: HttpStatusCode.OK_200 })) return result } catch (err) { - if (!withRetry || currentRetry > 5) throw err + if (!withRetry || currentRetry > 10) throw err - await wait(100) + await wait(250) return this.get({ ...options, @@ -36,29 +44,71 @@ export class StreamingPlaylistsCommand extends AbstractCommand { } } - getFragmentedSegment (options: OverrideCommandOptions & { + async getFragmentedSegment (options: OverrideCommandOptions & { url: string range?: string + + withRetry?: boolean // default false + currentRetry?: number }) { - return unwrapBody(this.getRawRequest({ - ...options, - - url: options.url, - range: options.range, - implicitToken: false, - defaultExpectedStatus: HttpStatusCode.OK_200 - })) + const { withRetry = false, currentRetry = 1 } = options + + try { + const result = await unwrapBody(this.getRawRequest({ + ...options, + + url: options.url, + range: options.range, + implicitToken: false, + responseType: 'application/octet-stream', + defaultExpectedStatus: HttpStatusCode.OK_200 + })) + + return result + } catch (err) { + if (!withRetry || currentRetry > 10) throw err + + await wait(250) + + return this.getFragmentedSegment({ + ...options, + + withRetry, + currentRetry: currentRetry + 1 + }) + } } - getSegmentSha256 (options: OverrideCommandOptions & { + async getSegmentSha256 (options: OverrideCommandOptions & { url: string + + withRetry?: boolean // default false + currentRetry?: number }) { - return unwrapBodyOrDecodeToJSON<{ [ id: string ]: string }>(this.getRawRequest({ - ...options, + const { withRetry = false, currentRetry = 1 } = options + + try { + const result = await unwrapBodyOrDecodeToJSON<{ [ id: string ]: string }>(this.getRawRequest({ + ...options, - url: options.url, - implicitToken: false, - defaultExpectedStatus: HttpStatusCode.OK_200 - })) + url: options.url, + contentType: 'application/json', + implicitToken: false, + defaultExpectedStatus: HttpStatusCode.OK_200 + })) + + return result + } catch (err) { + if (!withRetry || currentRetry > 10) throw err + + await wait(250) + + return this.getSegmentSha256({ + ...options, + + withRetry, + currentRetry: currentRetry + 1 + }) + } } }