2017-07-05 06:26:25 -05:00
|
|
|
import { ResultList } from '../../shared'
|
2018-04-24 08:10:54 -05:00
|
|
|
import { CONFIG } from '../initializers'
|
2017-12-14 10:38:41 -06:00
|
|
|
import { ApplicationModel } from '../models/application/application'
|
2018-08-27 09:23:34 -05:00
|
|
|
import { pseudoRandomBytesPromise, sha256 } from './core-utils'
|
2017-11-16 04:08:25 -06:00
|
|
|
import { logger } from './logger'
|
2018-08-07 08:17:17 -05:00
|
|
|
import { join } from 'path'
|
2018-08-07 02:54:36 -05:00
|
|
|
import { Instance as ParseTorrent } from 'parse-torrent'
|
2018-08-27 09:23:34 -05:00
|
|
|
import { remove } from 'fs-extra'
|
2018-09-14 04:52:23 -05:00
|
|
|
import * as memoizee from 'memoizee'
|
2016-05-10 14:19:24 -05:00
|
|
|
|
2018-07-31 08:09:34 -05:00
|
|
|
function deleteFileAsync (path: string) {
|
2018-08-27 09:23:34 -05:00
|
|
|
remove(path)
|
2018-07-31 08:09:34 -05:00
|
|
|
.catch(err => logger.error('Cannot delete the file %s asynchronously.', path, { err }))
|
|
|
|
}
|
|
|
|
|
2017-10-25 09:03:33 -05:00
|
|
|
async function generateRandomString (size: number) {
|
|
|
|
const raw = await pseudoRandomBytesPromise(size)
|
|
|
|
|
|
|
|
return raw.toString('hex')
|
2017-02-26 11:57:33 -06:00
|
|
|
}
|
|
|
|
|
2017-10-02 05:20:26 -05:00
|
|
|
interface FormattableToJSON {
|
2018-06-12 13:04:58 -05:00
|
|
|
toFormattedJSON (args?: any)
|
2017-06-17 04:28:11 -05:00
|
|
|
}
|
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
function getFormattedObjects<U, T extends FormattableToJSON> (objects: T[], objectsTotal: number, formattedArg?: any) {
|
2017-08-25 04:45:31 -05:00
|
|
|
const formattedObjects: U[] = []
|
2017-01-04 13:59:23 -06:00
|
|
|
|
2017-07-11 10:04:57 -05:00
|
|
|
objects.forEach(object => {
|
2018-06-12 13:04:58 -05:00
|
|
|
formattedObjects.push(object.toFormattedJSON(formattedArg))
|
2017-01-04 13:59:23 -06:00
|
|
|
})
|
|
|
|
|
2018-06-12 13:04:58 -05:00
|
|
|
return {
|
2017-01-04 13:59:23 -06:00
|
|
|
total: objectsTotal,
|
2017-08-25 04:45:31 -05:00
|
|
|
data: formattedObjects
|
2018-06-12 13:04:58 -05:00
|
|
|
} as ResultList<U>
|
2017-01-04 13:59:23 -06:00
|
|
|
}
|
|
|
|
|
2018-09-14 04:52:23 -05:00
|
|
|
const getServerActor = memoizee(async function () {
|
|
|
|
const application = await ApplicationModel.load()
|
|
|
|
if (!application) throw Error('Could not load Application from database.')
|
2018-07-26 03:45:10 -05:00
|
|
|
|
2018-09-14 04:52:23 -05:00
|
|
|
return application.Account.Actor
|
|
|
|
})
|
2017-11-13 10:39:41 -06:00
|
|
|
|
2018-08-07 02:54:36 -05:00
|
|
|
function generateVideoTmpPath (target: string | ParseTorrent) {
|
|
|
|
const id = typeof target === 'string' ? target : target.infoHash
|
|
|
|
|
|
|
|
const hash = sha256(id)
|
2018-08-06 10:13:39 -05:00
|
|
|
return join(CONFIG.STORAGE.VIDEOS_DIR, hash + '-import.mp4')
|
|
|
|
}
|
|
|
|
|
2018-08-07 02:54:36 -05:00
|
|
|
function getSecureTorrentName (originalName: string) {
|
|
|
|
return sha256(originalName) + '.torrent'
|
|
|
|
}
|
2017-09-22 02:13:43 -05:00
|
|
|
|
2018-09-29 12:53:49 -05:00
|
|
|
function getVersion () {
|
|
|
|
const tag = require('child_process')
|
|
|
|
.execSync('[[ ! -d .git ]] || git name-rev --name-only --tags --no-undefined HEAD 2>/dev/null || true', { stdio: [0,1,2] })
|
|
|
|
if (tag) return tag.replace(/^v/, '')
|
|
|
|
|
|
|
|
const version = require('child_process')
|
|
|
|
.execSync('[[ ! -d .git ]] || git rev-parse --short HEAD').toString().trim()
|
|
|
|
if (version) return version
|
|
|
|
|
|
|
|
return require('../../../package.json').version
|
|
|
|
}
|
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 04:23:52 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export {
|
2018-07-31 08:09:34 -05:00
|
|
|
deleteFileAsync,
|
2017-05-15 15:22:03 -05:00
|
|
|
generateRandomString,
|
2017-08-25 04:45:31 -05:00
|
|
|
getFormattedObjects,
|
2018-08-07 02:54:36 -05:00
|
|
|
getSecureTorrentName,
|
2017-12-14 10:38:41 -06:00
|
|
|
getServerActor,
|
2018-09-29 12:53:49 -05:00
|
|
|
getVersion,
|
2018-08-06 10:13:39 -05:00
|
|
|
generateVideoTmpPath
|
2017-05-15 15:22:03 -05:00
|
|
|
}
|