X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fservices.ts;h=70d08ab69088f187eeaff5771e092da8bc8245fe;hb=4e56f0fff12ab9840574e7a27277fc78b195b3e2;hp=8c0af9ff7546c6c58f60a22e06b93ffdff36830d;hpb=1e4d2cb5aef11898585fae4053da4ebd0a69b480;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/services.ts b/server/controllers/services.ts index 8c0af9ff7..70d08ab69 100644 --- a/server/controllers/services.ts +++ b/server/controllers/services.ts @@ -1,9 +1,9 @@ -import * as express from 'express' -import { EMBED_SIZE, PREVIEWS_SIZE, WEBSERVER, THUMBNAILS_SIZE } from '../initializers/constants' -import { asyncMiddleware, oembedValidator } from '../middlewares' -import { accountNameWithHostGetValidator } from '../middlewares/validators' +import express from 'express' import { MChannelSummary } from '@server/types/models' import { escapeHTML } from '@shared/core-utils/renderer' +import { EMBED_SIZE, PREVIEWS_SIZE, THUMBNAILS_SIZE, WEBSERVER } from '../initializers/constants' +import { asyncMiddleware, oembedValidator } from '../middlewares' +import { accountNameWithHostGetValidator } from '../middlewares/validators' const servicesRouter = express.Router() @@ -36,7 +36,7 @@ function generatePlaylistOEmbed (req: express.Request, res: express.Response) { const json = buildOEmbed({ channel: playlist.VideoChannel, title: playlist.name, - embedPath: playlist.getEmbedStaticPath(), + embedPath: playlist.getEmbedStaticPath() + buildPlayerURLQuery(req.query.url), previewPath: playlist.getThumbnailStaticPath(), previewSize: THUMBNAILS_SIZE, req @@ -51,7 +51,7 @@ function generateVideoOEmbed (req: express.Request, res: express.Response) { const json = buildOEmbed({ channel: video.VideoChannel, title: video.name, - embedPath: video.getEmbedStaticPath(), + embedPath: video.getEmbedStaticPath() + buildPlayerURLQuery(req.query.url), previewPath: video.getPreviewStaticPath(), previewSize: PREVIEWS_SIZE, req @@ -60,6 +60,40 @@ function generateVideoOEmbed (req: express.Request, res: express.Response) { return res.json(json) } +function buildPlayerURLQuery (inputQueryUrl: string) { + const allowedParameters = new Set([ + 'start', + 'stop', + 'loop', + 'autoplay', + 'muted', + 'controls', + 'controlBar', + 'title', + 'api', + 'warningTitle', + 'peertubeLink', + 'p2p', + 'subtitle', + 'bigPlayBackgroundColor', + 'mode', + 'foregroundColor' + ]) + + const params = new URLSearchParams() + + new URL(inputQueryUrl).searchParams.forEach((v, k) => { + if (allowedParameters.has(k)) { + params.append(k, v) + } + }) + + const stringQuery = params.toString() + if (!stringQuery) return '' + + return '?' + stringQuery +} + function buildOEmbed (options: { req: express.Request title: string @@ -98,7 +132,7 @@ function buildOEmbed (options: { thumbnailUrl = undefined } - const html = `` const json: any = {