2017-07-23 14:49:52 +02:00
|
|
|
import './embed.scss'
|
2020-06-26 08:37:26 +02:00
|
|
|
import videojs from 'video.js'
|
2020-08-06 15:25:19 +02:00
|
|
|
import { objectToUrlEncoded, peertubeLocalStorage } from '@root-helpers/index'
|
|
|
|
import { Tokens } from '@root-helpers/users'
|
2020-08-06 14:58:01 +02:00
|
|
|
import { peertubeTranslate } from '../../../../shared/core-utils/i18n'
|
2019-12-17 11:20:24 +01:00
|
|
|
import {
|
|
|
|
ResultList,
|
|
|
|
ServerConfig,
|
2020-06-26 08:37:26 +02:00
|
|
|
UserRefreshToken,
|
|
|
|
VideoCaption,
|
2020-08-03 18:06:49 +02:00
|
|
|
VideoDetails,
|
2020-06-26 08:37:26 +02:00
|
|
|
VideoStreamingPlaylistType
|
|
|
|
} from '../../../../shared/models'
|
|
|
|
import { P2PMediaLoaderOptions, PeertubePlayerManagerOptions, PlayerMode } from '../../assets/player/peertube-player-manager'
|
2020-02-03 13:33:42 +01:00
|
|
|
import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings'
|
2020-06-26 08:37:26 +02:00
|
|
|
import { TranslationsManager } from '../../assets/player/translations-manager'
|
|
|
|
import { PeerTubeEmbedApi } from './embed-api'
|
2020-02-03 13:33:42 +01:00
|
|
|
|
|
|
|
type Translations = { [ id: string ]: string }
|
2017-07-23 14:49:52 +02:00
|
|
|
|
2019-06-11 15:59:10 +02:00
|
|
|
export class PeerTubeEmbed {
|
2018-07-10 18:02:30 +02:00
|
|
|
videoElement: HTMLVideoElement
|
2020-04-17 11:20:12 +02:00
|
|
|
player: videojs.Player
|
2018-07-10 18:02:30 +02:00
|
|
|
api: PeerTubeEmbedApi = null
|
2018-12-17 14:14:54 +01:00
|
|
|
autoplay: boolean
|
|
|
|
controls: boolean
|
|
|
|
muted: boolean
|
|
|
|
loop: boolean
|
|
|
|
subtitle: string
|
2018-07-10 18:02:30 +02:00
|
|
|
enableApi = false
|
2018-07-16 16:13:35 +02:00
|
|
|
startTime: number | string = 0
|
2019-03-07 17:06:00 +01:00
|
|
|
stopTime: number | string
|
2019-06-11 15:59:10 +02:00
|
|
|
|
|
|
|
title: boolean
|
|
|
|
warningTitle: boolean
|
2020-07-31 17:03:57 +02:00
|
|
|
peertubeLink: boolean
|
2019-06-11 15:59:10 +02:00
|
|
|
bigPlayBackgroundColor: string
|
|
|
|
foregroundColor: string
|
|
|
|
|
2019-01-24 10:16:30 +01:00
|
|
|
mode: PlayerMode
|
2018-07-10 18:02:30 +02:00
|
|
|
scope = 'peertube'
|
|
|
|
|
2020-08-06 15:25:19 +02:00
|
|
|
userTokens: Tokens
|
2020-07-02 16:30:33 +02:00
|
|
|
headers = new Headers()
|
2020-08-03 18:06:49 +02:00
|
|
|
LOCAL_STORAGE_OAUTH_CLIENT_KEYS = {
|
|
|
|
CLIENT_ID: 'client_id',
|
|
|
|
CLIENT_SECRET: 'client_secret'
|
|
|
|
}
|
2020-07-02 16:30:33 +02:00
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
static async main () {
|
2018-03-30 17:40:00 +02:00
|
|
|
const videoContainerId = 'video-container'
|
2018-07-10 17:47:56 +02:00
|
|
|
const embed = new PeerTubeEmbed(videoContainerId)
|
|
|
|
await embed.init()
|
|
|
|
}
|
2018-07-10 18:02:30 +02:00
|
|
|
|
|
|
|
constructor (private videoContainerId: string) {
|
|
|
|
this.videoElement = document.getElementById(videoContainerId) as HTMLVideoElement
|
|
|
|
}
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
getVideoUrl (id: string) {
|
|
|
|
return window.location.origin + '/api/v1/videos/' + id
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2020-08-03 18:06:49 +02:00
|
|
|
refreshFetch (url: string, options?: Object) {
|
|
|
|
return fetch(url, options)
|
|
|
|
.then((res: Response) => {
|
|
|
|
if (res.status !== 401) return res
|
|
|
|
|
|
|
|
// 401 unauthorized is not catch-ed, but then-ed
|
|
|
|
const error = res
|
|
|
|
|
|
|
|
const refreshingTokenPromise = new Promise((resolve, reject) => {
|
|
|
|
const clientId: string = peertubeLocalStorage.getItem(this.LOCAL_STORAGE_OAUTH_CLIENT_KEYS.CLIENT_ID)
|
|
|
|
const clientSecret: string = peertubeLocalStorage.getItem(this.LOCAL_STORAGE_OAUTH_CLIENT_KEYS.CLIENT_SECRET)
|
|
|
|
const headers = new Headers()
|
|
|
|
headers.set('Content-Type', 'application/x-www-form-urlencoded')
|
|
|
|
const data = {
|
2020-08-06 15:25:19 +02:00
|
|
|
refresh_token: this.userTokens.refreshToken,
|
2020-08-03 18:06:49 +02:00
|
|
|
client_id: clientId,
|
|
|
|
client_secret: clientSecret,
|
|
|
|
response_type: 'code',
|
|
|
|
grant_type: 'refresh_token'
|
|
|
|
}
|
|
|
|
|
|
|
|
fetch('/api/v1/users/token', {
|
|
|
|
headers,
|
|
|
|
method: 'POST',
|
|
|
|
body: objectToUrlEncoded(data)
|
|
|
|
})
|
|
|
|
.then(res => res.json())
|
|
|
|
.then((obj: UserRefreshToken) => {
|
2020-08-06 15:25:19 +02:00
|
|
|
this.userTokens.accessToken = obj.access_token
|
|
|
|
this.userTokens.refreshToken = obj.refresh_token
|
|
|
|
this.userTokens.save()
|
|
|
|
|
|
|
|
this.setHeadersFromTokens()
|
|
|
|
|
2020-08-03 18:06:49 +02:00
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
.catch((refreshTokenError: any) => {
|
|
|
|
reject(refreshTokenError)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
return refreshingTokenPromise
|
|
|
|
.catch(() => {
|
|
|
|
// If refreshing fails, continue with original error
|
|
|
|
throw error
|
|
|
|
})
|
|
|
|
.then(() => fetch(url, {
|
|
|
|
...options,
|
|
|
|
headers: this.headers
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
loadVideoInfo (videoId: string): Promise<Response> {
|
2020-08-03 18:06:49 +02:00
|
|
|
return this.refreshFetch(this.getVideoUrl(videoId), { headers: this.headers })
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-13 18:21:19 +02:00
|
|
|
loadVideoCaptions (videoId: string): Promise<Response> {
|
2020-08-03 18:06:49 +02:00
|
|
|
return fetch(this.getVideoUrl(videoId) + '/captions')
|
2018-07-13 18:21:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 09:23:18 +02:00
|
|
|
loadConfig (): Promise<Response> {
|
|
|
|
return fetch('/api/v1/config')
|
|
|
|
}
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
removeElement (element: HTMLElement) {
|
|
|
|
element.parentElement.removeChild(element)
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2020-02-03 13:33:42 +01:00
|
|
|
displayError (text: string, translations?: Translations) {
|
2018-07-10 17:47:56 +02:00
|
|
|
// Remove video element
|
2018-07-16 19:15:20 +02:00
|
|
|
if (this.videoElement) this.removeElement(this.videoElement)
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
const translatedText = peertubeTranslate(text, translations)
|
|
|
|
const translatedSorry = peertubeTranslate('Sorry', translations)
|
|
|
|
|
|
|
|
document.title = translatedSorry + ' - ' + translatedText
|
2018-07-10 17:47:56 +02:00
|
|
|
|
|
|
|
const errorBlock = document.getElementById('error-block')
|
|
|
|
errorBlock.style.display = 'flex'
|
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
const errorTitle = document.getElementById('error-title')
|
|
|
|
errorTitle.innerHTML = peertubeTranslate('Sorry', translations)
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
const errorText = document.getElementById('error-content')
|
2019-01-14 17:45:02 +01:00
|
|
|
errorText.innerHTML = translatedText
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2020-02-03 13:33:42 +01:00
|
|
|
videoNotFound (translations?: Translations) {
|
2018-07-10 17:47:56 +02:00
|
|
|
const text = 'This video does not exist.'
|
2019-01-14 17:45:02 +01:00
|
|
|
this.displayError(text, translations)
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2020-02-03 13:33:42 +01:00
|
|
|
videoFetchError (translations?: Translations) {
|
2018-07-10 17:47:56 +02:00
|
|
|
const text = 'We cannot fetch the video. Please try again later.'
|
2019-01-14 17:45:02 +01:00
|
|
|
this.displayError(text, translations)
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2018-12-17 14:14:54 +01:00
|
|
|
getParamToggle (params: URLSearchParams, name: string, defaultValue?: boolean) {
|
2018-07-10 17:47:56 +02:00
|
|
|
return params.has(name) ? (params.get(name) === '1' || params.get(name) === 'true') : defaultValue
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-12-17 14:14:54 +01:00
|
|
|
getParamString (params: URLSearchParams, name: string, defaultValue?: string) {
|
2018-07-10 17:47:56 +02:00
|
|
|
return params.has(name) ? params.get(name) : defaultValue
|
|
|
|
}
|
2018-03-27 10:34:40 +02:00
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
async init () {
|
2018-07-10 17:47:56 +02:00
|
|
|
try {
|
2020-08-06 15:25:19 +02:00
|
|
|
this.userTokens = Tokens.load()
|
2018-07-10 17:47:56 +02:00
|
|
|
await this.initCore()
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
private initializeApi () {
|
|
|
|
if (!this.enableApi) return
|
|
|
|
|
|
|
|
this.api = new PeerTubeEmbedApi(this)
|
|
|
|
this.api.initialize()
|
|
|
|
}
|
|
|
|
|
2019-11-22 17:16:11 +01:00
|
|
|
private loadParams (video: VideoDetails) {
|
2018-03-27 10:34:40 +02:00
|
|
|
try {
|
2019-04-02 18:30:26 +02:00
|
|
|
const params = new URL(window.location.toString()).searchParams
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-04-10 09:23:18 +02:00
|
|
|
this.autoplay = this.getParamToggle(params, 'autoplay', false)
|
|
|
|
this.controls = this.getParamToggle(params, 'controls', true)
|
2020-02-27 10:45:16 +01:00
|
|
|
this.muted = this.getParamToggle(params, 'muted', undefined)
|
2019-04-10 09:23:18 +02:00
|
|
|
this.loop = this.getParamToggle(params, 'loop', false)
|
2019-06-11 15:59:10 +02:00
|
|
|
this.title = this.getParamToggle(params, 'title', true)
|
2018-07-10 17:47:56 +02:00
|
|
|
this.enableApi = this.getParamToggle(params, 'api', this.enableApi)
|
2019-06-11 15:59:10 +02:00
|
|
|
this.warningTitle = this.getParamToggle(params, 'warningTitle', true)
|
2020-07-31 17:03:57 +02:00
|
|
|
this.peertubeLink = this.getParamToggle(params, 'peertubeLink', true)
|
2018-04-05 17:06:59 +02:00
|
|
|
|
2018-12-17 14:14:54 +01:00
|
|
|
this.scope = this.getParamString(params, 'scope', this.scope)
|
|
|
|
this.subtitle = this.getParamString(params, 'subtitle')
|
|
|
|
this.startTime = this.getParamString(params, 'start')
|
2019-03-07 17:06:00 +01:00
|
|
|
this.stopTime = this.getParamString(params, 'stop')
|
2019-01-24 10:16:30 +01:00
|
|
|
|
2019-06-11 15:59:10 +02:00
|
|
|
this.bigPlayBackgroundColor = this.getParamString(params, 'bigPlayBackgroundColor')
|
|
|
|
this.foregroundColor = this.getParamString(params, 'foregroundColor')
|
|
|
|
|
2019-11-22 17:16:11 +01:00
|
|
|
const modeParam = this.getParamString(params, 'mode')
|
|
|
|
|
|
|
|
if (modeParam) {
|
|
|
|
if (modeParam === 'p2p-media-loader') this.mode = 'p2p-media-loader'
|
|
|
|
else this.mode = 'webtorrent'
|
|
|
|
} else {
|
|
|
|
if (Array.isArray(video.streamingPlaylists) && video.streamingPlaylists.length !== 0) this.mode = 'p2p-media-loader'
|
|
|
|
else this.mode = 'webtorrent'
|
|
|
|
}
|
2018-03-27 10:34:40 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error('Cannot get params from URL.', err)
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
private async initCore () {
|
2018-11-15 16:57:59 +01:00
|
|
|
const urlParts = window.location.pathname.split('/')
|
|
|
|
const videoId = urlParts[ urlParts.length - 1 ]
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2020-08-06 15:25:19 +02:00
|
|
|
if (this.userTokens) this.setHeadersFromTokens()
|
2020-07-02 16:30:33 +02:00
|
|
|
|
2019-12-17 11:20:24 +01:00
|
|
|
const videoPromise = this.loadVideoInfo(videoId)
|
|
|
|
const captionsPromise = this.loadVideoCaptions(videoId)
|
|
|
|
const configPromise = this.loadConfig()
|
|
|
|
|
|
|
|
const translationsPromise = TranslationsManager.getServerTranslations(window.location.origin, navigator.language)
|
|
|
|
const videoResponse = await videoPromise
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2018-07-13 18:21:19 +02:00
|
|
|
if (!videoResponse.ok) {
|
2019-12-17 11:20:24 +01:00
|
|
|
const serverTranslations = await translationsPromise
|
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
if (videoResponse.status === 404) return this.videoNotFound(serverTranslations)
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
return this.videoFetchError(serverTranslations)
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2018-07-13 18:21:19 +02:00
|
|
|
const videoInfo: VideoDetails = await videoResponse.json()
|
2019-12-17 11:20:24 +01:00
|
|
|
this.loadPlaceholder(videoInfo)
|
|
|
|
|
|
|
|
const PeertubePlayerManagerModulePromise = import('../../assets/player/peertube-player-manager')
|
|
|
|
|
|
|
|
const promises = [ translationsPromise, captionsPromise, configPromise, PeertubePlayerManagerModulePromise ]
|
|
|
|
const [ serverTranslations, captionsResponse, configResponse, PeertubePlayerManagerModule ] = await Promise.all(promises)
|
|
|
|
|
|
|
|
const PeertubePlayerManager = PeertubePlayerManagerModule.PeertubePlayerManager
|
2019-06-11 15:59:10 +02:00
|
|
|
const videoCaptions = await this.buildCaptions(serverTranslations, captionsResponse)
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-11-22 17:16:11 +01:00
|
|
|
this.loadParams(videoInfo)
|
2018-03-27 10:34:40 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
const options: PeertubePlayerManagerOptions = {
|
|
|
|
common: {
|
|
|
|
autoplay: this.autoplay,
|
|
|
|
controls: this.controls,
|
|
|
|
muted: this.muted,
|
|
|
|
loop: this.loop,
|
|
|
|
captions: videoCaptions.length !== 0,
|
|
|
|
startTime: this.startTime,
|
2019-03-07 17:06:00 +01:00
|
|
|
stopTime: this.stopTime,
|
2019-01-23 15:36:45 +01:00
|
|
|
subtitle: this.subtitle,
|
|
|
|
|
|
|
|
videoCaptions,
|
2020-07-02 15:10:06 +02:00
|
|
|
inactivityTimeout: 2500,
|
2019-01-23 15:36:45 +01:00
|
|
|
videoViewUrl: this.getVideoUrl(videoId) + '/views',
|
2019-02-06 10:39:50 +01:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
playerElement: this.videoElement,
|
2019-02-06 10:39:50 +01:00
|
|
|
onPlayerElementChange: (element: HTMLVideoElement) => this.videoElement = element,
|
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
videoDuration: videoInfo.duration,
|
|
|
|
enableHotkeys: true,
|
2020-07-31 17:03:57 +02:00
|
|
|
peertubeLink: this.peertubeLink,
|
2019-01-23 15:36:45 +01:00
|
|
|
poster: window.location.origin + videoInfo.previewPath,
|
2019-12-05 17:06:18 +01:00
|
|
|
theaterButton: false,
|
2019-01-23 15:36:45 +01:00
|
|
|
|
|
|
|
serverUrl: window.location.origin,
|
|
|
|
language: navigator.language,
|
|
|
|
embedUrl: window.location.origin + videoInfo.embedPath
|
2019-02-06 10:39:50 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
webtorrent: {
|
|
|
|
videoFiles: videoInfo.files
|
2019-01-23 15:36:45 +01:00
|
|
|
}
|
2019-01-24 10:16:30 +01:00
|
|
|
}
|
2019-01-23 15:36:45 +01:00
|
|
|
|
2019-01-24 10:16:30 +01:00
|
|
|
if (this.mode === 'p2p-media-loader') {
|
2019-01-29 08:37:25 +01:00
|
|
|
const hlsPlaylist = videoInfo.streamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
|
|
|
|
|
2019-01-24 10:16:30 +01:00
|
|
|
Object.assign(options, {
|
|
|
|
p2pMediaLoader: {
|
2019-01-29 08:37:25 +01:00
|
|
|
playlistUrl: hlsPlaylist.playlistUrl,
|
|
|
|
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
|
|
|
|
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
|
|
|
|
trackerAnnounce: videoInfo.trackerUrls,
|
2019-11-21 17:01:24 +01:00
|
|
|
videoFiles: hlsPlaylist.files
|
2019-01-29 08:37:25 +01:00
|
|
|
} as P2PMediaLoaderOptions
|
2019-01-24 10:16:30 +01:00
|
|
|
})
|
2019-01-23 15:36:45 +01:00
|
|
|
}
|
2017-07-23 14:49:52 +02:00
|
|
|
|
2020-04-17 11:20:12 +02:00
|
|
|
this.player = await PeertubePlayerManager.initialize(this.mode, options, (player: videojs.Player) => this.player = player)
|
2019-01-23 15:36:45 +01:00
|
|
|
this.player.on('customError', (event: any, data: any) => this.handleError(data.err, serverTranslations))
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
window[ 'videojsPlayer' ] = this.player
|
2018-07-10 18:02:30 +02:00
|
|
|
|
2019-06-11 15:59:10 +02:00
|
|
|
this.buildCSS()
|
|
|
|
|
|
|
|
await this.buildDock(videoInfo, configResponse)
|
|
|
|
|
|
|
|
this.initializeApi()
|
2019-12-17 11:20:24 +01:00
|
|
|
|
|
|
|
this.removePlaceholder()
|
2019-06-11 15:59:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private handleError (err: Error, translations?: { [ id: string ]: string }) {
|
|
|
|
if (err.message.indexOf('from xs param') !== -1) {
|
|
|
|
this.player.dispose()
|
|
|
|
this.videoElement = null
|
|
|
|
this.displayError('This video is not available because the remote instance is not responding.', translations)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private async buildDock (videoInfo: VideoDetails, configResponse: Response) {
|
2020-02-03 13:33:42 +01:00
|
|
|
if (!this.controls) return
|
2019-06-11 15:59:10 +02:00
|
|
|
|
2020-02-26 15:26:02 +01:00
|
|
|
// On webtorrent fallback, player may have been disposed
|
|
|
|
if (!this.player.player_) return
|
2019-06-11 15:59:10 +02:00
|
|
|
|
2020-02-03 13:33:42 +01:00
|
|
|
const title = this.title ? videoInfo.name : undefined
|
2019-04-10 09:23:18 +02:00
|
|
|
|
2020-02-03 13:33:42 +01:00
|
|
|
const config: ServerConfig = await configResponse.json()
|
|
|
|
const description = config.tracker.enabled && this.warningTitle
|
|
|
|
? '<span class="text">' + peertubeTranslate('Watching this video may reveal your IP address to others.') + '</span>'
|
|
|
|
: undefined
|
|
|
|
|
|
|
|
this.player.dock({
|
|
|
|
title,
|
|
|
|
description
|
|
|
|
})
|
2019-06-11 15:59:10 +02:00
|
|
|
}
|
2018-07-13 18:21:19 +02:00
|
|
|
|
2019-06-11 15:59:10 +02:00
|
|
|
private buildCSS () {
|
|
|
|
const body = document.getElementById('custom-css')
|
|
|
|
|
|
|
|
if (this.bigPlayBackgroundColor) {
|
|
|
|
body.style.setProperty('--embedBigPlayBackgroundColor', this.bigPlayBackgroundColor)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.foregroundColor) {
|
|
|
|
body.style.setProperty('--embedForegroundColor', this.foregroundColor)
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
2018-07-16 19:15:20 +02:00
|
|
|
|
2019-06-11 15:59:10 +02:00
|
|
|
private async buildCaptions (serverTranslations: any, captionsResponse: Response): Promise<VideoJSCaption[]> {
|
|
|
|
if (captionsResponse.ok) {
|
|
|
|
const { data } = (await captionsResponse.json()) as ResultList<VideoCaption>
|
|
|
|
|
|
|
|
return data.map(c => ({
|
|
|
|
label: peertubeTranslate(c.language.label, serverTranslations),
|
|
|
|
language: c.language.id,
|
|
|
|
src: window.location.origin + c.captionPath
|
|
|
|
}))
|
2018-07-16 19:15:20 +02:00
|
|
|
}
|
2019-06-11 15:59:10 +02:00
|
|
|
|
|
|
|
return []
|
2018-07-16 19:15:20 +02:00
|
|
|
}
|
2019-12-17 11:20:24 +01:00
|
|
|
|
|
|
|
private loadPlaceholder (video: VideoDetails) {
|
|
|
|
const placeholder = this.getPlaceholderElement()
|
|
|
|
|
|
|
|
const url = window.location.origin + video.previewPath
|
|
|
|
placeholder.style.backgroundImage = `url("${url}")`
|
|
|
|
}
|
|
|
|
|
|
|
|
private removePlaceholder () {
|
|
|
|
const placeholder = this.getPlaceholderElement()
|
|
|
|
placeholder.parentElement.removeChild(placeholder)
|
|
|
|
}
|
|
|
|
|
|
|
|
private getPlaceholderElement () {
|
|
|
|
return document.getElementById('placeholder-preview')
|
|
|
|
}
|
2020-08-06 15:25:19 +02:00
|
|
|
|
|
|
|
private setHeadersFromTokens () {
|
|
|
|
this.headers.set('Authorization', `${this.userTokens.tokenType} ${this.userTokens.accessToken}`)
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PeerTubeEmbed.main()
|
2018-07-10 18:02:30 +02:00
|
|
|
.catch(err => console.error('Cannot init embed.', err))
|