2017-06-10 22:15:25 +02:00
|
|
|
import * as express from 'express'
|
2017-07-25 20:17:28 +02:00
|
|
|
import * as Promise from 'bluebird'
|
2017-06-10 22:15:25 +02:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
import { pseudoRandomBytesPromise } from './core-utils'
|
2017-07-25 20:17:28 +02:00
|
|
|
import { CONFIG, database as db } from '../initializers'
|
2017-07-05 13:26:25 +02:00
|
|
|
import { ResultList } from '../../shared'
|
2016-05-10 21:19:24 +02:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-30 12:53:41 +01:00
|
|
|
res.type('json').status(400).end()
|
|
|
|
}
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
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-08-25 11:45:31 +02:00
|
|
|
toFormattedJSON ()
|
2017-06-17 11:28:11 +02:00
|
|
|
}
|
|
|
|
|
2017-08-25 11:45:31 +02:00
|
|
|
function getFormattedObjects<U, T extends FormatableToJSON> (objects: T[], objectsTotal: number) {
|
|
|
|
const formattedObjects: U[] = []
|
2017-01-04 20:59:23 +01:00
|
|
|
|
2017-07-11 17:04:57 +02:00
|
|
|
objects.forEach(object => {
|
2017-08-25 11:45:31 +02:00
|
|
|
formattedObjects.push(object.toFormattedJSON())
|
2017-01-04 20:59:23 +01:00
|
|
|
})
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
const res: ResultList<U> = {
|
2017-01-04 20:59:23 +01:00
|
|
|
total: objectsTotal,
|
2017-08-25 11:45:31 +02:00
|
|
|
data: formattedObjects
|
2017-01-04 20:59:23 +01:00
|
|
|
}
|
2017-07-05 13:26:25 +02:00
|
|
|
|
|
|
|
return res
|
2017-01-04 20:59:23 +01:00
|
|
|
}
|
|
|
|
|
2017-07-25 20:17:28 +02: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-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
badRequest,
|
|
|
|
generateRandomString,
|
2017-08-25 11:45:31 +02:00
|
|
|
getFormattedObjects,
|
2017-07-25 20:17:28 +02:00
|
|
|
isSignupAllowed
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|