1
0
Fork 0
peertube/server/helpers/utils.ts

55 lines
1.1 KiB
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import { pseudoRandomBytes } from 'crypto'
2015-06-09 15:41:40 +00:00
2017-05-15 20:22:03 +00:00
import { logger } from './logger'
function badRequest (req, res, next) {
res.type('json').status(400).end()
}
function generateRandomString (size, callback) {
2017-05-15 20:22:03 +00:00
pseudoRandomBytes(size, function (err, raw) {
if (err) return callback(err)
callback(null, raw.toString('hex'))
})
}
2015-06-09 15:41:40 +00:00
function cleanForExit (webtorrentProcess) {
logger.info('Gracefully exiting.')
process.kill(-webtorrentProcess.pid)
}
2017-02-26 17:57:33 +00:00
function createEmptyCallback () {
return function (err) {
if (err) logger.error('Error in empty callback.', { error: err })
}
}
function isTestInstance () {
return (process.env.NODE_ENV === 'test')
}
2017-01-04 19:59:23 +00:00
function getFormatedObjects (objects, objectsTotal) {
const formatedObjects = []
objects.forEach(function (object) {
formatedObjects.push(object.toFormatedJSON())
})
return {
total: objectsTotal,
data: formatedObjects
}
}
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
badRequest,
createEmptyCallback,
cleanForExit,
generateRandomString,
isTestInstance,
getFormatedObjects
}