2017-06-10 15:15:25 -05:00
|
|
|
import * as express from 'express'
|
2017-07-25 13:17:28 -05:00
|
|
|
import * as Promise from 'bluebird'
|
2017-06-10 15:15:25 -05:00
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
import { pseudoRandomBytesPromise } from './core-utils'
|
2017-07-25 13:17:28 -05:00
|
|
|
import { CONFIG, database as db } from '../initializers'
|
2017-07-05 06:26:25 -05:00
|
|
|
import { ResultList } from '../../shared'
|
2017-10-02 05:20:26 -05:00
|
|
|
import { VideoResolution } from '../../shared/models/videos/video-resolution.enum'
|
2016-05-10 14:19:24 -05:00
|
|
|
|
2017-06-10 15:15:25 -05:00
|
|
|
function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-30 05:53:41 -06:00
|
|
|
res.type('json').status(400).end()
|
|
|
|
}
|
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
function generateRandomString (size: number) {
|
|
|
|
return pseudoRandomBytesPromise(size).then(raw => raw.toString('hex'))
|
2017-02-26 11:57:33 -06:00
|
|
|
}
|
|
|
|
|
2017-10-02 05:20:26 -05:00
|
|
|
interface FormattableToJSON {
|
2017-08-25 04:45:31 -05:00
|
|
|
toFormattedJSON ()
|
2017-06-17 04:28:11 -05:00
|
|
|
}
|
|
|
|
|
2017-10-02 05:20:26 -05:00
|
|
|
function getFormattedObjects<U, T extends FormattableToJSON> (objects: T[], objectsTotal: number) {
|
2017-08-25 04:45:31 -05:00
|
|
|
const formattedObjects: U[] = []
|
2017-01-04 13:59:23 -06:00
|
|
|
|
2017-07-11 10:04:57 -05:00
|
|
|
objects.forEach(object => {
|
2017-08-25 04:45:31 -05:00
|
|
|
formattedObjects.push(object.toFormattedJSON())
|
2017-01-04 13:59:23 -06:00
|
|
|
})
|
|
|
|
|
2017-07-05 06:26:25 -05:00
|
|
|
const res: ResultList<U> = {
|
2017-01-04 13:59:23 -06:00
|
|
|
total: objectsTotal,
|
2017-08-25 04:45:31 -05:00
|
|
|
data: formattedObjects
|
2017-01-04 13:59:23 -06:00
|
|
|
}
|
2017-07-05 06:26:25 -05:00
|
|
|
|
|
|
|
return res
|
2017-01-04 13:59:23 -06:00
|
|
|
}
|
|
|
|
|
2017-07-25 13:17:28 -05: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
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-02 05:20:26 -05:00
|
|
|
function computeResolutionsToTranscode (videoFileHeight: number) {
|
|
|
|
const resolutionsEnabled: number[] = []
|
|
|
|
const configResolutions = CONFIG.TRANSCODING.RESOLUTIONS
|
|
|
|
|
|
|
|
const resolutions = [
|
|
|
|
VideoResolution.H_240P,
|
|
|
|
VideoResolution.H_360P,
|
|
|
|
VideoResolution.H_480P,
|
|
|
|
VideoResolution.H_720P,
|
|
|
|
VideoResolution.H_1080P
|
|
|
|
]
|
|
|
|
|
|
|
|
for (const resolution of resolutions) {
|
2017-10-09 04:06:13 -05:00
|
|
|
if (configResolutions[resolution.toString()] === true && videoFileHeight > resolution) {
|
2017-10-02 05:20:26 -05:00
|
|
|
resolutionsEnabled.push(resolution)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolutionsEnabled
|
|
|
|
}
|
|
|
|
|
2017-09-22 02:13:43 -05:00
|
|
|
type SortType = { sortModel: any, sortValue: string }
|
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export {
|
|
|
|
badRequest,
|
|
|
|
generateRandomString,
|
2017-08-25 04:45:31 -05:00
|
|
|
getFormattedObjects,
|
2017-09-22 02:13:43 -05:00
|
|
|
isSignupAllowed,
|
2017-10-02 05:20:26 -05:00
|
|
|
computeResolutionsToTranscode,
|
2017-09-22 02:13:43 -05:00
|
|
|
SortType
|
2017-05-15 15:22:03 -05:00
|
|
|
}
|