aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/assets/player/shared/manager-options/webtorrent-options-builder.ts
blob: b5bdcd4e6b78cc87e2367faa085f687b4db51d0b (plain) (tree)
1
2

                                                                                   
















                                                             
                                                 





                                                           









                                                                                                   










                                                                                                     
import { addQueryParams } from '../../../../../../shared/core-utils'
import { PeertubePlayerManagerOptions, WebtorrentPluginOptions } from '../../types'

export class WebTorrentOptionsBuilder {

  constructor (
    private options: PeertubePlayerManagerOptions,
    private autoPlayValue: any
  ) {

  }

  getPluginOptions () {
    const commonOptions = this.options.common
    const webtorrentOptions = this.options.webtorrent
    const p2pMediaLoaderOptions = this.options.p2pMediaLoader

    const autoplay = this.autoPlayValue === 'play'

    const webtorrent: WebtorrentPluginOptions = {
      autoplay,

      playerRefusedP2P: commonOptions.p2pEnabled === false,
      videoDuration: commonOptions.videoDuration,
      playerElement: commonOptions.playerElement,

      videoFileToken: commonOptions.videoFileToken,

      requiresAuth: commonOptions.requiresAuth,

      buildWebSeedUrls: file => {
        if (!commonOptions.requiresAuth) return []

        return [ addQueryParams(file.fileUrl, { videoFileToken: commonOptions.videoFileToken() }) ]
      },

      videoFiles: webtorrentOptions.videoFiles.length !== 0
        ? webtorrentOptions.videoFiles
        // The WebTorrent plugin won't be able to play these files, but it will fallback to HTTP mode
        : p2pMediaLoaderOptions?.videoFiles || [],

      startTime: commonOptions.startTime
    }

    return { webtorrent }
  }
}