1
0
Fork 0
peertube/server/helpers/utils.ts

165 lines
3.9 KiB
TypeScript
Raw Normal View History

2017-06-10 20:15:25 +00:00
import * as express from 'express'
2017-12-29 18:10:13 +00:00
import * as multer from 'multer'
2017-12-12 16:53:50 +00:00
import { Model } from 'sequelize-typescript'
import { ResultList } from '../../shared'
2017-12-12 16:53:50 +00:00
import { VideoResolution } from '../../shared/models/videos'
2018-01-03 09:12:36 +00:00
import { CONFIG, REMOTE_SCHEME } from '../initializers'
2017-12-12 16:53:50 +00:00
import { UserModel } from '../models/account/user'
2017-12-14 16:38:41 +00:00
import { ActorModel } from '../models/activitypub/actor'
import { ApplicationModel } from '../models/application/application'
2017-11-23 16:53:38 +00:00
import { pseudoRandomBytesPromise } from './core-utils'
import { logger } from './logger'
2017-12-19 13:21:14 +00:00
function getHostWithPort (host: string) {
const splitted = host.split(':')
// The port was not specified
if (splitted.length === 1) {
if (REMOTE_SCHEME.HTTP === 'https') return host + ':443'
return host + ':80'
}
return host
}
2017-06-10 20:15:25 +00:00
function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) {
return res.type('json').status(400).end()
}
function createReqFiles (
fieldNames: string[],
mimeTypes: { [ id: string ]: string },
destinations: { [ fieldName: string ]: string }
) {
2017-12-29 18:10:13 +00:00
const storage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, destinations[file.fieldname])
2017-12-29 18:10:13 +00:00
},
filename: async (req, file, cb) => {
const extension = mimeTypes[file.mimetype]
let randomString = ''
try {
randomString = await generateRandomString(16)
} catch (err) {
2018-03-26 13:54:13 +00:00
logger.error('Cannot generate random string for file name.', { err })
2017-12-29 18:10:13 +00:00
randomString = 'fake-random-string'
}
cb(null, randomString + extension)
}
})
const fields = []
for (const fieldName of fieldNames) {
fields.push({
name: fieldName,
maxCount: 1
})
}
return multer({ storage }).fields(fields)
2017-12-29 18:10:13 +00:00
}
async function generateRandomString (size: number) {
const raw = await pseudoRandomBytesPromise(size)
return raw.toString('hex')
2017-02-26 17:57:33 +00:00
}
interface FormattableToJSON {
2017-08-25 09:45:31 +00:00
toFormattedJSON ()
2017-06-17 09:28:11 +00:00
}
function getFormattedObjects<U, T extends FormattableToJSON> (objects: T[], objectsTotal: number) {
2017-08-25 09:45:31 +00:00
const formattedObjects: U[] = []
2017-01-04 19:59:23 +00:00
2017-07-11 15:04:57 +00:00
objects.forEach(object => {
2017-08-25 09:45:31 +00:00
formattedObjects.push(object.toFormattedJSON())
2017-01-04 19:59:23 +00:00
})
const res: ResultList<U> = {
2017-01-04 19:59:23 +00:00
total: objectsTotal,
2017-08-25 09:45:31 +00:00
data: formattedObjects
2017-01-04 19:59:23 +00:00
}
return res
2017-01-04 19:59:23 +00:00
}
async function isSignupAllowed () {
if (CONFIG.SIGNUP.ENABLED === false) {
return false
}
// No limit and signup is enabled
if (CONFIG.SIGNUP.LIMIT === -1) {
return true
}
2017-12-12 16:53:50 +00:00
const totalUsers = await UserModel.countTotal()
return totalUsers < CONFIG.SIGNUP.LIMIT
}
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) {
if (configResolutions[resolution + 'p'] === true && videoFileHeight > resolution) {
resolutionsEnabled.push(resolution)
}
}
return resolutionsEnabled
}
2017-12-12 16:53:50 +00:00
function resetSequelizeInstance (instance: Model<any>, savedFields: object) {
2017-10-25 09:55:06 +00:00
Object.keys(savedFields).forEach(key => {
const value = savedFields[key]
instance.set(key, value)
})
}
2017-12-14 16:38:41 +00:00
let serverActor: ActorModel
async function getServerActor () {
if (serverActor === undefined) {
const application = await ApplicationModel.load()
serverActor = application.Account.Actor
2017-11-13 16:39:41 +00:00
}
2017-12-14 16:38:41 +00:00
if (!serverActor) {
logger.error('Cannot load server actor.')
process.exit(0)
}
2017-12-14 16:38:41 +00:00
return Promise.resolve(serverActor)
2017-11-13 16:39:41 +00:00
}
Handle blacklist (#84) * Client: Add list blacklist feature * Server: Add list blacklist feature * Client: Add videoId column * Server: Add some video infos in the REST api * Client: Add video information in the blacklist list * Fix sortable columns :) * Client: Add removeFromBlacklist feature * Server: Add removeFromBlacklist feature * Move to TypeScript * Move to TypeScript and Promises * Server: Fix blacklist list sort * Server: Fetch videos informations * Use common shared interface for client and server * Add check-params remove blacklisted video tests * Add check-params list blacklisted videos tests * Add list blacklist tests * Add remove from blacklist tests * Add video blacklist management tests * Fix rebase onto develop issues * Server: Add sort on blacklist id column * Server: Add blacklists library * Add blacklist id sort test * Add check-params tests for blacklist list pagination, count and sort * Fix coding style * Increase Remote API tests timeout * Increase Request scheduler API tests timeout * Fix typo * Increase video transcoding API tests timeout * Move tests to Typescript * Use lodash orderBy method * Fix typos * Client: Remove optional tests in blacklist model attributes * Move blacklist routes from 'blacklists' to 'blacklist' * CLient: Remove blacklist-list.component.scss * Rename 'blacklists' files to 'blacklist' * Use only BlacklistedVideo interface * Server: Use getFormattedObjects method in listBlacklist method * Client: Use new coding style * Server: Use new sort validator methods * Server: Use new checkParams methods * Client: Fix sortable columns
2017-09-22 07:13:43 +00:00
type SortType = { sortModel: any, sortValue: string }
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
badRequest,
generateRandomString,
2017-08-25 09:45:31 +00:00
getFormattedObjects,
Handle blacklist (#84) * Client: Add list blacklist feature * Server: Add list blacklist feature * Client: Add videoId column * Server: Add some video infos in the REST api * Client: Add video information in the blacklist list * Fix sortable columns :) * Client: Add removeFromBlacklist feature * Server: Add removeFromBlacklist feature * Move to TypeScript * Move to TypeScript and Promises * Server: Fix blacklist list sort * Server: Fetch videos informations * Use common shared interface for client and server * Add check-params remove blacklisted video tests * Add check-params list blacklisted videos tests * Add list blacklist tests * Add remove from blacklist tests * Add video blacklist management tests * Fix rebase onto develop issues * Server: Add sort on blacklist id column * Server: Add blacklists library * Add blacklist id sort test * Add check-params tests for blacklist list pagination, count and sort * Fix coding style * Increase Remote API tests timeout * Increase Request scheduler API tests timeout * Fix typo * Increase video transcoding API tests timeout * Move tests to Typescript * Use lodash orderBy method * Fix typos * Client: Remove optional tests in blacklist model attributes * Move blacklist routes from 'blacklists' to 'blacklist' * CLient: Remove blacklist-list.component.scss * Rename 'blacklists' files to 'blacklist' * Use only BlacklistedVideo interface * Server: Use getFormattedObjects method in listBlacklist method * Client: Use new coding style * Server: Use new sort validator methods * Server: Use new checkParams methods * Client: Fix sortable columns
2017-09-22 07:13:43 +00:00
isSignupAllowed,
computeResolutionsToTranscode,
2017-10-25 09:55:06 +00:00
resetSequelizeInstance,
2017-12-14 16:38:41 +00:00
getServerActor,
2017-12-19 13:21:14 +00:00
SortType,
2017-12-29 18:10:13 +00:00
getHostWithPort,
createReqFiles
2017-05-15 20:22:03 +00:00
}