PeerTube/server/controllers/services.ts

75 lines
2.3 KiB
TypeScript
Raw Normal View History

2017-10-16 03:05:49 -05:00
import * as express from 'express'
import { EMBED_SIZE, PREVIEWS_SIZE, WEBSERVER } from '../initializers/constants'
2017-12-12 10:53:50 -06:00
import { asyncMiddleware, oembedValidator } from '../middlewares'
2019-02-26 03:55:40 -06:00
import { accountNameWithHostGetValidator } from '../middlewares/validators'
2017-10-16 03:05:49 -05:00
const servicesRouter = express.Router()
2017-11-27 10:30:46 -06:00
servicesRouter.use('/oembed',
asyncMiddleware(oembedValidator),
generateOEmbed
)
2018-05-25 02:57:16 -05:00
servicesRouter.use('/redirect/accounts/:accountName',
2019-02-26 03:55:40 -06:00
asyncMiddleware(accountNameWithHostGetValidator),
2018-02-21 09:44:18 -06:00
redirectToAccountUrl
)
2017-10-16 03:05:49 -05:00
// ---------------------------------------------------------------------------
export {
servicesRouter
}
// ---------------------------------------------------------------------------
2019-03-19 04:35:15 -05:00
function generateOEmbed (req: express.Request, res: express.Response) {
2019-08-15 04:53:26 -05:00
const video = res.locals.videoAll
2019-04-11 04:33:44 -05:00
const webserverUrl = WEBSERVER.URL
2017-10-16 03:05:49 -05:00
const maxHeight = parseInt(req.query.maxheight, 10)
const maxWidth = parseInt(req.query.maxwidth, 10)
2018-07-12 12:02:00 -05:00
const embedUrl = webserverUrl + video.getEmbedStaticPath()
let thumbnailUrl = webserverUrl + video.getPreviewStaticPath()
let embedWidth = EMBED_SIZE.width
let embedHeight = EMBED_SIZE.height
2017-10-16 03:05:49 -05: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 03:05:49 -05: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 03:05:49 -05:00
const json: any = {
type: 'video',
version: '1.0',
html,
width: embedWidth,
height: embedHeight,
title: video.name,
2017-11-10 07:48:08 -06:00
author_name: video.VideoChannel.Account.name,
2018-06-27 02:08:34 -05:00
author_url: video.VideoChannel.Account.Actor.url,
2017-10-16 03:05:49 -05: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 03:05:49 -05:00
}
return res.json(json)
}
2018-02-21 09:44:18 -06:00
function redirectToAccountUrl (req: express.Request, res: express.Response, next: express.NextFunction) {
return res.redirect(res.locals.account.Actor.url)
}