X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Futils.ts;h=a42474417769c4aeb97f9c8b5cf0b3e8757d7afc;hb=39ba2e8e3a71961cd0087c57d25905f6a97a6b69;hp=3317dddc33de5cfea04bcbc2081004b33e9f55bc;hpb=14d3270f363245d2c83fcc2ac109e39743b5627e;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/utils.ts b/server/helpers/utils.ts index 3317dddc3..a42474417 100644 --- a/server/helpers/utils.ts +++ b/server/helpers/utils.ts @@ -1,83 +1,66 @@ -import * as express from 'express' -import * as Promise from 'bluebird' - -import { pseudoRandomBytesPromise } from './core-utils' -import { CONFIG, database as db } from '../initializers' import { ResultList } from '../../shared' -import { VideoResolution } from '../../shared/models/videos/video-resolution.enum' - -function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) { - res.type('json').status(400).end() +import { CONFIG } from '../initializers' +import { ApplicationModel } from '../models/application/application' +import { pseudoRandomBytesPromise, sha256 } from './core-utils' +import { logger } from './logger' +import { join } from 'path' +import { Instance as ParseTorrent } from 'parse-torrent' +import { remove } from 'fs-extra' +import * as memoizee from 'memoizee' + +function deleteFileAsync (path: string) { + remove(path) + .catch(err => logger.error('Cannot delete the file %s asynchronously.', path, { err })) } -function generateRandomString (size: number) { - return pseudoRandomBytesPromise(size).then(raw => raw.toString('hex')) +async function generateRandomString (size: number) { + const raw = await pseudoRandomBytesPromise(size) + + return raw.toString('hex') } interface FormattableToJSON { - toFormattedJSON () + toFormattedJSON (args?: any) } -function getFormattedObjects (objects: T[], objectsTotal: number) { +function getFormattedObjects (objects: T[], objectsTotal: number, formattedArg?: any) { const formattedObjects: U[] = [] objects.forEach(object => { - formattedObjects.push(object.toFormattedJSON()) + formattedObjects.push(object.toFormattedJSON(formattedArg)) }) - const res: ResultList = { + return { total: objectsTotal, data: formattedObjects - } - - return res -} - -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 - }) + } as ResultList } -function computeResolutionsToTranscode (videoFileHeight: number) { - const resolutionsEnabled: number[] = [] - const configResolutions = CONFIG.TRANSCODING.RESOLUTIONS +const getServerActor = memoizee(async function () { + const application = await ApplicationModel.load() + if (!application) throw Error('Could not load Application from database.') - const resolutions = [ - VideoResolution.H_240P, - VideoResolution.H_360P, - VideoResolution.H_480P, - VideoResolution.H_720P, - VideoResolution.H_1080P - ] + return application.Account.Actor +}) - for (const resolution of resolutions) { - if (configResolutions[resolution.toString()] === true && videoFileHeight > resolution) { - resolutionsEnabled.push(resolution) - } - } +function generateVideoTmpPath (target: string | ParseTorrent) { + const id = typeof target === 'string' ? target : target.infoHash - return resolutionsEnabled + const hash = sha256(id) + return join(CONFIG.STORAGE.VIDEOS_DIR, hash + '-import.mp4') } -type SortType = { sortModel: any, sortValue: string } +function getSecureTorrentName (originalName: string) { + return sha256(originalName) + '.torrent' +} // --------------------------------------------------------------------------- export { - badRequest, + deleteFileAsync, generateRandomString, getFormattedObjects, - isSignupAllowed, - computeResolutionsToTranscode, - SortType + getSecureTorrentName, + getServerActor, + generateVideoTmpPath }