PeerTube/server/helpers/utils.ts

40 lines
926 B
TypeScript
Raw Normal View History

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