PeerTube/server/helpers/core-utils.ts

212 lines
6.4 KiB
TypeScript
Raw Normal View History

2017-06-11 15:19:43 +02:00
/*
Different from 'utils' because we don't not import other PeerTube modules.
Useful to avoid circular dependencies.
*/
import * as bcrypt from 'bcrypt'
import * as createTorrent from 'create-torrent'
2018-10-10 08:51:58 +02:00
import { createHash, HexBase64Latin1Encoding, pseudoRandomBytes } from 'crypto'
2018-01-16 08:46:44 +01:00
import { isAbsolute, join } from 'path'
2017-11-09 17:51:58 +01:00
import * as pem from 'pem'
import { URL } from 'url'
2018-03-28 11:00:02 +02:00
import { truncate } from 'lodash'
2018-10-03 14:35:35 +02:00
import { exec } from 'child_process'
2018-08-14 15:28:30 +02:00
const timeTable = {
ms: 1,
second: 1000,
minute: 60000,
hour: 3600000,
day: 3600000 * 24,
week: 3600000 * 24 * 7,
month: 3600000 * 24 * 30
}
export function parseDuration (duration: number | string): number {
if (typeof duration === 'number') return duration
if (typeof duration === 'string') {
const split = duration.match(/^([\d\.,]+)\s?(\w+)$/)
if (split.length === 3) {
const len = parseFloat(split[1])
let unit = split[2].replace(/s$/i,'').toLowerCase()
if (unit === 'm') {
unit = 'ms'
}
return (len || 1) * (timeTable[unit] || 0)
}
}
throw new Error('Duration could not be properly parsed')
}
function sanitizeUrl (url: string) {
const urlObject = new URL(url)
if (urlObject.protocol === 'https:' && urlObject.port === '443') {
urlObject.port = ''
} else if (urlObject.protocol === 'http:' && urlObject.port === '80') {
urlObject.port = ''
}
return urlObject.href.replace(/\/$/, '')
}
// Don't import remote scheme from constants because we are in core utils
function sanitizeHost (host: string, remoteScheme: string) {
2017-12-21 10:16:20 +01:00
const toRemove = remoteScheme === 'https' ? 443 : 80
return host.replace(new RegExp(`:${toRemove}$`), '')
}
2017-06-11 15:19:43 +02:00
function isTestInstance () {
return process.env.NODE_ENV === 'test'
}
function isProdInstance () {
return process.env.NODE_ENV === 'production'
}
2017-06-11 15:19:43 +02:00
function root () {
2017-09-07 15:27:35 +02:00
// We are in /helpers/utils.js
const paths = [ __dirname, '..', '..' ]
// We are under /dist directory
if (process.mainModule && process.mainModule.filename.endsWith('.ts') === false) {
2017-09-07 15:27:35 +02:00
paths.push('..')
}
return join.apply(null, paths)
2017-06-11 15:19:43 +02:00
}
2017-10-17 16:53:10 +02:00
// Thanks: https://stackoverflow.com/a/12034334
function escapeHTML (stringParam) {
2018-01-19 13:58:13 +01:00
if (!stringParam) return ''
2017-10-17 16:53:10 +02:00
const entityMap = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
2018-07-31 15:09:34 +02:00
'\'': '&#39;',
2017-10-17 16:53:10 +02:00
'/': '&#x2F;',
'`': '&#x60;',
'=': '&#x3D;'
}
return String(stringParam).replace(/[&<>"'`=\/]/g, s => entityMap[s])
}
2017-11-09 17:51:58 +01:00
function pageToStartAndCount (page: number, itemsPerPage: number) {
const start = (page - 1) * itemsPerPage
return { start, count: itemsPerPage }
}
2018-01-16 08:46:44 +01:00
function buildPath (path: string) {
if (isAbsolute(path)) return path
return join(root(), path)
}
2018-03-28 11:00:02 +02:00
// Consistent with .length, lodash truncate function is not
function peertubeTruncate (str: string, maxLength: number) {
const options = {
length: maxLength
}
const truncatedStr = truncate(str, options)
// The truncated string is okay, we can return it
if (truncatedStr.length <= maxLength) return truncatedStr
// Lodash takes into account all UTF characters, whereas String.prototype.length does not: some characters have a length of 2
// We always use the .length so we need to truncate more if needed
options.length -= truncatedStr.length - maxLength
return truncate(str, options)
}
2018-10-10 08:51:58 +02:00
function sha256 (str: string, encoding: HexBase64Latin1Encoding = 'hex') {
return createHash('sha256').update(str).digest(encoding)
2018-08-07 09:54:36 +02:00
}
function promisify0<A> (func: (cb: (err: any, result: A) => void) => void): () => Promise<A> {
return function promisified (): Promise<A> {
return new Promise<A>((resolve: (arg: A) => void, reject: (err: any) => void) => {
func.apply(null, [ (err: any, res: A) => err ? reject(err) : resolve(res) ])
})
}
}
// Thanks to https://gist.github.com/kumasento/617daa7e46f13ecdd9b2
function promisify1<T, A> (func: (arg: T, cb: (err: any, result: A) => void) => void): (arg: T) => Promise<A> {
return function promisified (arg: T): Promise<A> {
return new Promise<A>((resolve: (arg: A) => void, reject: (err: any) => void) => {
func.apply(null, [ arg, (err: any, res: A) => err ? reject(err) : resolve(res) ])
})
}
}
function promisify1WithVoid<T> (func: (arg: T, cb: (err: any) => void) => void): (arg: T) => Promise<void> {
return function promisified (arg: T): Promise<void> {
return new Promise<void>((resolve: () => void, reject: (err: any) => void) => {
func.apply(null, [ arg, (err: any) => err ? reject(err) : resolve() ])
})
}
}
function promisify2<T, U, A> (func: (arg1: T, arg2: U, cb: (err: any, result: A) => void) => void): (arg1: T, arg2: U) => Promise<A> {
return function promisified (arg1: T, arg2: U): Promise<A> {
return new Promise<A>((resolve: (arg: A) => void, reject: (err: any) => void) => {
func.apply(null, [ arg1, arg2, (err: any, res: A) => err ? reject(err) : resolve(res) ])
})
}
}
function promisify2WithVoid<T, U> (func: (arg1: T, arg2: U, cb: (err: any) => void) => void): (arg1: T, arg2: U) => Promise<void> {
return function promisified (arg1: T, arg2: U): Promise<void> {
return new Promise<void>((resolve: () => void, reject: (err: any) => void) => {
func.apply(null, [ arg1, arg2, (err: any) => err ? reject(err) : resolve() ])
})
}
}
const pseudoRandomBytesPromise = promisify1<number, Buffer>(pseudoRandomBytes)
2017-11-09 17:51:58 +01:00
const createPrivateKey = promisify1<number, { key: string }>(pem.createPrivateKey)
const getPublicKey = promisify1<string, { publicKey: string }>(pem.getPublicKey)
const bcryptComparePromise = promisify2<any, string, boolean>(bcrypt.compare)
const bcryptGenSaltPromise = promisify1<number, string>(bcrypt.genSalt)
2017-10-31 16:31:24 +01:00
const bcryptHashPromise = promisify2<any, string | number, string>(bcrypt.hash)
const createTorrentPromise = promisify2<string, any, any>(createTorrent)
2018-10-03 14:35:35 +02:00
const execPromise2 = promisify2<string, any, string>(exec)
const execPromise = promisify1<string, string>(exec)
2017-06-11 15:19:43 +02:00
// ---------------------------------------------------------------------------
export {
isTestInstance,
isProdInstance,
root,
2017-10-17 16:53:10 +02:00
escapeHTML,
2017-11-09 17:51:58 +01:00
pageToStartAndCount,
sanitizeUrl,
sanitizeHost,
2018-01-16 08:46:44 +01:00
buildPath,
2018-03-28 11:00:02 +02:00
peertubeTruncate,
2018-08-07 09:54:36 +02:00
sha256,
promisify0,
promisify1,
2017-11-09 17:51:58 +01:00
pseudoRandomBytesPromise,
2017-11-09 17:51:58 +01:00
createPrivateKey,
getPublicKey,
bcryptComparePromise,
bcryptGenSaltPromise,
bcryptHashPromise,
2018-10-03 14:35:35 +02:00
createTorrentPromise,
execPromise2,
execPromise
2017-06-11 15:19:43 +02:00
}