aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/utils.ts
blob: 5b8d21f70d1cdfe0d9db79f7d625fae730184903 (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
import * as express from 'express'

import { pseudoRandomBytes } from 'crypto'

import { logger } from './logger'

function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
  res.type('json').status(400).end()
}

function generateRandomString (size: number, callback: (err: Error, randomString?: string) => void) {
  pseudoRandomBytes(size, function (err, raw) {
    if (err) return callback(err)

    callback(null, raw.toString('hex'))
  })
}

function createEmptyCallback () {
  return function (err) {
    if (err) logger.error('Error in empty callback.', { error: err })
  }
}

interface FormatableToJSON {
  toFormatedJSON()
}

function getFormatedObjects<U, T extends FormatableToJSON> (objects: T[], objectsTotal: number) {
  const formatedObjects: U[] = []

  objects.forEach(function (object) {
    formatedObjects.push(object.toFormatedJSON())
  })

  return {
    total: objectsTotal,
    data: formatedObjects
  }
}

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

export {
  badRequest,
  createEmptyCallback,
  generateRandomString,
  getFormatedObjects
}