PeerTube/client/src/standalone/videos/embed.ts

325 lines
9.7 KiB
TypeScript
Raw Normal View History

2017-07-23 14:49:52 +02:00
import './embed.scss'
2018-05-22 16:02:29 +02:00
import 'core-js/es6/symbol'
import 'core-js/es6/object'
import 'core-js/es6/function'
import 'core-js/es6/parse-int'
import 'core-js/es6/parse-float'
import 'core-js/es6/number'
import 'core-js/es6/math'
import 'core-js/es6/string'
import 'core-js/es6/date'
import 'core-js/es6/array'
import 'core-js/es6/regexp'
import 'core-js/es6/map'
import 'core-js/es6/weak-map'
import 'core-js/es6/set'
2018-05-18 11:02:40 +02:00
// For google bot that uses Chrome 41 and does not understand fetch
import 'whatwg-fetch'
import * as vjs from 'video.js'
import * as Channel from 'jschannel'
2018-07-13 18:21:19 +02:00
import { ResultList, VideoDetails } from '../../../../shared'
2018-06-06 14:23:40 +02:00
import { addContextMenu, getVideojsOptions, loadLocale } from '../../assets/player/peertube-player'
2018-07-10 18:02:30 +02:00
import { PeerTubeResolution } from '../player/definitions'
2018-07-13 18:21:19 +02:00
import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings'
import { VideoCaption } from '../../../../shared/models/videos/video-caption.model'
2017-07-23 14:49:52 +02:00
/**
2018-07-10 18:02:30 +02:00
* Embed API exposes control of the embed player to the outside world via
* JSChannels and window.postMessage
*/
class PeerTubeEmbedApi {
2018-07-10 18:02:30 +02:00
private channel: Channel.MessagingChannel
private isReady = false
2018-07-10 18:02:30 +02:00
private resolutions: PeerTubeResolution[] = null
constructor (private embed: PeerTubeEmbed) {
}
2018-04-19 18:06:59 +02:00
2018-07-10 18:02:30 +02:00
initialize () {
this.constructChannel()
this.setupStateTracking()
2018-04-19 18:06:59 +02:00
// We're ready!
2018-04-19 18:06:59 +02:00
this.notifyReady()
}
2018-07-10 18:02:30 +02:00
private get element () {
return this.embed.videoElement
}
2018-04-19 18:06:59 +02:00
2018-07-10 18:02:30 +02:00
private constructChannel () {
let channel = Channel.build({ window: window.parent, origin: '*', scope: this.embed.scope })
2018-07-10 18:02:30 +02:00
channel.bind('play', (txn, params) => this.embed.player.play())
channel.bind('pause', (txn, params) => this.embed.player.pause())
channel.bind('seek', (txn, time) => this.embed.player.currentTime(time))
channel.bind('setVolume', (txn, value) => this.embed.player.volume(value))
channel.bind('getVolume', (txn, value) => this.embed.player.volume())
channel.bind('isReady', (txn, params) => this.isReady)
channel.bind('setResolution', (txn, resolutionId) => this.setResolution(resolutionId))
channel.bind('getResolutions', (txn, params) => this.resolutions)
channel.bind('setPlaybackRate', (txn, playbackRate) => this.embed.player.playbackRate(playbackRate))
channel.bind('getPlaybackRate', (txn, params) => this.embed.player.playbackRate())
channel.bind('getPlaybackRates', (txn, params) => this.embed.playerOptions.playbackRates)
2018-04-19 18:06:59 +02:00
this.channel = channel
}
2018-04-19 18:06:59 +02:00
2018-07-10 18:02:30 +02:00
private setResolution (resolutionId: number) {
if (resolutionId === -1 && this.embed.player.peertube().isAutoResolutionForbidden()) return
// Auto resolution
if (resolutionId === -1) {
this.embed.player.peertube().enableAutoResolution()
return
}
this.embed.player.peertube().disableAutoResolution()
this.embed.player.peertube().updateResolution(resolutionId)
}
/**
* Let the host know that we're ready to go!
*/
2018-07-10 18:02:30 +02:00
private notifyReady () {
this.isReady = true
this.channel.notify({ method: 'ready', params: true })
}
2018-07-10 18:02:30 +02:00
private setupStateTracking () {
let currentState: 'playing' | 'paused' | 'unstarted' = 'unstarted'
setInterval(() => {
let position = this.element.currentTime
let volume = this.element.volume
this.channel.notify({
method: 'playbackStatusUpdate',
params: {
position,
volume,
2018-07-10 18:02:30 +02:00
playbackState: currentState
}
})
}, 500)
this.element.addEventListener('play', ev => {
currentState = 'playing'
this.channel.notify({ method: 'playbackStatusChange', params: 'playing' })
})
this.element.addEventListener('pause', ev => {
currentState = 'paused'
this.channel.notify({ method: 'playbackStatusChange', params: 'paused' })
})
// PeerTube specific capabilities
this.embed.player.peertube().on('autoResolutionUpdate', () => this.loadResolutions())
this.embed.player.peertube().on('videoFileUpdate', () => this.loadResolutions())
}
2018-07-10 18:02:30 +02:00
private loadResolutions () {
let resolutions = []
let currentResolutionId = this.embed.player.peertube().getCurrentResolutionId()
for (const videoFile of this.embed.player.peertube().videoFiles) {
let label = videoFile.resolution.label
if (videoFile.fps && videoFile.fps >= 50) {
label += videoFile.fps
}
2018-04-19 18:06:59 +02:00
resolutions.push({
id: videoFile.resolution.id,
label,
src: videoFile.magnetUri,
active: videoFile.resolution.id === currentResolutionId
})
}
this.resolutions = resolutions
this.channel.notify({
method: 'resolutionUpdate',
params: this.resolutions
})
}
2017-07-23 14:49:52 +02:00
}
class PeerTubeEmbed {
2018-07-10 18:02:30 +02:00
videoElement: HTMLVideoElement
player: any
playerOptions: any
api: PeerTubeEmbedApi = null
autoplay = false
controls = true
muted = false
loop = false
enableApi = false
startTime: number | string = 0
2018-07-10 18:02:30 +02:00
scope = 'peertube'
static async main () {
const videoContainerId = 'video-container'
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
}
getVideoUrl (id: string) {
return window.location.origin + '/api/v1/videos/' + id
}
2018-04-19 18:06:59 +02:00
loadVideoInfo (videoId: string): Promise<Response> {
return fetch(this.getVideoUrl(videoId))
}
2018-04-19 18:06:59 +02:00
2018-07-13 18:21:19 +02:00
loadVideoCaptions (videoId: string): Promise<Response> {
return fetch(this.getVideoUrl(videoId) + '/captions')
}
removeElement (element: HTMLElement) {
element.parentElement.removeChild(element)
}
2018-04-19 18:06:59 +02:00
displayError (videoElement: HTMLVideoElement, text: string) {
// Remove video element
this.removeElement(videoElement)
document.title = 'Sorry - ' + text
const errorBlock = document.getElementById('error-block')
errorBlock.style.display = 'flex'
const errorText = document.getElementById('error-content')
errorText.innerHTML = text
}
videoNotFound (videoElement: HTMLVideoElement) {
const text = 'This video does not exist.'
this.displayError(videoElement, text)
}
videoFetchError (videoElement: HTMLVideoElement) {
const text = 'We cannot fetch the video. Please try again later.'
this.displayError(videoElement, text)
}
getParamToggle (params: URLSearchParams, name: string, defaultValue: boolean) {
return params.has(name) ? (params.get(name) === '1' || params.get(name) === 'true') : defaultValue
}
2018-04-19 18:06:59 +02:00
getParamString (params: URLSearchParams, name: string, defaultValue: string) {
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 () {
try {
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()
}
private loadParams () {
2018-03-27 10:34:40 +02:00
try {
let params = new URL(window.location.toString()).searchParams
this.autoplay = this.getParamToggle(params, 'autoplay', this.autoplay)
this.controls = this.getParamToggle(params, 'controls', this.controls)
this.muted = this.getParamToggle(params, 'muted', this.muted)
this.loop = this.getParamToggle(params, 'loop', this.loop)
this.enableApi = this.getParamToggle(params, 'api', this.enableApi)
this.scope = this.getParamString(params, 'scope', this.scope)
2018-04-05 17:06:59 +02:00
const startTimeParamString = params.get('start')
if (startTimeParamString) this.startTime = startTimeParamString
2018-03-27 10:34:40 +02:00
} catch (err) {
console.error('Cannot get params from URL.', err)
}
}
2018-07-10 18:02:30 +02:00
private async initCore () {
const urlParts = window.location.href.split('/')
2018-07-10 18:02:30 +02:00
const lastPart = urlParts[ urlParts.length - 1 ]
const videoId = lastPart.indexOf('?') === -1 ? lastPart : lastPart.split('?')[ 0 ]
await loadLocale(window.location.origin, vjs, navigator.language)
2018-07-13 18:21:19 +02:00
const [ videoResponse, captionsResponse ] = await Promise.all([
this.loadVideoInfo(videoId),
this.loadVideoCaptions(videoId)
])
2018-07-13 18:21:19 +02:00
if (!videoResponse.ok) {
if (videoResponse.status === 404) return this.videoNotFound(this.videoElement)
return this.videoFetchError(this.videoElement)
}
2018-07-13 18:21:19 +02:00
const videoInfo: VideoDetails = await videoResponse.json()
let videoCaptions: VideoJSCaption[] = []
if (captionsResponse.ok) {
const { data } = (await captionsResponse.json()) as ResultList<VideoCaption>
videoCaptions = data.map(c => ({
label: c.language.label,
language: c.language.id,
src: window.location.origin + c.captionPath
}))
}
this.loadParams()
2018-03-27 10:34:40 +02:00
const videojsOptions = getVideojsOptions({
autoplay: this.autoplay,
controls: this.controls,
muted: this.muted,
loop: this.loop,
2018-07-10 18:02:30 +02:00
startTime: this.startTime,
2018-07-13 18:21:19 +02:00
videoCaptions,
inactivityTimeout: 1500,
videoViewUrl: this.getVideoUrl(videoId) + '/views',
playerElement: this.videoElement,
videoFiles: videoInfo.files,
videoDuration: videoInfo.duration,
enableHotkeys: true,
2018-04-03 15:11:46 +02:00
peertubeLink: true,
2018-04-05 17:06:59 +02:00
poster: window.location.origin + videoInfo.previewPath,
2018-06-11 16:49:56 +02:00
theaterMode: false
})
2017-07-23 14:49:52 +02:00
this.playerOptions = videojsOptions
this.player = vjs(this.videoContainerId, videojsOptions, () => {
2018-06-06 14:23:40 +02:00
2018-07-10 18:02:30 +02:00
window[ 'videojsPlayer' ] = this.player
if (this.controls) {
2018-07-10 18:02:30 +02:00
this.player.dock({
title: videoInfo.name,
description: this.player.localize('Uses P2P, others may know your IP is downloading this video.')
})
}
2018-07-10 18:02:30 +02:00
addContextMenu(this.player, window.location.origin + videoInfo.embedPath)
2018-07-13 18:21:19 +02:00
this.initializeApi()
2017-07-23 14:49:52 +02:00
})
}
}
PeerTubeEmbed.main()
2018-07-10 18:02:30 +02:00
.catch(err => console.error('Cannot init embed.', err))