PeerTube/server/helpers/core-utils.ts

194 lines
6.3 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-08-07 15:17:17 +02:00
import { createHash, pseudoRandomBytes } from 'crypto'
import { copyFile, readdir, readFile, rename, stat, Stats, unlink, writeFile } from 'fs'
2017-11-23 17:53:38 +01:00
import * as mkdirp from 'mkdirp'
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'
2017-11-23 17:53:38 +01:00
import * as rimraf from 'rimraf'
import { URL } from 'url'
2018-03-28 11:00:02 +02:00
import { truncate } from 'lodash'
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 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-08-07 09:54:36 +02:00
function sha256 (str: string) {
2018-08-07 15:17:17 +02:00
return createHash('sha256').update(str).digest('hex')
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 copyFilePromise = promisify2WithVoid<string, string>(copyFile)
const readFileBufferPromise = promisify1<string, Buffer>(readFile)
const unlinkPromise = promisify1WithVoid<string>(unlink)
const renamePromise = promisify2WithVoid<string, string>(rename)
2017-08-25 18:36:49 +02:00
const writeFilePromise = promisify2WithVoid<string, any>(writeFile)
const readdirPromise = promisify1<string, string[]>(readdir)
const mkdirpPromise = promisify1<string, string>(mkdirp)
// we cannot modify the Promise types, so we should make the promisify instance check mkdirp
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)
2017-07-12 11:56:02 +02:00
const rimrafPromise = promisify1WithVoid<string>(rimraf)
const statPromise = promisify1<string, Stats>(stat)
2017-06-11 15:19:43 +02:00
// ---------------------------------------------------------------------------
export {
isTestInstance,
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
copyFilePromise,
readdirPromise,
readFileBufferPromise,
unlinkPromise,
renamePromise,
writeFilePromise,
mkdirpPromise,
pseudoRandomBytesPromise,
2017-11-09 17:51:58 +01:00
createPrivateKey,
getPublicKey,
bcryptComparePromise,
bcryptGenSaltPromise,
bcryptHashPromise,
2017-07-12 11:56:02 +02:00
createTorrentPromise,
rimrafPromise,
statPromise
2017-06-11 15:19:43 +02:00
}