PeerTube/server/middlewares/validators/oembed.ts

105 lines
3.5 KiB
TypeScript
Raw Normal View History

2017-10-16 10:05:49 +02:00
import * as express from 'express'
2019-07-25 16:23:44 +02:00
import { query } from 'express-validator'
2017-10-16 10:05:49 +02:00
import { join } from 'path'
2020-08-05 15:35:58 +02:00
import { fetchVideo } from '@server/helpers/video'
import { VideoPlaylistModel } from '@server/models/video/video-playlist'
import { VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
2017-12-28 11:16:08 +01:00
import { isTestInstance } from '../../helpers/core-utils'
2017-12-12 17:53:50 +01:00
import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
2017-12-28 11:16:08 +01:00
import { logger } from '../../helpers/logger'
2019-04-11 11:33:44 +02:00
import { WEBSERVER } from '../../initializers/constants'
2020-08-05 15:35:58 +02:00
import { areValidationErrors } from './utils'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
2017-10-16 10:05:49 +02:00
2020-08-05 15:35:58 +02:00
const startVideoPlaylistsURL = WEBSERVER.SCHEME + '://' + join(WEBSERVER.HOST, 'videos', 'watch', 'playlist') + '/'
const startVideosURL = WEBSERVER.SCHEME + '://' + join(WEBSERVER.HOST, 'videos', 'watch') + '/'
2021-02-03 09:33:05 +01:00
const watchRegex = /([^/]+)$/
2017-10-16 10:05:49 +02:00
const isURLOptions = {
require_host: true,
require_tld: true
}
// We validate 'localhost', so we don't have the top level domain
if (isTestInstance()) {
isURLOptions.require_tld = false
}
const oembedValidator = [
query('url').isURL(isURLOptions).withMessage('Should have a valid url'),
query('maxwidth').optional().isInt().withMessage('Should have a valid max width'),
query('maxheight').optional().isInt().withMessage('Should have a valid max height'),
query('format').optional().isIn([ 'xml', 'json' ]).withMessage('Should have a valid format'),
2017-11-27 17:30:46 +01:00
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
2017-10-16 10:05:49 +02:00
logger.debug('Checking oembed parameters', { parameters: req.query })
2017-11-27 17:30:46 +01:00
if (areValidationErrors(req, res)) return
if (req.query.format !== undefined && req.query.format !== 'json') {
return res.status(HttpStatusCode.NOT_IMPLEMENTED_501)
2020-08-05 15:35:58 +02:00
.json({ error: 'Requested format is not implemented on server.' })
2017-11-27 17:30:46 +01:00
}
2020-06-17 12:42:16 +02:00
const url = req.query.url as string
2020-08-05 15:35:58 +02:00
const isPlaylist = url.startsWith(startVideoPlaylistsURL)
const isVideo = isPlaylist ? false : url.startsWith(startVideosURL)
const startIsOk = isVideo || isPlaylist
const matches = watchRegex.exec(url)
2020-06-17 12:42:16 +02:00
2017-11-27 17:30:46 +01:00
if (startIsOk === false || matches === null) {
return res.status(HttpStatusCode.BAD_REQUEST_400)
2020-08-05 15:35:58 +02:00
.json({ error: 'Invalid url.' })
2017-11-27 17:30:46 +01:00
}
2017-10-16 10:05:49 +02:00
2020-08-05 15:35:58 +02:00
const elementId = matches[1]
if (isIdOrUUIDValid(elementId) === false) {
return res.status(HttpStatusCode.BAD_REQUEST_400)
2020-08-05 15:35:58 +02:00
.json({ error: 'Invalid video or playlist id.' })
2017-11-27 17:30:46 +01:00
}
2017-10-16 10:05:49 +02:00
2020-08-05 15:35:58 +02:00
if (isVideo) {
const video = await fetchVideo(elementId, 'all')
if (!video) {
return res.status(HttpStatusCode.NOT_FOUND_404)
2020-08-05 15:35:58 +02:00
.json({ error: 'Video not found' })
}
2017-10-16 10:05:49 +02:00
2020-08-05 15:35:58 +02:00
if (video.privacy !== VideoPrivacy.PUBLIC) {
return res.status(HttpStatusCode.FORBIDDEN_403)
2020-08-05 15:35:58 +02:00
.json({ error: 'Video is not public' })
}
res.locals.videoAll = video
return next()
}
// Is playlist
const videoPlaylist = await VideoPlaylistModel.loadWithAccountAndChannelSummary(elementId, undefined)
if (!videoPlaylist) {
return res.status(HttpStatusCode.NOT_FOUND_404)
2020-08-05 15:35:58 +02:00
.json({ error: 'Video playlist not found' })
}
if (videoPlaylist.privacy !== VideoPlaylistPrivacy.PUBLIC) {
return res.status(HttpStatusCode.FORBIDDEN_403)
2020-08-05 15:35:58 +02:00
.json({ error: 'Playlist is not public' })
}
res.locals.videoPlaylistSummary = videoPlaylist
2017-11-27 17:30:46 +01:00
return next()
2017-10-16 10:05:49 +02:00
}
2020-08-05 15:35:58 +02:00
2017-10-16 10:05:49 +02:00
]
// ---------------------------------------------------------------------------
export {
oembedValidator
}