1
0
Fork 0
peertube/server/helpers/utils.ts

67 lines
1.8 KiB
TypeScript
Raw Normal View History

import { ResultList } from '../../shared'
2018-04-24 13:10:54 +00:00
import { CONFIG } from '../initializers'
2017-12-14 16:38:41 +00:00
import { ApplicationModel } from '../models/application/application'
2018-08-27 14:23:34 +00:00
import { pseudoRandomBytesPromise, sha256 } from './core-utils'
import { logger } from './logger'
2018-08-07 13:17:17 +00:00
import { join } from 'path'
2018-08-07 07:54:36 +00:00
import { Instance as ParseTorrent } from 'parse-torrent'
2018-08-27 14:23:34 +00:00
import { remove } from 'fs-extra'
2018-09-14 09:52:23 +00:00
import * as memoizee from 'memoizee'
2018-07-31 13:09:34 +00:00
function deleteFileAsync (path: string) {
2018-08-27 14:23:34 +00:00
remove(path)
2018-07-31 13:09:34 +00:00
.catch(err => logger.error('Cannot delete the file %s asynchronously.', path, { err }))
}
async function generateRandomString (size: number) {
const raw = await pseudoRandomBytesPromise(size)
return raw.toString('hex')
2017-02-26 17:57:33 +00:00
}
interface FormattableToJSON {
toFormattedJSON (args?: any)
2017-06-17 09:28:11 +00:00
}
function getFormattedObjects<U, T extends FormattableToJSON> (objects: T[], objectsTotal: number, formattedArg?: any) {
2017-08-25 09:45:31 +00:00
const formattedObjects: U[] = []
2017-01-04 19:59:23 +00:00
2017-07-11 15:04:57 +00:00
objects.forEach(object => {
formattedObjects.push(object.toFormattedJSON(formattedArg))
2017-01-04 19:59:23 +00:00
})
return {
2017-01-04 19:59:23 +00:00
total: objectsTotal,
2017-08-25 09:45:31 +00:00
data: formattedObjects
} as ResultList<U>
2017-01-04 19:59:23 +00:00
}
2018-09-14 09:52:23 +00:00
const getServerActor = memoizee(async function () {
const application = await ApplicationModel.load()
if (!application) throw Error('Could not load Application from database.')
2018-07-26 08:45:10 +00:00
2018-09-14 09:52:23 +00:00
return application.Account.Actor
})
2017-11-13 16:39:41 +00:00
2018-08-07 07:54:36 +00:00
function generateVideoTmpPath (target: string | ParseTorrent) {
const id = typeof target === 'string' ? target : target.infoHash
const hash = sha256(id)
2018-08-06 15:13:39 +00:00
return join(CONFIG.STORAGE.VIDEOS_DIR, hash + '-import.mp4')
}
2018-08-07 07:54:36 +00:00
function getSecureTorrentName (originalName: string) {
return sha256(originalName) + '.torrent'
}
Handle blacklist (#84) * Client: Add list blacklist feature * Server: Add list blacklist feature * Client: Add videoId column * Server: Add some video infos in the REST api * Client: Add video information in the blacklist list * Fix sortable columns :) * Client: Add removeFromBlacklist feature * Server: Add removeFromBlacklist feature * Move to TypeScript * Move to TypeScript and Promises * Server: Fix blacklist list sort * Server: Fetch videos informations * Use common shared interface for client and server * Add check-params remove blacklisted video tests * Add check-params list blacklisted videos tests * Add list blacklist tests * Add remove from blacklist tests * Add video blacklist management tests * Fix rebase onto develop issues * Server: Add sort on blacklist id column * Server: Add blacklists library * Add blacklist id sort test * Add check-params tests for blacklist list pagination, count and sort * Fix coding style * Increase Remote API tests timeout * Increase Request scheduler API tests timeout * Fix typo * Increase video transcoding API tests timeout * Move tests to Typescript * Use lodash orderBy method * Fix typos * Client: Remove optional tests in blacklist model attributes * Move blacklist routes from 'blacklists' to 'blacklist' * CLient: Remove blacklist-list.component.scss * Rename 'blacklists' files to 'blacklist' * Use only BlacklistedVideo interface * Server: Use getFormattedObjects method in listBlacklist method * Client: Use new coding style * Server: Use new sort validator methods * Server: Use new checkParams methods * Client: Fix sortable columns
2017-09-22 07:13:43 +00:00
// ---------------------------------------------------------------------------
2016-01-31 10:23:52 +00:00
2017-05-15 20:22:03 +00:00
export {
2018-07-31 13:09:34 +00:00
deleteFileAsync,
2017-05-15 20:22:03 +00:00
generateRandomString,
2017-08-25 09:45:31 +00:00
getFormattedObjects,
2018-08-07 07:54:36 +00:00
getSecureTorrentName,
2017-12-14 16:38:41 +00:00
getServerActor,
2018-08-06 15:13:39 +00:00
generateVideoTmpPath
2017-05-15 20:22:03 +00:00
}