]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/core-utils.ts
allow public video privacy to be deleted in the web client
[github/Chocobozzz/PeerTube.git] / server / helpers / core-utils.ts
CommitLineData
a1587156
C
1/* eslint-disable no-useless-call */
2
1840c2f7 3/*
272abc0b 4 Different from 'utils' because we don't import other PeerTube modules.
1840c2f7
C
5 Useful to avoid circular dependencies.
6*/
7
ba5a8d89
C
8import { exec, ExecOptions } from 'child_process'
9import { BinaryToTextEncoding, createHash, randomBytes } from 'crypto'
10import { truncate } from 'lodash'
9b474844 11import { basename, isAbsolute, join, resolve } from 'path'
e4f97bab 12import * as pem from 'pem'
db4b15f2 13import { pipeline } from 'stream'
225a89c2 14import { URL } from 'url'
db4b15f2 15import { promisify } from 'util'
a4101923
C
16
17const objectConverter = (oldObject: any, keyConverter: (e: string) => string, valueConverter: (e: any) => any) => {
18 if (!oldObject || typeof oldObject !== 'object') {
19 return valueConverter(oldObject)
20 }
21
74dc3bca 22 if (Array.isArray(oldObject)) {
a4101923
C
23 return oldObject.map(e => objectConverter(e, keyConverter, valueConverter))
24 }
25
26 const newObject = {}
27 Object.keys(oldObject).forEach(oldKey => {
28 const newKey = keyConverter(oldKey)
a1587156 29 newObject[newKey] = objectConverter(oldObject[oldKey], keyConverter, valueConverter)
a4101923
C
30 })
31
32 return newObject
33}
225a89c2 34
06215f15 35const timeTable = {
a1587156
C
36 ms: 1,
37 second: 1000,
38 minute: 60000,
39 hour: 3600000,
40 day: 3600000 * 24,
41 week: 3600000 * 24 * 7,
42 month: 3600000 * 24 * 30
06215f15 43}
0e5ff97f 44
8f0bc73d 45export function parseDurationToMs (duration: number | string): number {
fb719404 46 if (duration === null) return null
06215f15
C
47 if (typeof duration === 'number') return duration
48
49 if (typeof duration === 'string') {
a1587156 50 const split = duration.match(/^([\d.,]+)\s?(\w+)$/)
06215f15
C
51
52 if (split.length === 3) {
53 const len = parseFloat(split[1])
a1587156 54 let unit = split[2].replace(/s$/i, '').toLowerCase()
06215f15
C
55 if (unit === 'm') {
56 unit = 'ms'
57 }
58
59 return (len || 1) * (timeTable[unit] || 0)
60 }
61 }
62
ae9bbed4 63 throw new Error(`Duration ${duration} could not be properly parsed`)
06215f15
C
64}
65
0e5ff97f
BY
66export function parseBytes (value: string | number): number {
67 if (typeof value === 'number') return value
68
69 const tgm = /^(\d+)\s*TB\s*(\d+)\s*GB\s*(\d+)\s*MB$/
70 const tg = /^(\d+)\s*TB\s*(\d+)\s*GB$/
71 const tm = /^(\d+)\s*TB\s*(\d+)\s*MB$/
72 const gm = /^(\d+)\s*GB\s*(\d+)\s*MB$/
73 const t = /^(\d+)\s*TB$/
74 const g = /^(\d+)\s*GB$/
75 const m = /^(\d+)\s*MB$/
76 const b = /^(\d+)\s*B$/
77 let match
78
79 if (value.match(tgm)) {
80 match = value.match(tgm)
a1587156
C
81 return parseInt(match[1], 10) * 1024 * 1024 * 1024 * 1024 +
82 parseInt(match[2], 10) * 1024 * 1024 * 1024 +
83 parseInt(match[3], 10) * 1024 * 1024
0e5ff97f
BY
84 } else if (value.match(tg)) {
85 match = value.match(tg)
a1587156
C
86 return parseInt(match[1], 10) * 1024 * 1024 * 1024 * 1024 +
87 parseInt(match[2], 10) * 1024 * 1024 * 1024
0e5ff97f
BY
88 } else if (value.match(tm)) {
89 match = value.match(tm)
a1587156
C
90 return parseInt(match[1], 10) * 1024 * 1024 * 1024 * 1024 +
91 parseInt(match[2], 10) * 1024 * 1024
0e5ff97f
BY
92 } else if (value.match(gm)) {
93 match = value.match(gm)
a1587156
C
94 return parseInt(match[1], 10) * 1024 * 1024 * 1024 +
95 parseInt(match[2], 10) * 1024 * 1024
0e5ff97f
BY
96 } else if (value.match(t)) {
97 match = value.match(t)
98 return parseInt(match[1], 10) * 1024 * 1024 * 1024 * 1024
99 } else if (value.match(g)) {
100 match = value.match(g)
101 return parseInt(match[1], 10) * 1024 * 1024 * 1024
102 } else if (value.match(m)) {
103 match = value.match(m)
104 return parseInt(match[1], 10) * 1024 * 1024
105 } else if (value.match(b)) {
106 match = value.match(b)
107 return parseInt(match[1], 10) * 1024
108 } else {
109 return parseInt(value, 10)
110 }
111}
112
225a89c2
C
113function sanitizeUrl (url: string) {
114 const urlObject = new URL(url)
115
116 if (urlObject.protocol === 'https:' && urlObject.port === '443') {
117 urlObject.port = ''
118 } else if (urlObject.protocol === 'http:' && urlObject.port === '80') {
119 urlObject.port = ''
120 }
121
122 return urlObject.href.replace(/\/$/, '')
123}
124
125// Don't import remote scheme from constants because we are in core utils
126function sanitizeHost (host: string, remoteScheme: string) {
604abfbe 127 const toRemove = remoteScheme === 'https' ? 443 : 80
225a89c2
C
128
129 return host.replace(new RegExp(`:${toRemove}$`), '')
130}
1840c2f7
C
131
132function isTestInstance () {
133 return process.env.NODE_ENV === 'test'
134}
135
00f9e41e
C
136function isProdInstance () {
137 return process.env.NODE_ENV === 'production'
138}
139
1a12f66d
C
140function getAppNumber () {
141 return process.env.NODE_APP_INSTANCE
142}
143
9b474844 144let rootPath: string
a1587156 145
1840c2f7 146function root () {
9b474844
C
147 if (rootPath) return rootPath
148
fdbda9e3 149 // We are in /helpers/utils.js
9b474844 150 rootPath = join(__dirname, '..', '..')
fdbda9e3 151
9b474844 152 if (basename(rootPath) === 'dist') rootPath = resolve(rootPath, '..')
fdbda9e3 153
9b474844 154 return rootPath
1840c2f7
C
155}
156
e4f97bab
C
157function pageToStartAndCount (page: number, itemsPerPage: number) {
158 const start = (page - 1) * itemsPerPage
159
160 return { start, count: itemsPerPage }
161}
162
c6c0fa6c
C
163function mapToJSON (map: Map<any, any>) {
164 const obj: any = {}
165
166 for (const [ k, v ] of map) {
167 obj[k] = v
168 }
169
170 return obj
171}
172
0b4204f9
C
173function buildPath (path: string) {
174 if (isAbsolute(path)) return path
175
176 return join(root(), path)
177}
178
c73e83da 179// Consistent with .length, lodash truncate function is not
687c6180 180function peertubeTruncate (str: string, options: { length: number, separator?: RegExp, omission?: string }) {
c73e83da
C
181 const truncatedStr = truncate(str, options)
182
183 // The truncated string is okay, we can return it
687c6180 184 if (truncatedStr.length <= options.length) return truncatedStr
c73e83da
C
185
186 // Lodash takes into account all UTF characters, whereas String.prototype.length does not: some characters have a length of 2
187 // We always use the .length so we need to truncate more if needed
687c6180 188 options.length -= truncatedStr.length - options.length
c73e83da
C
189 return truncate(str, options)
190}
191
ba5a8d89 192function sha256 (str: string | Buffer, encoding: BinaryToTextEncoding = 'hex') {
729bb184 193 return createHash('sha256').update(str).digest(encoding)
990b6a0b
C
194}
195
ba5a8d89 196function sha1 (str: string | Buffer, encoding: BinaryToTextEncoding = 'hex') {
09209296
C
197 return createHash('sha1').update(str).digest(encoding)
198}
199
f023a19c
C
200function execShell (command: string, options?: ExecOptions) {
201 return new Promise<{ err?: Error, stdout: string, stderr: string }>((res, rej) => {
202 exec(command, options, (err, stdout, stderr) => {
a1587156 203 // eslint-disable-next-line prefer-promise-reject-errors
f023a19c
C
204 if (err) return rej({ err, stdout, stderr })
205
206 return res({ stdout, stderr })
207 })
208 })
209}
210
6fcd19ba
C
211function promisify0<A> (func: (cb: (err: any, result: A) => void) => void): () => Promise<A> {
212 return function promisified (): Promise<A> {
213 return new Promise<A>((resolve: (arg: A) => void, reject: (err: any) => void) => {
214 func.apply(null, [ (err: any, res: A) => err ? reject(err) : resolve(res) ])
215 })
216 }
217}
218
219// Thanks to https://gist.github.com/kumasento/617daa7e46f13ecdd9b2
220function promisify1<T, A> (func: (arg: T, cb: (err: any, result: A) => void) => void): (arg: T) => Promise<A> {
221 return function promisified (arg: T): Promise<A> {
222 return new Promise<A>((resolve: (arg: A) => void, reject: (err: any) => void) => {
223 func.apply(null, [ arg, (err: any, res: A) => err ? reject(err) : resolve(res) ])
224 })
225 }
226}
227
6fcd19ba
C
228function promisify2<T, U, A> (func: (arg1: T, arg2: U, cb: (err: any, result: A) => void) => void): (arg1: T, arg2: U) => Promise<A> {
229 return function promisified (arg1: T, arg2: U): Promise<A> {
230 return new Promise<A>((resolve: (arg: A) => void, reject: (err: any) => void) => {
231 func.apply(null, [ arg1, arg2, (err: any, res: A) => err ? reject(err) : resolve(res) ])
232 })
233 }
234}
235
32a18cbf 236type SemVersion = { major: number, minor: number, patch: number }
ae71acca
C
237function parseSemVersion (s: string) {
238 const parsed = s.match(/^v?(\d+)\.(\d+)\.(\d+)$/i)
239
240 return {
241 major: parseInt(parsed[1]),
242 minor: parseInt(parsed[2]),
243 patch: parseInt(parsed[3])
32a18cbf 244 } as SemVersion
ae71acca
C
245}
246
a1587156 247const randomBytesPromise = promisify1<number, Buffer>(randomBytes)
e4f97bab
C
248const createPrivateKey = promisify1<number, { key: string }>(pem.createPrivateKey)
249const getPublicKey = promisify1<string, { publicKey: string }>(pem.getPublicKey)
499d9015
C
250const execPromise2 = promisify2<string, any, string>(exec)
251const execPromise = promisify1<string, string>(exec)
db4b15f2 252const pipelinePromise = promisify(pipeline)
6fcd19ba 253
1840c2f7
C
254// ---------------------------------------------------------------------------
255
256export {
257 isTestInstance,
00f9e41e 258 isProdInstance,
1a12f66d 259 getAppNumber,
00f9e41e 260
a4101923 261 objectConverter,
6fcd19ba 262 root,
e4f97bab 263 pageToStartAndCount,
225a89c2
C
264 sanitizeUrl,
265 sanitizeHost,
0b4204f9 266 buildPath,
f023a19c 267 execShell,
c73e83da 268 peertubeTruncate,
09209296 269
990b6a0b 270 sha256,
09209296 271 sha1,
c6c0fa6c 272 mapToJSON,
6fcd19ba
C
273
274 promisify0,
275 promisify1,
8d2be0ed 276 promisify2,
e4f97bab 277
a1587156 278 randomBytesPromise,
e4f97bab
C
279 createPrivateKey,
280 getPublicKey,
499d9015 281 execPromise2,
db4b15f2 282 execPromise,
ae71acca
C
283 pipelinePromise,
284
285 parseSemVersion
1840c2f7 286}