X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Futils.ts;h=5a4fe4fdd5b27f13228b13539ab6e4d0e9bd96d6;hb=2a4c0d8bbe29178ae90e776bb9453f86e6d23bd9;hp=ce07ceff9f231b1ac37da765992f7c718ab045e2;hpb=792dbaf07f83fbe3f1d209cd9edf190442c7d2f3;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/utils.ts b/server/helpers/utils.ts index ce07ceff9..5a4fe4fdd 100644 --- a/server/helpers/utils.ts +++ b/server/helpers/utils.ts @@ -1,60 +1,70 @@ -import * as express from 'express' -import * as Promise from 'bluebird' +import { remove } from 'fs-extra' +import { Instance as ParseTorrent } from 'parse-torrent' +import { join } from 'path' +import { sha256 } from '@shared/extra-utils' +import { ResultList } from '@shared/models' +import { CONFIG } from '../initializers/config' +import { randomBytesPromise } from './core-utils' +import { logger } from './logger' -import { pseudoRandomBytesPromise } from './core-utils' -import { CONFIG, database as db } from '../initializers' -import { ResultList } from '../../shared' - -function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) { - res.type('json').status(400).end() +function deleteFileAndCatch (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 randomBytesPromise(size) -interface FormatableToJSON { - toFormattedJSON () + return raw.toString('hex') } -function getFormattedObjects (objects: T[], objectsTotal: number) { - const formattedObjects: U[] = [] +interface FormattableToJSON { + toFormattedJSON (args?: U): V +} - objects.forEach(object => { - formattedObjects.push(object.toFormattedJSON()) - }) +function getFormattedObjects> (objects: T[], objectsTotal: number, formattedArg?: U) { + const formattedObjects = objects.map(o => o.toFormattedJSON(formattedArg)) - const res: ResultList = { + return { total: objectsTotal, data: formattedObjects - } - - return res + } as ResultList } -function isSignupAllowed () { - if (CONFIG.SIGNUP.ENABLED === false) { - return Promise.resolve(false) - } +function generateVideoImportTmpPath (target: string | ParseTorrent, extension = '.mp4') { + const id = typeof target === 'string' + ? target + : target.infoHash - // No limit and signup is enabled - if (CONFIG.SIGNUP.LIMIT === -1) { - return Promise.resolve(true) - } + const hash = sha256(id) + return join(CONFIG.STORAGE.TMP_DIR, `${hash}-import${extension}`) +} - return db.User.countTotal().then(totalUsers => { - return totalUsers < CONFIG.SIGNUP.LIMIT - }) +function getSecureTorrentName (originalName: string) { + return sha256(originalName) + '.torrent' } -type SortType = { sortModel: any, sortValue: string } +/** + * From a filename like "ede4cba5-742b-46fa-a388-9a6eb3a3aeb3.mp4", returns + * only the "ede4cba5-742b-46fa-a388-9a6eb3a3aeb3" part. If the filename does + * not contain a UUID, returns null. + */ +function getUUIDFromFilename (filename: string) { + const regex = /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/ + const result = filename.match(regex) + + if (!result || Array.isArray(result) === false) return null + + return result[0] +} // --------------------------------------------------------------------------- export { - badRequest, + deleteFileAndCatch, generateRandomString, getFormattedObjects, - isSignupAllowed, - SortType + getSecureTorrentName, + generateVideoImportTmpPath, + getUUIDFromFilename }