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-10-03 07:35:35 -05:00
|
|
|
import { execPromise, execPromise2, 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
|
|
|
}
|
|
|
|
|
2019-01-09 08:14:29 -06:00
|
|
|
interface FormattableToJSON { toFormattedJSON (args?: any) }
|
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-10-12 08:26:04 -05:00
|
|
|
const actor = application.Account.Actor
|
|
|
|
actor.Account = application.Account
|
|
|
|
|
|
|
|
return actor
|
2018-09-14 04:52:23 -05:00
|
|
|
})
|
2017-11-13 10:39:41 -06:00
|
|
|
|
2018-12-04 09:02:49 -06:00
|
|
|
function generateVideoImportTmpPath (target: string | ParseTorrent) {
|
2018-08-07 02:54:36 -05:00
|
|
|
const id = typeof target === 'string' ? target : target.infoHash
|
|
|
|
|
|
|
|
const hash = sha256(id)
|
2018-12-04 09:02:49 -06:00
|
|
|
return join(CONFIG.STORAGE.TMP_DIR, hash + '-import.mp4')
|
2018-08-06 10:13:39 -05:00
|
|
|
}
|
|
|
|
|
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-11-23 04:06:10 -06:00
|
|
|
async function getServerCommit () {
|
2018-10-03 07:35:35 -05:00
|
|
|
try {
|
|
|
|
const tag = await execPromise2(
|
|
|
|
'[ ! -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/, '')
|
|
|
|
} catch (err) {
|
|
|
|
logger.debug('Cannot get version from git tags.', { err })
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const version = await execPromise('[ ! -d .git ] || git rev-parse --short HEAD')
|
|
|
|
|
|
|
|
if (version) return version.toString().trim()
|
|
|
|
} catch (err) {
|
|
|
|
logger.debug('Cannot get version from git HEAD.', { err })
|
|
|
|
}
|
2018-09-29 12:53:49 -05:00
|
|
|
|
2018-11-23 04:06:10 -06:00
|
|
|
return ''
|
2018-09-29 12:53:49 -05:00
|
|
|
}
|
|
|
|
|
2018-10-08 09:26:04 -05:00
|
|
|
/**
|
|
|
|
* From a filename like "ede4cba5-742b-46fa-a388-9a6eb3a3aeb3.mp4", returns
|
|
|
|
* only the "ede4cba5-742b-46fa-a388-9a6eb3a3aeb3" part. If the filename does
|
|
|
|
* not contain a UUID, returns null.
|
|
|
|
*/
|
|
|
|
function getUUIDFromFilename (filename: string) {
|
|
|
|
const regex = /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/
|
|
|
|
const result = filename.match(regex)
|
|
|
|
|
|
|
|
if (!result || Array.isArray(result) === false) return null
|
|
|
|
|
|
|
|
return result[0]
|
|
|
|
}
|
|
|
|
|
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-11-23 04:06:10 -06:00
|
|
|
getServerCommit,
|
2018-12-04 09:02:49 -06:00
|
|
|
generateVideoImportTmpPath,
|
2018-10-08 09:26:04 -05:00
|
|
|
getUUIDFromFilename
|
2017-05-15 15:22:03 -05:00
|
|
|
}
|