PeerTube/server/middlewares/validators/oembed.ts

155 lines
4.3 KiB
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import 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'
import { loadVideo } from '@server/lib/model-loaders'
2020-08-05 15:35:58 +02:00
import { VideoPlaylistModel } from '@server/models/video/video-playlist'
import { VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
2021-07-16 10:42:24 +02:00
import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
import { isTestOrDevInstance } from '../../helpers/core-utils'
2022-05-02 14:57:37 +02:00
import { isIdOrUUIDValid, isUUIDValid, toCompleteUUID } 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'
import { areValidationErrors } from './shared'
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
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 (isTestOrDevInstance()) {
2017-10-16 10:05:49 +02:00
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
2021-10-08 14:49:15 +02:00
let urlPath: string
try {
urlPath = new URL(url).pathname
} catch (err) {
return res.fail({
status: HttpStatusCode.BAD_REQUEST_400,
message: err.message,
data: {
url
}
})
}
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
2021-10-11 14:57:53 +02:00
const parts = urlPath.split('/')
2020-06-17 12:42:16 +02:00
2021-10-11 14:57:53 +02:00
if (startIsOk === false || parts.length === 0) {
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
2021-10-11 14:57:53 +02:00
const elementId = toCompleteUUID(parts.pop())
2020-08-05 15:35:58 +02:00
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 loadVideo(elementId, 'all')
2020-08-05 15:35:58 +02:00
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
2022-05-02 14:57:37 +02:00
if (
video.privacy === VideoPrivacy.PUBLIC ||
(video.privacy === VideoPrivacy.UNLISTED && isUUIDValid(elementId) === true)
) {
res.locals.videoAll = video
return next()
2020-08-05 15:35:58 +02:00
}
2022-05-02 14:57:37 +02:00
return res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: 'Video is not publicly available'
})
2020-08-05 15:35:58 +02:00
}
// 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
}
2022-05-02 14:57:37 +02:00
if (
videoPlaylist.privacy === VideoPlaylistPrivacy.PUBLIC ||
(videoPlaylist.privacy === VideoPlaylistPrivacy.UNLISTED && isUUIDValid(elementId))
) {
res.locals.videoPlaylistSummary = videoPlaylist
return next()
2020-08-05 15:35:58 +02:00
}
2022-05-02 14:57:37 +02:00
return res.fail({
status: HttpStatusCode.FORBIDDEN_403,
message: 'Playlist is not public'
})
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
}