2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
import { pseudoRandomBytesPromise } from './core-utils'
|
|
|
|
import { ResultList } from '../../shared'
|
2016-05-10 15:19:24 -04:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-30 06:53:41 -05:00
|
|
|
res.type('json').status(400).end()
|
|
|
|
}
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
function generateRandomString (size: number) {
|
|
|
|
return pseudoRandomBytesPromise(size).then(raw => raw.toString('hex'))
|
2017-02-26 12:57:33 -05:00
|
|
|
}
|
|
|
|
|
2017-06-17 05:28:11 -04:00
|
|
|
interface FormatableToJSON {
|
2017-06-20 14:34:41 -04:00
|
|
|
toFormatedJSON ()
|
2017-06-17 05:28:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getFormatedObjects<U, T extends FormatableToJSON> (objects: T[], objectsTotal: number) {
|
|
|
|
const formatedObjects: U[] = []
|
2017-01-04 14:59:23 -05:00
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
objects.forEach(object => {
|
2017-01-04 14:59:23 -05:00
|
|
|
formatedObjects.push(object.toFormatedJSON())
|
|
|
|
})
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
const res: ResultList<U> = {
|
2017-01-04 14:59:23 -05:00
|
|
|
total: objectsTotal,
|
|
|
|
data: formatedObjects
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
|
|
|
|
return res
|
2017-01-04 14:59:23 -05:00
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
|
|
|
badRequest,
|
|
|
|
generateRandomString,
|
2017-06-11 09:19:43 -04:00
|
|
|
getFormatedObjects
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|