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

58 lines
1.3 KiB
TypeScript
Raw Normal View History

2017-06-10 20:15:25 +00:00
import * as express from 'express'
import * as Promise from 'bluebird'
2017-06-10 20:15:25 +00:00
import { pseudoRandomBytesPromise } from './core-utils'
import { CONFIG, database as db } from '../initializers'
import { ResultList } from '../../shared'
2017-06-10 20:15:25 +00: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 17:57:33 +00:00
}
2017-06-17 09:28:11 +00:00
interface FormatableToJSON {
2017-08-25 09:45:31 +00:00
toFormattedJSON ()
2017-06-17 09:28:11 +00:00
}
2017-08-25 09:45:31 +00:00
function getFormattedObjects<U, T extends FormatableToJSON> (objects: T[], objectsTotal: number) {
const formattedObjects: U[] = []
2017-01-04 19:59:23 +00:00
2017-07-11 15:04:57 +00:00
objects.forEach(object => {
2017-08-25 09:45:31 +00:00
formattedObjects.push(object.toFormattedJSON())
2017-01-04 19:59:23 +00:00
})
const res: ResultList<U> = {
2017-01-04 19:59:23 +00:00
total: objectsTotal,
2017-08-25 09:45:31 +00:00
data: formattedObjects
2017-01-04 19:59:23 +00:00
}
return res
2017-01-04 19:59:23 +00:00
}
function isSignupAllowed () {
if (CONFIG.SIGNUP.ENABLED === false) {
return Promise.resolve(false)
}
// No limit and signup is enabled
if (CONFIG.SIGNUP.LIMIT === -1) {
return Promise.resolve(true)
}
return db.User.countTotal().then(totalUsers => {
return totalUsers < CONFIG.SIGNUP.LIMIT
})
}
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
badRequest,
generateRandomString,
2017-08-25 09:45:31 +00:00
getFormattedObjects,
isSignupAllowed
2017-05-15 20:22:03 +00:00
}