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 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-08-04 11:42:06 +02:00
|
|
|
VideoPlaylist,
|
|
|
|
VideoPlaylistElement,
|
2020-08-20 11:46:25 +02:00
|
|
|
VideoStreamingPlaylistType,
|
|
|
|
PluginType,
|
|
|
|
ClientHookName
|
2020-06-26 08:37:26 +02:00
|
|
|
} from '../../../../shared/models'
|
2020-12-08 21:16:10 +01:00
|
|
|
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
2020-06-26 08:37:26 +02:00
|
|
|
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'
|
2020-08-20 11:46:25 +02:00
|
|
|
import { Hooks, loadPlugin, runHook } from '../../root-helpers/plugins'
|
|
|
|
import { Tokens } from '../../root-helpers/users'
|
|
|
|
import { peertubeLocalStorage } from '../../root-helpers/peertube-web-storage'
|
|
|
|
import { objectToUrlEncoded } from '../../root-helpers/utils'
|
2020-06-26 08:37:26 +02:00
|
|
|
import { PeerTubeEmbedApi } from './embed-api'
|
2020-08-20 11:46:25 +02:00
|
|
|
import { RegisterClientHelpers } from '../../types/register-client-option.model'
|
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 {
|
2020-08-04 11:42:06 +02:00
|
|
|
playerElement: HTMLVideoElement
|
2020-04-17 11:20:12 +02:00
|
|
|
player: videojs.Player
|
2018-07-10 18:02:30 +02:00
|
|
|
api: PeerTubeEmbedApi = null
|
2020-08-04 11:42:06 +02:00
|
|
|
|
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
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
private translationsPromise: Promise<{ [id: string]: string }>
|
|
|
|
private configPromise: Promise<ServerConfig>
|
|
|
|
private PeertubePlayerManagerModulePromise: Promise<any>
|
|
|
|
|
|
|
|
private playlist: VideoPlaylist
|
|
|
|
private playlistElements: VideoPlaylistElement[]
|
|
|
|
private currentPlaylistElement: VideoPlaylistElement
|
|
|
|
|
|
|
|
private wrapperElement: HTMLElement
|
|
|
|
|
2020-08-20 11:46:25 +02:00
|
|
|
private peertubeHooks: Hooks = {}
|
|
|
|
private loadedScripts = new Set<string>()
|
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
static async main () {
|
2020-08-04 11:42:06 +02:00
|
|
|
const videoContainerId = 'video-wrapper'
|
2018-07-10 17:47:56 +02:00
|
|
|
const embed = new PeerTubeEmbed(videoContainerId)
|
|
|
|
await embed.init()
|
|
|
|
}
|
2018-07-10 18:02:30 +02:00
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
constructor (private videoWrapperId: string) {
|
|
|
|
this.wrapperElement = document.getElementById(this.videoWrapperId)
|
2018-07-10 18:02:30 +02:00
|
|
|
}
|
|
|
|
|
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-10 14:58:32 +02:00
|
|
|
refreshFetch (url: string, options?: RequestInit) {
|
2020-08-03 18:06:49 +02:00
|
|
|
return fetch(url, options)
|
|
|
|
.then((res: Response) => {
|
2020-12-08 21:16:10 +01:00
|
|
|
if (res.status !== HttpStatusCode.UNAUTHORIZED_401) return res
|
2020-08-03 18:06:49 +02:00
|
|
|
|
2021-02-03 11:44:43 +01:00
|
|
|
const refreshingTokenPromise = new Promise<void>((resolve, reject) => {
|
2020-08-03 18:06:49 +02:00
|
|
|
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)
|
2020-08-10 14:58:32 +02:00
|
|
|
|
2020-08-03 18:06:49 +02:00
|
|
|
const headers = new Headers()
|
|
|
|
headers.set('Content-Type', 'application/x-www-form-urlencoded')
|
2020-08-10 14:58:32 +02:00
|
|
|
|
2020-08-03 18:06:49 +02:00
|
|
|
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)
|
2020-08-14 16:53:50 +02:00
|
|
|
}).then(res => {
|
2020-12-08 21:16:10 +01:00
|
|
|
if (res.status === HttpStatusCode.UNAUTHORIZED_401) return undefined
|
2020-08-06 15:25:19 +02:00
|
|
|
|
2020-08-14 16:53:50 +02:00
|
|
|
return res.json()
|
|
|
|
}).then((obj: UserRefreshToken & { code: 'invalid_grant'}) => {
|
|
|
|
if (!obj || obj.code === 'invalid_grant') {
|
|
|
|
Tokens.flush()
|
|
|
|
this.removeTokensFromHeaders()
|
2020-08-06 15:25:19 +02:00
|
|
|
|
2020-08-14 16:53:50 +02:00
|
|
|
return resolve()
|
|
|
|
}
|
|
|
|
|
|
|
|
this.userTokens.accessToken = obj.access_token
|
|
|
|
this.userTokens.refreshToken = obj.refresh_token
|
|
|
|
this.userTokens.save()
|
|
|
|
|
|
|
|
this.setHeadersFromTokens()
|
|
|
|
|
|
|
|
resolve()
|
2020-12-01 10:43:13 +01:00
|
|
|
}).catch((refreshTokenError: any) => {
|
|
|
|
reject(refreshTokenError)
|
2020-08-14 16:53:50 +02:00
|
|
|
})
|
2020-08-03 18:06:49 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return refreshingTokenPromise
|
2020-08-14 16:53:50 +02:00
|
|
|
.catch(() => {
|
|
|
|
Tokens.flush()
|
|
|
|
|
|
|
|
this.removeTokensFromHeaders()
|
|
|
|
}).then(() => fetch(url, {
|
2020-08-03 18:06:49 +02:00
|
|
|
...options,
|
|
|
|
headers: this.headers
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
getPlaylistUrl (id: string) {
|
|
|
|
return window.location.origin + '/api/v1/video-playlists/' + id
|
|
|
|
}
|
|
|
|
|
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-07 09:13:32 +02:00
|
|
|
return this.refreshFetch(this.getVideoUrl(videoId) + '/captions', { headers: this.headers })
|
2018-07-13 18:21:19 +02:00
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
loadPlaylistInfo (playlistId: string): Promise<Response> {
|
2020-08-07 09:13:32 +02:00
|
|
|
return this.refreshFetch(this.getPlaylistUrl(playlistId), { headers: this.headers })
|
2020-08-04 11:42:06 +02:00
|
|
|
}
|
|
|
|
|
2020-08-05 13:46:01 +02:00
|
|
|
loadPlaylistElements (playlistId: string, start = 0): Promise<Response> {
|
|
|
|
const url = new URL(this.getPlaylistUrl(playlistId) + '/videos')
|
|
|
|
url.search = new URLSearchParams({ start: '' + start, count: '100' }).toString()
|
|
|
|
|
2020-08-07 09:13:32 +02:00
|
|
|
return this.refreshFetch(url.toString(), { headers: this.headers })
|
2020-08-04 11:42:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
loadConfig (): Promise<ServerConfig> {
|
2020-08-07 09:13:32 +02:00
|
|
|
return this.refreshFetch('/api/v1/config')
|
2020-08-04 11:42:06 +02:00
|
|
|
.then(res => res.json())
|
2019-04-10 09:23:18 +02:00
|
|
|
}
|
|
|
|
|
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
|
2020-08-04 11:42:06 +02:00
|
|
|
if (this.playerElement) {
|
|
|
|
this.removeElement(this.playerElement)
|
|
|
|
this.playerElement = undefined
|
|
|
|
}
|
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
|
2020-08-05 14:00:36 +02:00
|
|
|
|
|
|
|
this.wrapperElement.style.display = 'none'
|
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
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
playlistNotFound (translations?: Translations) {
|
|
|
|
const text = 'This playlist does not exist.'
|
|
|
|
this.displayError(text, translations)
|
|
|
|
}
|
|
|
|
|
|
|
|
playlistFetchError (translations?: Translations) {
|
|
|
|
const text = 'We cannot fetch the playlist. Please try again later.'
|
|
|
|
this.displayError(text, translations)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-08-05 14:16:39 +02:00
|
|
|
async playNextVideo () {
|
|
|
|
const next = this.getNextPlaylistElement()
|
|
|
|
if (!next) {
|
|
|
|
console.log('Next element not found in playlist.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.currentPlaylistElement = next
|
|
|
|
|
|
|
|
return this.loadVideoAndBuildPlayer(this.currentPlaylistElement.video.uuid)
|
|
|
|
}
|
|
|
|
|
|
|
|
async playPreviousVideo () {
|
|
|
|
const previous = this.getPreviousPlaylistElement()
|
|
|
|
if (!previous) {
|
|
|
|
console.log('Previous element not found in playlist.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.currentPlaylistElement = previous
|
|
|
|
|
|
|
|
await this.loadVideoAndBuildPlayer(this.currentPlaylistElement.video.uuid)
|
|
|
|
}
|
|
|
|
|
|
|
|
getCurrentPosition () {
|
|
|
|
if (!this.currentPlaylistElement) return -1
|
|
|
|
|
|
|
|
return this.currentPlaylistElement.position
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-08-05 13:46:01 +02:00
|
|
|
private async loadAllPlaylistVideos (playlistId: string, baseResult: ResultList<VideoPlaylistElement>) {
|
|
|
|
let elements = baseResult.data
|
|
|
|
let total = baseResult.total
|
|
|
|
let i = 0
|
|
|
|
|
|
|
|
while (total > elements.length && i < 10) {
|
|
|
|
const result = await this.loadPlaylistElements(playlistId, elements.length)
|
|
|
|
|
|
|
|
const json = await result.json() as ResultList<VideoPlaylistElement>
|
|
|
|
total = json.total
|
|
|
|
|
|
|
|
elements = elements.concat(json.data)
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i === 10) {
|
|
|
|
console.error('Cannot fetch all playlists elements, there are too many!')
|
|
|
|
}
|
|
|
|
|
|
|
|
return elements
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
private async loadPlaylist (playlistId: string) {
|
|
|
|
const playlistPromise = this.loadPlaylistInfo(playlistId)
|
|
|
|
const playlistElementsPromise = this.loadPlaylistElements(playlistId)
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2020-08-07 09:13:32 +02:00
|
|
|
let playlistResponse: Response
|
|
|
|
let isResponseOk: boolean
|
2020-08-04 11:42:06 +02:00
|
|
|
|
2020-08-07 09:13:32 +02:00
|
|
|
try {
|
|
|
|
playlistResponse = await playlistPromise
|
2020-12-08 21:16:10 +01:00
|
|
|
isResponseOk = playlistResponse.status === HttpStatusCode.OK_200
|
2020-08-07 09:13:32 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err)
|
|
|
|
isResponseOk = false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isResponseOk) {
|
2020-08-04 11:42:06 +02:00
|
|
|
const serverTranslations = await this.translationsPromise
|
2020-07-02 16:30:33 +02:00
|
|
|
|
2020-12-08 21:16:10 +01:00
|
|
|
if (playlistResponse?.status === HttpStatusCode.NOT_FOUND_404) {
|
2020-08-04 11:42:06 +02:00
|
|
|
this.playlistNotFound(serverTranslations)
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
this.playlistFetchError(serverTranslations)
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
return { playlistResponse, videosResponse: await playlistElementsPromise }
|
|
|
|
}
|
|
|
|
|
|
|
|
private async loadVideo (videoId: string) {
|
2019-12-17 11:20:24 +01:00
|
|
|
const videoPromise = this.loadVideoInfo(videoId)
|
|
|
|
|
2020-08-07 09:13:32 +02:00
|
|
|
let videoResponse: Response
|
|
|
|
let isResponseOk: boolean
|
|
|
|
|
|
|
|
try {
|
|
|
|
videoResponse = await videoPromise
|
2020-12-08 21:16:10 +01:00
|
|
|
isResponseOk = videoResponse.status === HttpStatusCode.OK_200
|
2020-08-07 09:13:32 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err)
|
|
|
|
|
|
|
|
isResponseOk = false
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2020-08-07 09:13:32 +02:00
|
|
|
if (!isResponseOk) {
|
2020-08-04 11:42:06 +02:00
|
|
|
const serverTranslations = await this.translationsPromise
|
|
|
|
|
2020-12-08 21:16:10 +01:00
|
|
|
if (videoResponse?.status === HttpStatusCode.NOT_FOUND_404) {
|
2020-08-04 11:42:06 +02:00
|
|
|
this.videoNotFound(serverTranslations)
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
this.videoFetchError(serverTranslations)
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
const captionsPromise = this.loadVideoCaptions(videoId)
|
|
|
|
|
|
|
|
return { captionsPromise, videoResponse }
|
|
|
|
}
|
2019-12-17 11:20:24 +01:00
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
private async buildPlaylistManager () {
|
|
|
|
const translations = await this.translationsPromise
|
|
|
|
|
|
|
|
this.player.upnext({
|
|
|
|
timeout: 10000, // 10s
|
|
|
|
headText: peertubeTranslate('Up Next', translations),
|
|
|
|
cancelText: peertubeTranslate('Cancel', translations),
|
|
|
|
suspendedText: peertubeTranslate('Autoplay is suspended', translations),
|
|
|
|
getTitle: () => this.nextVideoTitle(),
|
2020-08-05 11:02:14 +02:00
|
|
|
next: () => this.playNextVideo(),
|
2020-08-04 11:42:06 +02:00
|
|
|
condition: () => !!this.getNextPlaylistElement(),
|
|
|
|
suspended: () => false
|
|
|
|
})
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2020-08-05 09:44:58 +02:00
|
|
|
private async loadVideoAndBuildPlayer (uuid: string) {
|
|
|
|
const res = await this.loadVideo(uuid)
|
2020-08-04 11:42:06 +02:00
|
|
|
if (res === undefined) return
|
|
|
|
|
|
|
|
return this.buildVideoPlayer(res.videoResponse, res.captionsPromise)
|
|
|
|
}
|
2019-12-17 11:20:24 +01:00
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
private nextVideoTitle () {
|
|
|
|
const next = this.getNextPlaylistElement()
|
|
|
|
if (!next) return ''
|
|
|
|
|
|
|
|
return next.video.name
|
|
|
|
}
|
|
|
|
|
|
|
|
private getNextPlaylistElement (position?: number): VideoPlaylistElement {
|
|
|
|
if (!position) position = this.currentPlaylistElement.position + 1
|
|
|
|
|
|
|
|
if (position > this.playlist.videosLength) {
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
const next = this.playlistElements.find(e => e.position === position)
|
|
|
|
|
|
|
|
if (!next || !next.video) {
|
|
|
|
return this.getNextPlaylistElement(position + 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
return next
|
|
|
|
}
|
|
|
|
|
2020-08-05 11:02:14 +02:00
|
|
|
private getPreviousPlaylistElement (position?: number): VideoPlaylistElement {
|
2020-08-05 14:00:36 +02:00
|
|
|
if (!position) position = this.currentPlaylistElement.position - 1
|
2020-08-05 11:02:14 +02:00
|
|
|
|
|
|
|
if (position < 1) {
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
const prev = this.playlistElements.find(e => e.position === position)
|
|
|
|
|
|
|
|
if (!prev || !prev.video) {
|
|
|
|
return this.getNextPlaylistElement(position - 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
return prev
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
private async buildVideoPlayer (videoResponse: Response, captionsPromise: Promise<Response>) {
|
|
|
|
let alreadyHadPlayer = false
|
|
|
|
|
|
|
|
if (this.player) {
|
|
|
|
this.player.dispose()
|
|
|
|
alreadyHadPlayer = true
|
|
|
|
}
|
|
|
|
|
|
|
|
this.playerElement = document.createElement('video')
|
|
|
|
this.playerElement.className = 'video-js vjs-peertube-skin'
|
|
|
|
this.playerElement.setAttribute('playsinline', 'true')
|
|
|
|
this.wrapperElement.appendChild(this.playerElement)
|
|
|
|
|
|
|
|
const videoInfoPromise = videoResponse.json()
|
|
|
|
.then((videoInfo: VideoDetails) => {
|
|
|
|
if (!alreadyHadPlayer) this.loadPlaceholder(videoInfo)
|
|
|
|
|
|
|
|
return videoInfo
|
|
|
|
})
|
|
|
|
|
2020-08-05 15:35:58 +02:00
|
|
|
const [ videoInfoTmp, serverTranslations, captionsResponse, config, PeertubePlayerManagerModule ] = await Promise.all([
|
2020-08-04 11:42:06 +02:00
|
|
|
videoInfoPromise,
|
|
|
|
this.translationsPromise,
|
|
|
|
captionsPromise,
|
|
|
|
this.configPromise,
|
|
|
|
this.PeertubePlayerManagerModulePromise
|
|
|
|
])
|
2019-12-17 11:20:24 +01:00
|
|
|
|
2020-08-20 11:46:25 +02:00
|
|
|
await this.ensurePluginsAreLoaded(config, serverTranslations)
|
|
|
|
|
2020-08-05 15:35:58 +02:00
|
|
|
const videoInfo: VideoDetails = videoInfoTmp
|
|
|
|
|
2019-12-17 11:20:24 +01:00
|
|
|
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
|
|
|
|
2020-08-05 09:44:58 +02:00
|
|
|
const playlistPlugin = this.currentPlaylistElement
|
|
|
|
? {
|
|
|
|
elements: this.playlistElements,
|
|
|
|
playlist: this.playlist,
|
|
|
|
|
|
|
|
getCurrentPosition: () => this.currentPlaylistElement.position,
|
|
|
|
|
|
|
|
onItemClicked: (videoPlaylistElement: VideoPlaylistElement) => {
|
|
|
|
this.currentPlaylistElement = videoPlaylistElement
|
|
|
|
|
|
|
|
this.loadVideoAndBuildPlayer(this.currentPlaylistElement.video.uuid)
|
|
|
|
.catch(err => console.error(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
: undefined
|
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
const options: PeertubePlayerManagerOptions = {
|
|
|
|
common: {
|
2020-08-04 11:42:06 +02:00
|
|
|
// Autoplay in playlist mode
|
|
|
|
autoplay: alreadyHadPlayer ? true : this.autoplay,
|
2019-01-23 15:36:45 +01:00
|
|
|
controls: this.controls,
|
|
|
|
muted: this.muted,
|
|
|
|
loop: this.loop,
|
2020-08-05 11:57:38 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
captions: videoCaptions.length !== 0,
|
|
|
|
subtitle: this.subtitle,
|
|
|
|
|
2020-08-05 11:57:38 +02:00
|
|
|
startTime: this.playlist ? this.currentPlaylistElement.startTimestamp : this.startTime,
|
|
|
|
stopTime: this.playlist ? this.currentPlaylistElement.stopTimestamp : this.stopTime,
|
|
|
|
|
2020-08-05 11:02:14 +02:00
|
|
|
nextVideo: this.playlist ? () => this.playNextVideo() : undefined,
|
|
|
|
hasNextVideo: this.playlist ? () => !!this.getNextPlaylistElement() : undefined,
|
|
|
|
|
|
|
|
previousVideo: this.playlist ? () => this.playPreviousVideo() : undefined,
|
|
|
|
hasPreviousVideo: this.playlist ? () => !!this.getPreviousPlaylistElement() : undefined,
|
|
|
|
|
2020-08-05 09:44:58 +02:00
|
|
|
playlist: playlistPlugin,
|
2020-08-04 11:42:06 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
videoCaptions,
|
2020-07-02 15:10:06 +02:00
|
|
|
inactivityTimeout: 2500,
|
2020-08-04 11:42:06 +02:00
|
|
|
videoViewUrl: this.getVideoUrl(videoInfo.uuid) + '/views',
|
2019-02-06 10:39:50 +01:00
|
|
|
|
2020-11-10 14:21:26 +01:00
|
|
|
isLive: videoInfo.isLive,
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
playerElement: this.playerElement,
|
|
|
|
onPlayerElementChange: (element: HTMLVideoElement) => this.playerElement = element,
|
2019-02-06 10:39:50 +01:00
|
|
|
|
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: {
|
2020-11-10 16:47:25 +01:00
|
|
|
playlistUrl: hlsPlaylist.playlistUrl,
|
2019-01-29 08:37:25 +01:00
|
|
|
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
|
2020-11-10 16:47:25 +01:00
|
|
|
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
|
2019-01-29 08:37:25 +01:00
|
|
|
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()
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
await this.buildDock(videoInfo, config)
|
2019-06-11 15:59:10 +02:00
|
|
|
|
|
|
|
this.initializeApi()
|
2019-12-17 11:20:24 +01:00
|
|
|
|
|
|
|
this.removePlaceholder()
|
2020-08-04 11:42:06 +02:00
|
|
|
|
|
|
|
if (this.isPlaylistEmbed()) {
|
|
|
|
await this.buildPlaylistManager()
|
2020-08-05 11:57:38 +02:00
|
|
|
|
2020-08-05 09:44:58 +02:00
|
|
|
this.player.playlist().updateSelected()
|
2020-08-05 11:57:38 +02:00
|
|
|
|
|
|
|
this.player.on('stopped', () => {
|
|
|
|
this.playNextVideo()
|
|
|
|
})
|
2020-08-04 11:42:06 +02:00
|
|
|
}
|
2020-08-20 11:46:25 +02:00
|
|
|
|
2020-08-21 14:45:57 +02:00
|
|
|
this.runHook('action:embed.player.loaded', undefined, { player: this.player, videojs, video: videoInfo })
|
2020-08-04 11:42:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private async initCore () {
|
|
|
|
if (this.userTokens) this.setHeadersFromTokens()
|
|
|
|
|
|
|
|
this.configPromise = this.loadConfig()
|
|
|
|
this.translationsPromise = TranslationsManager.getServerTranslations(window.location.origin, navigator.language)
|
|
|
|
this.PeertubePlayerManagerModulePromise = import('../../assets/player/peertube-player-manager')
|
|
|
|
|
|
|
|
let videoId: string
|
|
|
|
|
|
|
|
if (this.isPlaylistEmbed()) {
|
|
|
|
const playlistId = this.getResourceId()
|
|
|
|
const res = await this.loadPlaylist(playlistId)
|
|
|
|
if (!res) return undefined
|
|
|
|
|
|
|
|
this.playlist = await res.playlistResponse.json()
|
|
|
|
|
|
|
|
const playlistElementResult = await res.videosResponse.json()
|
2020-08-05 13:46:01 +02:00
|
|
|
this.playlistElements = await this.loadAllPlaylistVideos(playlistId, playlistElementResult)
|
2020-08-04 11:42:06 +02:00
|
|
|
|
2020-08-05 14:00:36 +02:00
|
|
|
const params = new URL(window.location.toString()).searchParams
|
|
|
|
const playlistPositionParam = this.getParamString(params, 'playlistPosition')
|
|
|
|
|
|
|
|
let position = 1
|
|
|
|
|
|
|
|
if (playlistPositionParam) {
|
|
|
|
position = parseInt(playlistPositionParam + '', 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.currentPlaylistElement = this.playlistElements.find(e => e.position === position)
|
|
|
|
if (!this.currentPlaylistElement || !this.currentPlaylistElement.video) {
|
|
|
|
console.error('Current playlist element is not valid.', this.currentPlaylistElement)
|
|
|
|
this.currentPlaylistElement = this.getNextPlaylistElement()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.currentPlaylistElement) {
|
|
|
|
console.error('This playlist does not have any valid element.')
|
|
|
|
const serverTranslations = await this.translationsPromise
|
|
|
|
this.playlistFetchError(serverTranslations)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
videoId = this.currentPlaylistElement.video.uuid
|
|
|
|
} else {
|
|
|
|
videoId = this.getResourceId()
|
|
|
|
}
|
|
|
|
|
2020-08-05 09:44:58 +02:00
|
|
|
return this.loadVideoAndBuildPlayer(videoId)
|
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()
|
2020-08-04 11:42:06 +02:00
|
|
|
this.playerElement = null
|
2019-06-11 15:59:10 +02:00
|
|
|
this.displayError('This video is not available because the remote instance is not responding.', translations)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
private async buildDock (videoInfo: VideoDetails, config: ServerConfig) {
|
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 description = config.tracker.enabled && this.warningTitle
|
|
|
|
? '<span class="text">' + peertubeTranslate('Watching this video may reveal your IP address to others.') + '</span>'
|
|
|
|
: undefined
|
|
|
|
|
2020-11-10 16:47:25 +01:00
|
|
|
if (title || description) {
|
|
|
|
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}")`
|
2020-08-04 11:42:06 +02:00
|
|
|
placeholder.style.display = 'block'
|
2019-12-17 11:20:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private removePlaceholder () {
|
|
|
|
const placeholder = this.getPlaceholderElement()
|
2020-08-04 11:42:06 +02:00
|
|
|
placeholder.style.display = 'none'
|
2019-12-17 11:20:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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}`)
|
|
|
|
}
|
2020-08-04 11:42:06 +02:00
|
|
|
|
2020-08-10 14:58:32 +02:00
|
|
|
private removeTokensFromHeaders () {
|
|
|
|
this.headers.delete('Authorization')
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:42:06 +02:00
|
|
|
private getResourceId () {
|
|
|
|
const urlParts = window.location.pathname.split('/')
|
|
|
|
return urlParts[ urlParts.length - 1 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
private isPlaylistEmbed () {
|
|
|
|
return window.location.pathname.split('/')[1] === 'video-playlists'
|
|
|
|
}
|
2020-08-20 11:46:25 +02:00
|
|
|
|
|
|
|
private async ensurePluginsAreLoaded (config: ServerConfig, translations?: { [ id: string ]: string }) {
|
|
|
|
if (config.plugin.registered.length === 0) return
|
|
|
|
|
|
|
|
for (const plugin of config.plugin.registered) {
|
|
|
|
for (const key of Object.keys(plugin.clientScripts)) {
|
|
|
|
const clientScript = plugin.clientScripts[key]
|
|
|
|
|
|
|
|
if (clientScript.scopes.includes('embed') === false) continue
|
|
|
|
|
|
|
|
const script = `/plugins/${plugin.name}/${plugin.version}/client-scripts/${clientScript.script}`
|
|
|
|
|
|
|
|
if (this.loadedScripts.has(script)) continue
|
|
|
|
|
|
|
|
const pluginInfo = {
|
|
|
|
plugin,
|
|
|
|
clientScript: {
|
|
|
|
script,
|
|
|
|
scopes: clientScript.scopes
|
|
|
|
},
|
|
|
|
pluginType: PluginType.PLUGIN,
|
|
|
|
isTheme: false
|
|
|
|
}
|
|
|
|
|
2020-08-20 16:18:16 +02:00
|
|
|
await loadPlugin({
|
|
|
|
hooks: this.peertubeHooks,
|
|
|
|
pluginInfo,
|
|
|
|
peertubeHelpersFactory: _ => this.buildPeerTubeHelpers(translations)
|
|
|
|
})
|
2020-08-20 11:46:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildPeerTubeHelpers (translations?: { [ id: string ]: string }): RegisterClientHelpers {
|
|
|
|
function unimplemented (): any {
|
|
|
|
throw new Error('This helper is not implemented in embed.')
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
getBaseStaticRoute: unimplemented,
|
|
|
|
|
|
|
|
getSettings: unimplemented,
|
|
|
|
|
|
|
|
isLoggedIn: unimplemented,
|
|
|
|
|
|
|
|
notifier: {
|
|
|
|
info: unimplemented,
|
|
|
|
error: unimplemented,
|
|
|
|
success: unimplemented
|
|
|
|
},
|
|
|
|
|
|
|
|
showModal: unimplemented,
|
|
|
|
|
|
|
|
markdownRenderer: {
|
|
|
|
textMarkdownToHTML: unimplemented,
|
|
|
|
enhancedMarkdownToHTML: unimplemented
|
|
|
|
},
|
|
|
|
|
|
|
|
translate: (value: string) => {
|
|
|
|
return Promise.resolve(peertubeTranslate(value, translations))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T> {
|
|
|
|
return runHook(this.peertubeHooks, hookName, result, params)
|
|
|
|
}
|
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))
|