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