PeerTube/server/helpers/utils.ts

58 lines
1.3 KiB
TypeScript
Raw Normal View History

2017-06-10 15:15:25 -05:00
import * as express from 'express'
2017-05-15 15:22:03 -05:00
import { pseudoRandomBytes } from 'crypto'
2017-05-22 13:58:25 -05:00
import { join } from 'path'
2015-06-09 10:41:40 -05:00
2017-05-15 15:22:03 -05:00
import { logger } from './logger'
2017-06-10 15:15:25 -05:00
function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
res.type('json').status(400).end()
}
2017-06-10 15:15:25 -05:00
function generateRandomString (size: number, callback: (err: Error, randomString?: string) => void) {
2017-05-15 15:22:03 -05:00
pseudoRandomBytes(size, function (err, raw) {
if (err) return callback(err)
callback(null, raw.toString('hex'))
})
}
2015-06-09 10:41:40 -05:00
2017-02-26 11:57:33 -06:00
function createEmptyCallback () {
return function (err) {
if (err) logger.error('Error in empty callback.', { error: err })
}
}
function isTestInstance () {
2017-06-10 15:15:25 -05:00
return process.env.NODE_ENV === 'test'
}
2017-06-10 15:15:25 -05:00
function getFormatedObjects (objects: any[], objectsTotal: number) {
2017-01-04 13:59:23 -06:00
const formatedObjects = []
objects.forEach(function (object) {
formatedObjects.push(object.toFormatedJSON())
})
return {
total: objectsTotal,
data: formatedObjects
}
}
2017-05-22 13:58:25 -05:00
function root () {
// We are in /dist/helpers/utils.js
return join(__dirname, '..', '..', '..')
}
// ---------------------------------------------------------------------------
2016-01-31 04:23:52 -06:00
2017-05-15 15:22:03 -05:00
export {
badRequest,
createEmptyCallback,
generateRandomString,
isTestInstance,
2017-05-22 13:58:25 -05:00
getFormatedObjects,
root
2017-05-15 15:22:03 -05:00
}