2017-07-05 13:26:25 +02:00
|
|
|
import { ResultList } from '../../shared'
|
2018-04-24 15:10:54 +02:00
|
|
|
import { CONFIG } from '../initializers'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
|
|
|
import { ApplicationModel } from '../models/application/application'
|
2018-08-07 09:54:36 +02:00
|
|
|
import { pseudoRandomBytesPromise, sha256, unlinkPromise } from './core-utils'
|
2017-11-16 11:08:25 +01:00
|
|
|
import { logger } from './logger'
|
2018-08-07 15:17:17 +02:00
|
|
|
import { join } from 'path'
|
2018-08-07 09:54:36 +02:00
|
|
|
import { Instance as ParseTorrent } from 'parse-torrent'
|
2016-05-10 21:19:24 +02:00
|
|
|
|
2018-07-31 15:09:34 +02:00
|
|
|
function deleteFileAsync (path: string) {
|
|
|
|
unlinkPromise(path)
|
|
|
|
.catch(err => logger.error('Cannot delete the file %s asynchronously.', path, { err }))
|
|
|
|
}
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function generateRandomString (size: number) {
|
|
|
|
const raw = await pseudoRandomBytesPromise(size)
|
|
|
|
|
|
|
|
return raw.toString('hex')
|
2017-02-26 18:57:33 +01:00
|
|
|
}
|
|
|
|
|
2017-10-02 12:20:26 +02:00
|
|
|
interface FormattableToJSON {
|
2018-06-12 20:04:58 +02:00
|
|
|
toFormattedJSON (args?: any)
|
2017-06-17 11:28:11 +02:00
|
|
|
}
|
|
|
|
|
2018-06-12 20:04:58 +02:00
|
|
|
function getFormattedObjects<U, T extends FormattableToJSON> (objects: T[], objectsTotal: number, formattedArg?: any) {
|
2017-08-25 11:45:31 +02:00
|
|
|
const formattedObjects: U[] = []
|
2017-01-04 20:59:23 +01:00
|
|
|
|
2017-07-11 17:04:57 +02:00
|
|
|
objects.forEach(object => {
|
2018-06-12 20:04:58 +02:00
|
|
|
formattedObjects.push(object.toFormattedJSON(formattedArg))
|
2017-01-04 20:59:23 +01:00
|
|
|
})
|
|
|
|
|
2018-06-12 20:04:58 +02:00
|
|
|
return {
|
2017-01-04 20:59:23 +01:00
|
|
|
total: objectsTotal,
|
2017-08-25 11:45:31 +02:00
|
|
|
data: formattedObjects
|
2018-06-12 20:04:58 +02:00
|
|
|
} as ResultList<U>
|
2017-01-04 20:59:23 +01:00
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
async function getServerActor () {
|
2018-08-14 15:28:30 +02:00
|
|
|
if (getServerActor.serverActor === undefined) {
|
2017-12-14 17:38:41 +01:00
|
|
|
const application = await ApplicationModel.load()
|
2018-07-26 10:45:10 +02:00
|
|
|
if (!application) throw Error('Could not load Application from database.')
|
|
|
|
|
2018-08-14 15:28:30 +02:00
|
|
|
getServerActor.serverActor = application.Account.Actor
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
2018-08-14 15:28:30 +02:00
|
|
|
if (!getServerActor.serverActor) {
|
2017-12-14 17:38:41 +01:00
|
|
|
logger.error('Cannot load server actor.')
|
2017-11-16 11:08:25 +01:00
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2018-08-14 15:28:30 +02:00
|
|
|
return Promise.resolve(getServerActor.serverActor)
|
|
|
|
}
|
|
|
|
namespace getServerActor {
|
|
|
|
export let serverActor: ActorModel
|
2017-11-13 17:39:41 +01:00
|
|
|
}
|
|
|
|
|
2018-08-07 09:54:36 +02:00
|
|
|
function generateVideoTmpPath (target: string | ParseTorrent) {
|
|
|
|
const id = typeof target === 'string' ? target : target.infoHash
|
|
|
|
|
|
|
|
const hash = sha256(id)
|
2018-08-06 17:13:39 +02:00
|
|
|
return join(CONFIG.STORAGE.VIDEOS_DIR, hash + '-import.mp4')
|
|
|
|
}
|
|
|
|
|
2018-08-07 09:54:36 +02:00
|
|
|
function getSecureTorrentName (originalName: string) {
|
|
|
|
return sha256(originalName) + '.torrent'
|
|
|
|
}
|
2017-09-22 09:13:43 +02:00
|
|
|
|
2016-02-07 11:23:23 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 11:23:52 +01:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
2018-07-31 15:09:34 +02:00
|
|
|
deleteFileAsync,
|
2017-05-15 22:22:03 +02:00
|
|
|
generateRandomString,
|
2017-08-25 11:45:31 +02:00
|
|
|
getFormattedObjects,
|
2018-08-07 09:54:36 +02:00
|
|
|
getSecureTorrentName,
|
2017-12-14 17:38:41 +01:00
|
|
|
getServerActor,
|
2018-08-06 17:13:39 +02:00
|
|
|
generateVideoTmpPath
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|