aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/shared/utils.ts
blob: f39128fddd8da8e6c240136991aa32e591b11ee5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import express from 'express'
import { param, validationResult } from 'express-validator'
import { isIdOrUUIDValid, toCompleteUUID } from '@server/helpers/custom-validators/misc'
import { logger } from '../../../helpers/logger'

function areValidationErrors (
  req: express.Request,
  res: express.Response,
  options: {
    omitLog?: boolean
    omitBodyLog?: boolean
    tags?: string[]
  } = {}) {
  const { omitLog = false, omitBodyLog = false, tags = [] } = options

  if (!omitLog) {
    logger.debug(
      'Checking %s - %s parameters',
      req.method, req.originalUrl,
      {
        body: omitBodyLog
          ? 'omitted'
          : req.body,
        params: req.params,
        query: req.query,
        files: req.files,
        tags
      }
    )
  }

  const errors = validationResult(req)

  if (!errors.isEmpty()) {
    logger.warn('Incorrect request parameters', { path: req.originalUrl, err: errors.mapped() })

    res.fail({
      message: 'Incorrect request parameters: ' + Object.keys(errors.mapped()).join(', '),
      instance: req.originalUrl,
      data: {
        'invalid-params': errors.mapped()
      }
    })

    return true
  }

  return false
}

function isValidVideoIdParam (paramName: string) {
  return param(paramName)
    .customSanitizer(toCompleteUUID)
    .custom(isIdOrUUIDValid).withMessage('Should have a valid video id (id, short UUID or UUID)')
}

function isValidPlaylistIdParam (paramName: string) {
  return param(paramName)
    .customSanitizer(toCompleteUUID)
    .custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id (id, short UUID or UUID)')
}

// ---------------------------------------------------------------------------

export {
  areValidationErrors,
  isValidVideoIdParam,
  isValidPlaylistIdParam
}