2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
2017-10-25 05:55:06 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
2017-07-05 07:26:25 -04:00
|
|
|
import { ResultList } from '../../shared'
|
2017-10-02 06:20:26 -04:00
|
|
|
import { VideoResolution } from '../../shared/models/videos/video-resolution.enum'
|
2017-11-23 11:53:38 -05:00
|
|
|
import { CONFIG, database as db } from '../initializers'
|
2017-11-13 11:39:41 -05:00
|
|
|
import { AccountInstance } from '../models/account/account-interface'
|
2017-11-23 11:53:38 -05:00
|
|
|
import { pseudoRandomBytesPromise } from './core-utils'
|
2017-11-16 05:08:25 -05:00
|
|
|
import { logger } from './logger'
|
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) {
|
2017-10-25 10:03:33 -04:00
|
|
|
return res.type('json').status(400).end()
|
2016-12-30 06:53:41 -05:00
|
|
|
}
|
|
|
|
|
2017-10-25 10:03:33 -04:00
|
|
|
async function generateRandomString (size: number) {
|
|
|
|
const raw = await pseudoRandomBytesPromise(size)
|
|
|
|
|
|
|
|
return raw.toString('hex')
|
2017-02-26 12:57:33 -05:00
|
|
|
}
|
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
interface FormattableToJSON {
|
2017-08-25 05:45:31 -04:00
|
|
|
toFormattedJSON ()
|
2017-06-17 05:28:11 -04:00
|
|
|
}
|
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
function getFormattedObjects<U, T extends FormattableToJSON> (objects: T[], objectsTotal: number) {
|
2017-08-25 05:45:31 -04:00
|
|
|
const formattedObjects: U[] = []
|
2017-01-04 14:59:23 -05:00
|
|
|
|
2017-07-11 11:04:57 -04:00
|
|
|
objects.forEach(object => {
|
2017-08-25 05:45:31 -04:00
|
|
|
formattedObjects.push(object.toFormattedJSON())
|
2017-01-04 14:59:23 -05:00
|
|
|
})
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
const res: ResultList<U> = {
|
2017-01-04 14:59:23 -05:00
|
|
|
total: objectsTotal,
|
2017-08-25 05:45:31 -04:00
|
|
|
data: formattedObjects
|
2017-01-04 14:59:23 -05:00
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
|
|
|
|
return res
|
2017-01-04 14:59:23 -05:00
|
|
|
}
|
|
|
|
|
2017-10-25 10:03:33 -04:00
|
|
|
async function isSignupAllowed () {
|
2017-07-25 14:17:28 -04:00
|
|
|
if (CONFIG.SIGNUP.ENABLED === false) {
|
2017-10-25 10:03:33 -04:00
|
|
|
return false
|
2017-07-25 14:17:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// No limit and signup is enabled
|
|
|
|
if (CONFIG.SIGNUP.LIMIT === -1) {
|
2017-10-25 10:03:33 -04:00
|
|
|
return true
|
2017-07-25 14:17:28 -04:00
|
|
|
}
|
|
|
|
|
2017-10-25 10:03:33 -04:00
|
|
|
const totalUsers = await db.User.countTotal()
|
|
|
|
|
|
|
|
return totalUsers < CONFIG.SIGNUP.LIMIT
|
2017-07-25 14:17:28 -04:00
|
|
|
}
|
|
|
|
|
2017-10-02 06:20:26 -04: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 05:06:13 -04:00
|
|
|
if (configResolutions[resolution.toString()] === true && videoFileHeight > resolution) {
|
2017-10-02 06:20:26 -04:00
|
|
|
resolutionsEnabled.push(resolution)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolutionsEnabled
|
|
|
|
}
|
|
|
|
|
2017-10-25 05:55:06 -04:00
|
|
|
function resetSequelizeInstance (instance: Sequelize.Instance<any>, savedFields: object) {
|
|
|
|
Object.keys(savedFields).forEach(key => {
|
|
|
|
const value = savedFields[key]
|
|
|
|
instance.set(key, value)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-11-16 05:08:25 -05:00
|
|
|
let serverAccount: AccountInstance
|
|
|
|
async function getServerAccount () {
|
|
|
|
if (serverAccount === undefined) {
|
|
|
|
serverAccount = await db.Account.loadApplication()
|
2017-11-13 11:39:41 -05:00
|
|
|
}
|
|
|
|
|
2017-11-16 05:08:25 -05:00
|
|
|
if (!serverAccount) {
|
|
|
|
logger.error('Cannot load server account.')
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.resolve(serverAccount)
|
2017-11-13 11:39:41 -05:00
|
|
|
}
|
|
|
|
|
2017-09-22 03:13:43 -04:00
|
|
|
type SortType = { sortModel: any, sortValue: string }
|
|
|
|
|
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-08-25 05:45:31 -04:00
|
|
|
getFormattedObjects,
|
2017-09-22 03:13:43 -04:00
|
|
|
isSignupAllowed,
|
2017-10-02 06:20:26 -04:00
|
|
|
computeResolutionsToTranscode,
|
2017-10-25 05:55:06 -04:00
|
|
|
resetSequelizeInstance,
|
2017-11-16 05:08:25 -05:00
|
|
|
getServerAccount,
|
2017-09-22 03:13:43 -04:00
|
|
|
SortType
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|