Add more embed parameters

This commit is contained in:
Chocobozzz 2019-06-11 15:59:10 +02:00
parent 0ba5f5baad
commit 5efab5467c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
12 changed files with 241 additions and 179 deletions

View File

@ -20,6 +20,7 @@ import { environment } from '../../../environments/environment'
import { VideoCaptionService } from '@app/shared/video-caption' import { VideoCaptionService } from '@app/shared/video-caption'
import { MarkdownService } from '@app/shared/renderer' import { MarkdownService } from '@app/shared/renderer'
import { import {
CustomizationOptions,
P2PMediaLoaderOptions, P2PMediaLoaderOptions,
PeertubePlayerManager, PeertubePlayerManager,
PeertubePlayerManagerOptions, PeertubePlayerManagerOptions,
@ -28,7 +29,7 @@ import {
import { VideoPlaylist } from '@app/shared/video-playlist/video-playlist.model' import { VideoPlaylist } from '@app/shared/video-playlist/video-playlist.model'
import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service' import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service'
import { Video } from '@app/shared/video/video.model' import { Video } from '@app/shared/video/video.model'
import { isWebRTCDisabled } from '../../../assets/player/utils' import { isWebRTCDisabled, timeToInt } from '../../../assets/player/utils'
import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component' import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component'
@Component({ @Component({
@ -249,8 +250,13 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
const urlOptions = { const urlOptions = {
startTime: queryParams.start, startTime: queryParams.start,
stopTime: queryParams.stop, stopTime: queryParams.stop,
muted: queryParams.muted,
loop: queryParams.loop,
subtitle: queryParams.subtitle, subtitle: queryParams.subtitle,
playerMode: queryParams.mode
playerMode: queryParams.mode,
peertubeLink: false
} }
this.onVideoFetched(video, captionsResult.data, urlOptions) this.onVideoFetched(video, captionsResult.data, urlOptions)
@ -327,7 +333,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
private async onVideoFetched ( private async onVideoFetched (
video: VideoDetails, video: VideoDetails,
videoCaptions: VideoCaption[], videoCaptions: VideoCaption[],
urlOptions: { startTime?: number, stopTime?: number, subtitle?: string, playerMode?: string } urlOptions: CustomizationOptions & { playerMode: PlayerMode }
) { ) {
this.video = video this.video = video
@ -339,7 +345,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
this.videoWatchPlaylist.updatePlaylistIndex(video) this.videoWatchPlaylist.updatePlaylistIndex(video)
let startTime = urlOptions.startTime || (this.video.userHistory ? this.video.userHistory.currentTime : 0) let startTime = timeToInt(urlOptions.startTime) || (this.video.userHistory ? this.video.userHistory.currentTime : 0)
// If we are at the end of the video, reset the timer // If we are at the end of the video, reset the timer
if (this.video.duration - startTime <= 1) startTime = 0 if (this.video.duration - startTime <= 1) startTime = 0
@ -378,12 +384,18 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
enableHotkeys: true, enableHotkeys: true,
inactivityTimeout: 2500, inactivityTimeout: 2500,
poster: this.video.previewUrl, poster: this.video.previewUrl,
startTime, startTime,
stopTime: urlOptions.stopTime, stopTime: urlOptions.stopTime,
controls: urlOptions.controls,
muted: urlOptions.muted,
loop: urlOptions.loop,
subtitle: urlOptions.subtitle,
peertubeLink: urlOptions.peertubeLink,
theaterMode: true, theaterMode: true,
captions: videoCaptions.length !== 0, captions: videoCaptions.length !== 0,
peertubeLink: false,
videoViewUrl: this.video.privacy.id !== VideoPrivacy.PRIVATE videoViewUrl: this.video.privacy.id !== VideoPrivacy.PRIVATE
? this.videoService.getVideoViewUrl(this.video.uuid) ? this.videoService.getVideoViewUrl(this.video.uuid)
@ -392,8 +404,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
language: this.localeId, language: this.localeId,
subtitle: urlOptions.subtitle,
userWatching: this.user && this.user.videosHistoryEnabled === true ? { userWatching: this.user && this.user.videosHistoryEnabled === true ? {
url: this.videoService.getUserWatchingVideoUrl(this.video.uuid), url: this.videoService.getUserWatchingVideoUrl(this.video.uuid),
authorizationHeader: this.authService.getRequestHeaderValue() authorizationHeader: this.authService.getRequestHeaderValue()

View File

@ -39,7 +39,19 @@ export type P2PMediaLoaderOptions = {
videoFiles: VideoFile[] videoFiles: VideoFile[]
} }
export type CommonOptions = { export interface CustomizationOptions {
startTime: number | string
stopTime: number | string
controls?: boolean
muted?: boolean
loop?: boolean
subtitle?: string
peertubeLink: boolean
}
export interface CommonOptions extends CustomizationOptions {
playerElement: HTMLVideoElement playerElement: HTMLVideoElement
onPlayerElementChange: (element: HTMLVideoElement) => void onPlayerElementChange: (element: HTMLVideoElement) => void
@ -48,21 +60,14 @@ export type CommonOptions = {
enableHotkeys: boolean enableHotkeys: boolean
inactivityTimeout: number inactivityTimeout: number
poster: string poster: string
startTime: number | string
stopTime: number | string
theaterMode: boolean theaterMode: boolean
captions: boolean captions: boolean
peertubeLink: boolean
videoViewUrl: string videoViewUrl: string
embedUrl: string embedUrl: string
language?: string language?: string
controls?: boolean
muted?: boolean
loop?: boolean
subtitle?: string
videoCaptions: VideoJSCaption[] videoCaptions: VideoJSCaption[]

View File

@ -71,7 +71,9 @@ $variables: (
--menuForegroundColor: var(--menuForegroundColor), --menuForegroundColor: var(--menuForegroundColor),
--submenuColor: var(--submenuColor), --submenuColor: var(--submenuColor),
--inputColor: var(--inputColor), --inputColor: var(--inputColor),
--inputPlaceholderColor: var(--inputPlaceholderColor) --inputPlaceholderColor: var(--inputPlaceholderColor),
--embedForegroundColor: var(--embedForegroundColor),
--embedBigPlayBackgroundColor: var(--embedBigPlayBackgroundColor)
); );
/*** theme helper ***/ /*** theme helper ***/

View File

@ -10,4 +10,10 @@ $slider-bg-color: lighten($primary-background-color, 33%);
$progress-margin: 10px; $progress-margin: 10px;
$assets-path: '../../assets/' !default; $assets-path: '../../assets/' !default;
body {
--embedForegroundColor: #{$primary-foreground-color};
--embedBigPlayBackgroundColor: #{$primary-background-color};
}

View File

@ -14,7 +14,7 @@ $context-menu-width: 350px;
.vjs-menu-content { .vjs-menu-content {
opacity: $primary-foreground-opacity; opacity: $primary-foreground-opacity;
color: $primary-foreground-color; color: var(--embedForegroundCsolor);
font-size: $font-size !important; font-size: $font-size !important;
font-weight: $font-semibold; font-weight: $font-semibold;
} }
@ -30,4 +30,4 @@ $context-menu-width: 350px;
background-color: rgba(255, 255, 255, 0.2); background-color: rgba(255, 255, 255, 0.2);
} }
} }
} }

View File

@ -10,9 +10,8 @@
} }
.video-js.vjs-peertube-skin { .video-js.vjs-peertube-skin {
font-size: $font-size; font-size: $font-size;
color: $primary-foreground-color; color: var(--embedForegroundColor);
.vjs-dock-text { .vjs-dock-text {
padding-right: 10px; padding-right: 10px;
@ -114,7 +113,7 @@
.vjs-control-bar, .vjs-control-bar,
.vjs-big-play-button, .vjs-big-play-button,
.vjs-settings-dialog { .vjs-settings-dialog {
background-color: rgba($primary-background-color, 0.5); background-color: var(--embedBigPlayBackgroundColor);
} }
.vjs-poster { .vjs-poster {
@ -139,7 +138,8 @@
.vjs-theater-control, .vjs-theater-control,
.vjs-settings .vjs-settings
{ {
color: $primary-foreground-color !important; color: var(--embedForegroundColor) !important;
opacity: $primary-foreground-opacity; opacity: $primary-foreground-opacity;
transition: opacity .1s; transition: opacity .1s;
@ -151,7 +151,7 @@
.vjs-current-time, .vjs-current-time,
.vjs-duration, .vjs-duration,
.vjs-peertube { .vjs-peertube {
color: $primary-foreground-color; color: var(--embedForegroundColor);
opacity: $primary-foreground-opacity; opacity: $primary-foreground-opacity;
} }
@ -171,7 +171,7 @@
transition: none; transition: none;
.vjs-play-progress { .vjs-play-progress {
background: $primary-foreground-color; background: var(--embedForegroundColor);
// Not display the circle if the progress is not hovered // Not display the circle if the progress is not hovered
&::before { &::before {

View File

@ -38,7 +38,7 @@ $setting-transition-easing: ease-out;
position: absolute; position: absolute;
right: .5em; right: .5em;
bottom: 3.5em; bottom: 3.5em;
color: $primary-foreground-color; color: var(--embedForegroundColor);
opacity: $primary-foreground-opacity; opacity: $primary-foreground-opacity;
margin: 0 auto; margin: 0 auto;
font-size: $font-size !important; font-size: $font-size !important;

View File

@ -0,0 +1,130 @@
import './embed.scss'
import * as Channel from 'jschannel'
import { PeerTubeResolution } from '../player/definitions'
import { PeerTubeEmbed } from './embed'
/**
* Embed API exposes control of the embed player to the outside world via
* JSChannels and window.postMessage
*/
export class PeerTubeEmbedApi {
private channel: Channel.MessagingChannel
private isReady = false
private resolutions: PeerTubeResolution[] = null
constructor (private embed: PeerTubeEmbed) {
}
initialize () {
this.constructChannel()
this.setupStateTracking()
// We're ready!
this.notifyReady()
}
private get element () {
return this.embed.videoElement
}
private constructChannel () {
const channel = Channel.build({ window: window.parent, origin: '*', scope: this.embed.scope })
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)
this.channel = channel
}
private setResolution (resolutionId: number) {
if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionForbidden()) return
// Auto resolution
if (resolutionId === -1) {
this.embed.player.webtorrent().enableAutoResolution()
return
}
this.embed.player.webtorrent().disableAutoResolution()
this.embed.player.webtorrent().updateResolution(resolutionId)
}
/**
* Let the host know that we're ready to go!
*/
private notifyReady () {
this.isReady = true
this.channel.notify({ method: 'ready', params: true })
}
private setupStateTracking () {
let currentState: 'playing' | 'paused' | 'unstarted' = 'unstarted'
setInterval(() => {
const position = this.element.currentTime
const volume = this.element.volume
this.channel.notify({
method: 'playbackStatusUpdate',
params: {
position,
volume,
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
if (this.embed.player.webtorrent) {
this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions())
this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions())
}
}
private loadWebTorrentResolutions () {
const resolutions = []
const currentResolutionId = this.embed.player.webtorrent().getCurrentResolutionId()
for (const videoFile of this.embed.player.webtorrent().videoFiles) {
let label = videoFile.resolution.label
if (videoFile.fps && videoFile.fps >= 50) {
label += videoFile.fps
}
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
})
}
}

View File

@ -11,7 +11,7 @@
<link rel="icon" type="image/png" href="/client/assets/images/favicon.png" /> <link rel="icon" type="image/png" href="/client/assets/images/favicon.png" />
</head> </head>
<body> <body id="custom-css">
<div id="error-block"> <div id="error-block">
<h1 id="error-title"></h1> <h1 id="error-title"></h1>

View File

@ -1,9 +1,6 @@
import './embed.scss' import './embed.scss'
import * as Channel from 'jschannel'
import { peertubeTranslate, ResultList, ServerConfig, VideoDetails } from '../../../../shared' import { peertubeTranslate, ResultList, ServerConfig, VideoDetails } from '../../../../shared'
import { PeerTubeResolution } from '../player/definitions'
import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings' import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings'
import { VideoCaption } from '../../../../shared/models/videos/caption/video-caption.model' import { VideoCaption } from '../../../../shared/models/videos/caption/video-caption.model'
import { import {
@ -13,133 +10,9 @@ import {
PlayerMode PlayerMode
} from '../../assets/player/peertube-player-manager' } from '../../assets/player/peertube-player-manager'
import { VideoStreamingPlaylistType } from '../../../../shared/models/videos/video-streaming-playlist.type' import { VideoStreamingPlaylistType } from '../../../../shared/models/videos/video-streaming-playlist.type'
import { PeerTubeEmbedApi } from './embed-api'
/** export class PeerTubeEmbed {
* Embed API exposes control of the embed player to the outside world via
* JSChannels and window.postMessage
*/
class PeerTubeEmbedApi {
private channel: Channel.MessagingChannel
private isReady = false
private resolutions: PeerTubeResolution[] = null
constructor (private embed: PeerTubeEmbed) {
}
initialize () {
this.constructChannel()
this.setupStateTracking()
// We're ready!
this.notifyReady()
}
private get element () {
return this.embed.videoElement
}
private constructChannel () {
const channel = Channel.build({ window: window.parent, origin: '*', scope: this.embed.scope })
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)
this.channel = channel
}
private setResolution (resolutionId: number) {
if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionForbidden()) return
// Auto resolution
if (resolutionId === -1) {
this.embed.player.webtorrent().enableAutoResolution()
return
}
this.embed.player.webtorrent().disableAutoResolution()
this.embed.player.webtorrent().updateResolution(resolutionId)
}
/**
* Let the host know that we're ready to go!
*/
private notifyReady () {
this.isReady = true
this.channel.notify({ method: 'ready', params: true })
}
private setupStateTracking () {
let currentState: 'playing' | 'paused' | 'unstarted' = 'unstarted'
setInterval(() => {
const position = this.element.currentTime
const volume = this.element.volume
this.channel.notify({
method: 'playbackStatusUpdate',
params: {
position,
volume,
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
if (this.embed.player.webtorrent) {
this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions())
this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions())
}
}
private loadWebTorrentResolutions () {
const resolutions = []
const currentResolutionId = this.embed.player.webtorrent().getCurrentResolutionId()
for (const videoFile of this.embed.player.webtorrent().videoFiles) {
let label = videoFile.resolution.label
if (videoFile.fps && videoFile.fps >= 50) {
label += videoFile.fps
}
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
})
}
}
class PeerTubeEmbed {
videoElement: HTMLVideoElement videoElement: HTMLVideoElement
player: any player: any
playerOptions: any playerOptions: any
@ -152,6 +25,12 @@ class PeerTubeEmbed {
enableApi = false enableApi = false
startTime: number | string = 0 startTime: number | string = 0
stopTime: number | string stopTime: number | string
title: boolean
warningTitle: boolean
bigPlayBackgroundColor: string
foregroundColor: string
mode: PlayerMode mode: PlayerMode
scope = 'peertube' scope = 'peertube'
@ -245,13 +124,18 @@ class PeerTubeEmbed {
this.controls = this.getParamToggle(params, 'controls', true) this.controls = this.getParamToggle(params, 'controls', true)
this.muted = this.getParamToggle(params, 'muted', false) this.muted = this.getParamToggle(params, 'muted', false)
this.loop = this.getParamToggle(params, 'loop', false) this.loop = this.getParamToggle(params, 'loop', false)
this.title = this.getParamToggle(params, 'title', true)
this.enableApi = this.getParamToggle(params, 'api', this.enableApi) this.enableApi = this.getParamToggle(params, 'api', this.enableApi)
this.warningTitle = this.getParamToggle(params, 'warningTitle', true)
this.scope = this.getParamString(params, 'scope', this.scope) this.scope = this.getParamString(params, 'scope', this.scope)
this.subtitle = this.getParamString(params, 'subtitle') this.subtitle = this.getParamString(params, 'subtitle')
this.startTime = this.getParamString(params, 'start') this.startTime = this.getParamString(params, 'start')
this.stopTime = this.getParamString(params, 'stop') this.stopTime = this.getParamString(params, 'stop')
this.bigPlayBackgroundColor = this.getParamString(params, 'bigPlayBackgroundColor')
this.foregroundColor = this.getParamString(params, 'foregroundColor')
this.mode = this.getParamString(params, 'mode') === 'p2p-media-loader' ? 'p2p-media-loader' : 'webtorrent' this.mode = this.getParamString(params, 'mode') === 'p2p-media-loader' ? 'p2p-media-loader' : 'webtorrent'
} catch (err) { } catch (err) {
console.error('Cannot get params from URL.', err) console.error('Cannot get params from URL.', err)
@ -276,15 +160,7 @@ class PeerTubeEmbed {
} }
const videoInfo: VideoDetails = await videoResponse.json() const videoInfo: VideoDetails = await videoResponse.json()
let videoCaptions: VideoJSCaption[] = [] const videoCaptions = await this.buildCaptions(serverTranslations, captionsResponse)
if (captionsResponse.ok) {
const { data } = (await captionsResponse.json()) as ResultList<VideoCaption>
videoCaptions = data.map(c => ({
label: peertubeTranslate(c.language.label, serverTranslations),
language: c.language.id,
src: window.location.origin + c.captionPath
}))
}
this.loadParams() this.loadParams()
@ -337,22 +213,13 @@ class PeerTubeEmbed {
} }
this.player = await PeertubePlayerManager.initialize(this.mode, options) this.player = await PeertubePlayerManager.initialize(this.mode, options)
this.player.on('customError', (event: any, data: any) => this.handleError(data.err, serverTranslations)) this.player.on('customError', (event: any, data: any) => this.handleError(data.err, serverTranslations))
window[ 'videojsPlayer' ] = this.player window[ 'videojsPlayer' ] = this.player
if (this.controls) { this.buildCSS()
const config: ServerConfig = await configResponse.json()
const description = config.tracker.enabled
? '<span class="text">' + this.player.localize('Uses P2P, others may know your IP is downloading this video.') + '</span>'
: undefined
this.player.dock({ await this.buildDock(videoInfo, configResponse)
title: videoInfo.name,
description
})
}
this.initializeApi() this.initializeApi()
} }
@ -365,6 +232,48 @@ class PeerTubeEmbed {
return return
} }
} }
private async buildDock (videoInfo: VideoDetails, configResponse: Response) {
if (this.controls) {
const title = this.title ? videoInfo.name : undefined
const config: ServerConfig = await configResponse.json()
const description = config.tracker.enabled && this.warningTitle
? '<span class="text">' + this.player.localize('Uses P2P, others may know your IP is downloading this video.') + '</span>'
: undefined
this.player.dock({
title,
description
})
}
}
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)
}
}
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
}))
}
return []
}
} }
PeerTubeEmbed.main() PeerTubeEmbed.main()

View File

@ -379,8 +379,7 @@ describe('Test users API validators', function () {
it('Should succeed without password change with the correct params', async function () { it('Should succeed without password change with the correct params', async function () {
const fields = { const fields = {
nsfwPolicy: 'blur', nsfwPolicy: 'blur',
autoPlayVideo: false, autoPlayVideo: false
email: 'super_email@example.com'
} }
await makePutBodyRequest({ url: server.url, path: path + 'me', token: userAccessToken, fields, statusCodeExpected: 204 }) await makePutBodyRequest({ url: server.url, path: path + 'me', token: userAccessToken, fields, statusCodeExpected: 204 })

View File

@ -109,7 +109,8 @@ describe('Test users account verification', function () {
await updateMyUser({ await updateMyUser({
url: server.url, url: server.url,
accessToken: userAccessToken, accessToken: userAccessToken,
email: 'updated@example.com' email: 'updated@example.com',
currentPassword: user1.password
}) })
await waitJobs(server) await waitJobs(server)