]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/middlewares/validators/oembed.ts
Move config in its own file
[github/Chocobozzz/PeerTube.git] / server / middlewares / validators / oembed.ts
CommitLineData
d8755eed 1import * as express from 'express'
a2431b7d 2import { query } from 'express-validator/check'
d8755eed 3import { join } from 'path'
da854ddd 4import { isTestInstance } from '../../helpers/core-utils'
3fd3ab2d 5import { isIdOrUUIDValid } from '../../helpers/custom-validators/misc'
0f6acda1 6import { doesVideoExist } from '../../helpers/custom-validators/videos'
da854ddd 7import { logger } from '../../helpers/logger'
a2431b7d 8import { areValidationErrors } from './utils'
6dd9de95 9import { WEBSERVER } from '../../initializers/constants'
d8755eed 10
6dd9de95 11const urlShouldStartWith = WEBSERVER.SCHEME + '://' + join(WEBSERVER.HOST, 'videos', 'watch') + '/'
d8755eed
C
12const videoWatchRegex = new RegExp('([^/]+)$')
13const isURLOptions = {
14 require_host: true,
15 require_tld: true
16}
17
18// We validate 'localhost', so we don't have the top level domain
19if (isTestInstance()) {
20 isURLOptions.require_tld = false
21}
22
23const oembedValidator = [
24 query('url').isURL(isURLOptions).withMessage('Should have a valid url'),
25 query('maxwidth').optional().isInt().withMessage('Should have a valid max width'),
26 query('maxheight').optional().isInt().withMessage('Should have a valid max height'),
27 query('format').optional().isIn([ 'xml', 'json' ]).withMessage('Should have a valid format'),
28
a2431b7d 29 async (req: express.Request, res: express.Response, next: express.NextFunction) => {
d8755eed
C
30 logger.debug('Checking oembed parameters', { parameters: req.query })
31
a2431b7d
C
32 if (areValidationErrors(req, res)) return
33
34 if (req.query.format !== undefined && req.query.format !== 'json') {
35 return res.status(501)
36 .json({ error: 'Requested format is not implemented on server.' })
37 .end()
38 }
39
40 const startIsOk = req.query.url.startsWith(urlShouldStartWith)
41 const matches = videoWatchRegex.exec(req.query.url)
42 if (startIsOk === false || matches === null) {
43 return res.status(400)
44 .json({ error: 'Invalid url.' })
45 .end()
46 }
d8755eed 47
a2431b7d
C
48 const videoId = matches[1]
49 if (isIdOrUUIDValid(videoId) === false) {
50 return res.status(400)
51 .json({ error: 'Invalid video id.' })
52 .end()
53 }
d8755eed 54
0f6acda1 55 if (!await doesVideoExist(videoId, res)) return
d8755eed 56
a2431b7d 57 return next()
d8755eed
C
58 }
59]
60
61// ---------------------------------------------------------------------------
62
63export {
64 oembedValidator
65}