aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/custom-validators/logs.ts
blob: 215dbb0e1319c76f2d5656c6bec2070e7945c644 (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
import validator from 'validator'
import { CONSTRAINTS_FIELDS } from '@server/initializers/constants'
import { ClientLogLevel, ServerLogLevel } from '@shared/models'
import { exists } from './misc'

const serverLogLevels = new Set<ServerLogLevel>([ 'debug', 'info', 'warn', 'error' ])
const clientLogLevels = new Set<ClientLogLevel>([ 'warn', 'error' ])

function isValidLogLevel (value: any) {
  return exists(value) && serverLogLevels.has(value)
}

function isValidClientLogMessage (value: any) {
  return typeof value === 'string' && validator.isLength(value, CONSTRAINTS_FIELDS.LOGS.CLIENT_MESSAGE)
}

function isValidClientLogLevel (value: any) {
  return exists(value) && clientLogLevels.has(value)
}

function isValidClientLogStackTrace (value: any) {
  return typeof value === 'string' && validator.isLength(value, CONSTRAINTS_FIELDS.LOGS.CLIENT_STACK_TRACE)
}

function isValidClientLogMeta (value: any) {
  return typeof value === 'string' && validator.isLength(value, CONSTRAINTS_FIELDS.LOGS.CLIENT_META)
}

function isValidClientLogUserAgent (value: any) {
  return typeof value === 'string' && validator.isLength(value, CONSTRAINTS_FIELDS.LOGS.CLIENT_USER_AGENT)
}

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

export {
  isValidLogLevel,
  isValidClientLogMessage,
  isValidClientLogStackTrace,
  isValidClientLogMeta,
  isValidClientLogLevel,
  isValidClientLogUserAgent
}