PeerTube/server/middlewares/validators/oembed.ts

136 lines
3.8 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'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
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'
2017-10-16 10:05:49 +02:00
const playlistPaths = [
join('videos', 'watch', 'playlist'),
join('w', 'p')
]
const videoPaths = [
join('videos', 'watch'),
'w'
]
function buildUrls (paths: string[]) {
return paths.map(p => WEBSERVER.SCHEME + '://' + join(WEBSERVER.HOST, p) + '/')
}
const startPlaylistURLs = buildUrls(playlistPaths)
const startVideoURLs = buildUrls(videoPaths)
2020-08-05 15:35:58 +02:00
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.fail({
status: HttpStatusCode.NOT_IMPLEMENTED_501,
message: 'Requested format is not implemented on server.',
data: {
format: req.query.format
}
})
2017-11-27 17:30:46 +01:00
}
2020-06-17 12:42:16 +02:00
const url = req.query.url as string
const isPlaylist = startPlaylistURLs.some(u => url.startsWith(u))
const isVideo = isPlaylist ? false : startVideoURLs.some(u => url.startsWith(u))
2020-08-05 15:35:58 +02:00
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.fail({
status: HttpStatusCode.BAD_REQUEST_400,
message: 'Invalid url.',
data: {
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.fail({ message: '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.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video not found'
})
2020-08-05 15:35:58 +02:00
}
2017-10-16 10:05:49 +02:00
2020-08-05 15:35:58 +02:00
if (video.privacy !== VideoPrivacy.PUBLIC) {
return res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: 'Video is not public'
})
2020-08-05 15:35:58 +02:00
}
res.locals.videoAll = video
return next()
}
// Is playlist
const videoPlaylist = await VideoPlaylistModel.loadWithAccountAndChannelSummary(elementId, undefined)
if (!videoPlaylist) {
return res.fail({
status: HttpStatusCode.NOT_FOUND_404,
message: 'Video playlist not found'
})
2020-08-05 15:35:58 +02:00
}
if (videoPlaylist.privacy !== VideoPlaylistPrivacy.PUBLIC) {
return res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: 'Playlist is not public'
})
2020-08-05 15:35:58 +02:00
}
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
}