PeerTube/server/controllers/services.ts

76 lines
2.3 KiB
TypeScript
Raw Normal View History

2017-10-16 10:05:49 +02:00
import * as express from 'express'
2017-11-27 17:30:46 +01:00
import { CONFIG, EMBED_SIZE, PREVIEWS_SIZE } from '../initializers'
2017-12-12 17:53:50 +01:00
import { asyncMiddleware, oembedValidator } from '../middlewares'
2019-02-26 10:55:40 +01:00
import { accountNameWithHostGetValidator } from '../middlewares/validators'
2017-12-12 17:53:50 +01:00
import { VideoModel } from '../models/video/video'
2017-10-16 10:05:49 +02:00
const servicesRouter = express.Router()
2017-11-27 17:30:46 +01:00
servicesRouter.use('/oembed',
asyncMiddleware(oembedValidator),
generateOEmbed
)
2018-05-25 09:57:16 +02:00
servicesRouter.use('/redirect/accounts/:accountName',
2019-02-26 10:55:40 +01:00
asyncMiddleware(accountNameWithHostGetValidator),
2018-02-21 16:44:18 +01:00
redirectToAccountUrl
)
2017-10-16 10:05:49 +02:00
// ---------------------------------------------------------------------------
export {
servicesRouter
}
// ---------------------------------------------------------------------------
2019-03-19 10:35:15 +01:00
function generateOEmbed (req: express.Request, res: express.Response) {
const video = res.locals.video
2017-10-16 10:05:49 +02:00
const webserverUrl = CONFIG.WEBSERVER.URL
const maxHeight = parseInt(req.query.maxheight, 10)
const maxWidth = parseInt(req.query.maxwidth, 10)
2018-07-12 19:02:00 +02:00
const embedUrl = webserverUrl + video.getEmbedStaticPath()
let thumbnailUrl = webserverUrl + video.getPreviewStaticPath()
let embedWidth = EMBED_SIZE.width
let embedHeight = EMBED_SIZE.height
2017-10-16 10:05:49 +02:00
if (maxHeight < embedHeight) embedHeight = maxHeight
if (maxWidth < embedWidth) embedWidth = maxWidth
// Our thumbnail is too big for the consumer
if (
(maxHeight !== undefined && maxHeight < PREVIEWS_SIZE.height) ||
(maxWidth !== undefined && maxWidth < PREVIEWS_SIZE.width)
2017-10-16 10:05:49 +02:00
) {
thumbnailUrl = undefined
}
const html = `<iframe width="${embedWidth}" height="${embedHeight}" sandbox="allow-same-origin allow-scripts" ` +
`src="${embedUrl}" frameborder="0" allowfullscreen></iframe>`
2017-10-16 10:05:49 +02:00
const json: any = {
type: 'video',
version: '1.0',
html,
width: embedWidth,
height: embedHeight,
title: video.name,
2017-11-10 14:48:08 +01:00
author_name: video.VideoChannel.Account.name,
2018-06-27 09:08:34 +02:00
author_url: video.VideoChannel.Account.Actor.url,
2017-10-16 10:05:49 +02:00
provider_name: 'PeerTube',
provider_url: webserverUrl
}
if (thumbnailUrl !== undefined) {
json.thumbnail_url = thumbnailUrl
json.thumbnail_width = PREVIEWS_SIZE.width
json.thumbnail_height = PREVIEWS_SIZE.height
2017-10-16 10:05:49 +02:00
}
return res.json(json)
}
2018-02-21 16:44:18 +01:00
function redirectToAccountUrl (req: express.Request, res: express.Response, next: express.NextFunction) {
return res.redirect(res.locals.account.Actor.url)
}