2016-02-07 04:23:23 -06:00
|
|
|
'use strict'
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-05-10 14:19:24 -05:00
|
|
|
const crypto = require('crypto')
|
2017-01-06 16:24:47 -06:00
|
|
|
const retry = require('async/retry')
|
2016-05-10 14:19:24 -05:00
|
|
|
|
2016-03-16 16:29:27 -05:00
|
|
|
const logger = require('./logger')
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-03-16 16:29:27 -05:00
|
|
|
const utils = {
|
2016-12-30 05:53:41 -06:00
|
|
|
badRequest,
|
2016-10-02 05:19:02 -05:00
|
|
|
cleanForExit,
|
2016-11-16 13:22:17 -06:00
|
|
|
generateRandomString,
|
2017-01-04 13:59:23 -06:00
|
|
|
isTestInstance,
|
2017-01-06 16:24:47 -06:00
|
|
|
getFormatedObjects,
|
|
|
|
transactionRetryer
|
2016-05-10 14:19:24 -05:00
|
|
|
}
|
|
|
|
|
2016-12-30 05:53:41 -06:00
|
|
|
function badRequest (req, res, next) {
|
|
|
|
res.type('json').status(400).end()
|
|
|
|
}
|
|
|
|
|
2016-05-10 14:19:24 -05:00
|
|
|
function generateRandomString (size, callback) {
|
|
|
|
crypto.pseudoRandomBytes(size, function (err, raw) {
|
|
|
|
if (err) return callback(err)
|
|
|
|
|
|
|
|
callback(null, raw.toString('hex'))
|
|
|
|
})
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2015-06-09 10:41:40 -05:00
|
|
|
|
2016-05-11 14:19:34 -05:00
|
|
|
function cleanForExit (webtorrentProcess) {
|
2016-02-07 04:23:23 -06:00
|
|
|
logger.info('Gracefully exiting.')
|
2016-05-11 14:19:34 -05:00
|
|
|
process.kill(-webtorrentProcess.pid)
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2015-11-02 15:19:39 -06:00
|
|
|
|
2016-11-16 13:22:17 -06:00
|
|
|
function isTestInstance () {
|
|
|
|
return (process.env.NODE_ENV === 'test')
|
|
|
|
}
|
|
|
|
|
2017-01-04 13:59:23 -06:00
|
|
|
function getFormatedObjects (objects, objectsTotal) {
|
|
|
|
const formatedObjects = []
|
|
|
|
|
|
|
|
objects.forEach(function (object) {
|
|
|
|
formatedObjects.push(object.toFormatedJSON())
|
|
|
|
})
|
|
|
|
|
|
|
|
return {
|
|
|
|
total: objectsTotal,
|
|
|
|
data: formatedObjects
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-06 16:24:47 -06:00
|
|
|
function transactionRetryer (func, callback) {
|
|
|
|
retry({
|
|
|
|
times: 5,
|
|
|
|
|
|
|
|
errorFilter: function (err) {
|
|
|
|
const willRetry = (err.name === 'SequelizeDatabaseError')
|
|
|
|
logger.debug('Maybe retrying the transaction function.', { willRetry })
|
|
|
|
return willRetry
|
|
|
|
}
|
|
|
|
}, func, callback)
|
|
|
|
}
|
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
module.exports = utils
|