2017-10-16 04:05:49 -04:00
|
|
|
import * as express from 'express'
|
|
|
|
|
2017-10-17 04:35:27 -04:00
|
|
|
import { CONFIG, PREVIEWS_SIZE, EMBED_SIZE } from '../initializers'
|
2017-10-16 04:05:49 -04:00
|
|
|
import { oembedValidator } from '../middlewares'
|
|
|
|
import { VideoInstance } from '../models'
|
|
|
|
|
|
|
|
const servicesRouter = express.Router()
|
|
|
|
|
|
|
|
servicesRouter.use('/oembed', oembedValidator, generateOEmbed)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
servicesRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function generateOEmbed (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
const video = res.locals.video as VideoInstance
|
|
|
|
const webserverUrl = CONFIG.WEBSERVER.URL
|
|
|
|
const maxHeight = parseInt(req.query.maxheight, 10)
|
|
|
|
const maxWidth = parseInt(req.query.maxwidth, 10)
|
|
|
|
|
|
|
|
const embedUrl = webserverUrl + video.getEmbedPath()
|
2017-10-17 04:35:27 -04:00
|
|
|
let thumbnailUrl = webserverUrl + video.getPreviewPath()
|
|
|
|
let embedWidth = EMBED_SIZE.width
|
|
|
|
let embedHeight = EMBED_SIZE.height
|
2017-10-16 04:05:49 -04:00
|
|
|
|
|
|
|
if (maxHeight < embedHeight) embedHeight = maxHeight
|
|
|
|
if (maxWidth < embedWidth) embedWidth = maxWidth
|
|
|
|
|
|
|
|
// Our thumbnail is too big for the consumer
|
|
|
|
if (
|
2017-10-17 04:35:27 -04:00
|
|
|
(maxHeight !== undefined && maxHeight < PREVIEWS_SIZE.height) ||
|
|
|
|
(maxWidth !== undefined && maxWidth < PREVIEWS_SIZE.width)
|
2017-10-16 04:05:49 -04:00
|
|
|
) {
|
|
|
|
thumbnailUrl = undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
const html = `<iframe width="${embedWidth}" height="${embedHeight}" src="${embedUrl}" frameborder="0" allowfullscreen></iframe>`
|
|
|
|
|
|
|
|
const json: any = {
|
|
|
|
type: 'video',
|
|
|
|
version: '1.0',
|
|
|
|
html,
|
|
|
|
width: embedWidth,
|
|
|
|
height: embedHeight,
|
|
|
|
title: video.name,
|
2017-11-10 08:48:08 -05:00
|
|
|
author_name: video.VideoChannel.Account.name,
|
2017-10-16 04:05:49 -04:00
|
|
|
provider_name: 'PeerTube',
|
|
|
|
provider_url: webserverUrl
|
|
|
|
}
|
|
|
|
|
|
|
|
if (thumbnailUrl !== undefined) {
|
|
|
|
json.thumbnail_url = thumbnailUrl
|
2017-10-17 04:35:27 -04:00
|
|
|
json.thumbnail_width = PREVIEWS_SIZE.width
|
|
|
|
json.thumbnail_height = PREVIEWS_SIZE.height
|
2017-10-16 04:05:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return res.json(json)
|
|
|
|
}
|