2018-08-02 09:34:09 -04:00
|
|
|
import { truncate } from 'lodash'
|
2018-08-06 11:13:39 -04:00
|
|
|
import { CONSTRAINTS_FIELDS, VIDEO_CATEGORIES } from '../initializers'
|
2018-08-02 09:34:09 -04:00
|
|
|
import { logger } from './logger'
|
2018-12-04 10:02:49 -05:00
|
|
|
import { generateVideoImportTmpPath } from './utils'
|
2018-09-19 10:24:24 -04:00
|
|
|
import { join } from 'path'
|
|
|
|
import { root } from './core-utils'
|
2018-10-01 06:00:05 -04:00
|
|
|
import { ensureDir, writeFile, remove } from 'fs-extra'
|
2018-09-19 10:24:24 -04:00
|
|
|
import * as request from 'request'
|
|
|
|
import { createWriteStream } from 'fs'
|
2018-08-02 09:34:09 -04:00
|
|
|
|
|
|
|
export type YoutubeDLInfo = {
|
2018-08-06 11:13:39 -04:00
|
|
|
name?: string
|
|
|
|
description?: string
|
|
|
|
category?: number
|
|
|
|
licence?: number
|
|
|
|
nsfw?: boolean
|
|
|
|
tags?: string[]
|
|
|
|
thumbnailUrl?: string
|
2018-08-02 09:34:09 -04:00
|
|
|
}
|
|
|
|
|
2018-09-26 09:55:45 -04:00
|
|
|
const processOptions = {
|
|
|
|
maxBuffer: 1024 * 1024 * 10 // 10MB
|
|
|
|
}
|
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
function getYoutubeDLInfo (url: string, opts?: string[]): Promise<YoutubeDLInfo> {
|
2018-08-16 03:45:51 -04:00
|
|
|
return new Promise<YoutubeDLInfo>(async (res, rej) => {
|
2018-11-21 10:29:09 -05:00
|
|
|
const args = opts || [ '-j', '--flat-playlist' ]
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2018-08-16 03:45:51 -04:00
|
|
|
const youtubeDL = await safeGetYoutubeDL()
|
2018-11-21 10:29:09 -05:00
|
|
|
youtubeDL.getInfo(url, args, processOptions, (err, info) => {
|
2018-08-02 09:34:09 -04:00
|
|
|
if (err) return rej(err)
|
2018-09-04 05:55:43 -04:00
|
|
|
if (info.is_live === true) return rej(new Error('Cannot download a live streaming.'))
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2018-09-04 05:34:46 -04:00
|
|
|
const obj = buildVideoInfo(normalizeObject(info))
|
|
|
|
if (obj.name && obj.name.length < CONSTRAINTS_FIELDS.VIDEOS.NAME.min) obj.name += ' video'
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2018-09-04 05:34:46 -04:00
|
|
|
return res(obj)
|
2018-08-02 09:34:09 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-10-01 06:00:05 -04:00
|
|
|
function downloadYoutubeDLVideo (url: string, timeout: number) {
|
2018-12-04 10:02:49 -05:00
|
|
|
const path = generateVideoImportTmpPath(url)
|
2018-10-01 06:00:05 -04:00
|
|
|
let timer
|
2018-08-02 09:34:09 -04:00
|
|
|
|
2018-08-06 11:13:39 -04:00
|
|
|
logger.info('Importing youtubeDL video %s', url)
|
2018-08-02 09:34:09 -04:00
|
|
|
|
|
|
|
const options = [ '-f', 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best', '-o', path ]
|
|
|
|
|
2018-08-16 03:45:51 -04:00
|
|
|
return new Promise<string>(async (res, rej) => {
|
|
|
|
const youtubeDL = await safeGetYoutubeDL()
|
2018-09-26 09:55:45 -04:00
|
|
|
youtubeDL.exec(url, options, processOptions, err => {
|
2018-10-01 06:00:05 -04:00
|
|
|
clearTimeout(timer)
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
remove(path)
|
|
|
|
.catch(err => logger.error('Cannot delete path on YoutubeDL error.', { err }))
|
|
|
|
|
|
|
|
return rej(err)
|
|
|
|
}
|
2018-08-02 09:34:09 -04:00
|
|
|
|
|
|
|
return res(path)
|
|
|
|
})
|
2018-10-01 06:00:05 -04:00
|
|
|
|
|
|
|
timer = setTimeout(async () => {
|
|
|
|
await remove(path)
|
|
|
|
|
|
|
|
return rej(new Error('YoutubeDL download timeout.'))
|
|
|
|
}, timeout)
|
2018-08-02 09:34:09 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-09-19 10:24:24 -04:00
|
|
|
// Thanks: https://github.com/przemyslawpluta/node-youtube-dl/blob/master/lib/downloader.js
|
|
|
|
// We rewrote it to avoid sync calls
|
|
|
|
async function updateYoutubeDLBinary () {
|
|
|
|
logger.info('Updating youtubeDL binary.')
|
|
|
|
|
|
|
|
const binDirectory = join(root(), 'node_modules', 'youtube-dl', 'bin')
|
|
|
|
const bin = join(binDirectory, 'youtube-dl')
|
|
|
|
const detailsPath = join(binDirectory, 'details')
|
|
|
|
const url = 'https://yt-dl.org/downloads/latest/youtube-dl'
|
|
|
|
|
|
|
|
await ensureDir(binDirectory)
|
|
|
|
|
|
|
|
return new Promise(res => {
|
|
|
|
request.get(url, { followRedirect: false }, (err, result) => {
|
|
|
|
if (err) {
|
|
|
|
logger.error('Cannot update youtube-dl.', { err })
|
|
|
|
return res()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result.statusCode !== 302) {
|
|
|
|
logger.error('youtube-dl update error: did not get redirect for the latest version link. Status %d', result.statusCode)
|
|
|
|
return res()
|
|
|
|
}
|
|
|
|
|
|
|
|
const url = result.headers.location
|
|
|
|
const downloadFile = request.get(url)
|
|
|
|
const newVersion = /yt-dl\.org\/downloads\/(\d{4}\.\d\d\.\d\d(\.\d)?)\/youtube-dl/.exec(url)[ 1 ]
|
|
|
|
|
|
|
|
downloadFile.on('response', result => {
|
|
|
|
if (result.statusCode !== 200) {
|
|
|
|
logger.error('Cannot update youtube-dl: new version response is not 200, it\'s %d.', result.statusCode)
|
|
|
|
return res()
|
|
|
|
}
|
|
|
|
|
|
|
|
downloadFile.pipe(createWriteStream(bin, { mode: 493 }))
|
|
|
|
})
|
|
|
|
|
|
|
|
downloadFile.on('error', err => {
|
|
|
|
logger.error('youtube-dl update error.', { err })
|
|
|
|
return res()
|
|
|
|
})
|
|
|
|
|
|
|
|
downloadFile.on('end', () => {
|
|
|
|
const details = JSON.stringify({ version: newVersion, path: bin, exec: 'youtube-dl' })
|
|
|
|
writeFile(detailsPath, details, { encoding: 'utf8' }, err => {
|
|
|
|
if (err) {
|
|
|
|
logger.error('youtube-dl update error: cannot write details.', { err })
|
|
|
|
return res()
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info('youtube-dl updated to version %s.', newVersion)
|
|
|
|
return res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-08-16 03:45:51 -04:00
|
|
|
async function safeGetYoutubeDL () {
|
|
|
|
let youtubeDL
|
|
|
|
|
|
|
|
try {
|
|
|
|
youtubeDL = require('youtube-dl')
|
|
|
|
} catch (e) {
|
|
|
|
// Download binary
|
2018-09-19 10:24:24 -04:00
|
|
|
await updateYoutubeDLBinary()
|
2018-08-16 03:45:51 -04:00
|
|
|
youtubeDL = require('youtube-dl')
|
|
|
|
}
|
|
|
|
|
|
|
|
return youtubeDL
|
|
|
|
}
|
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-09-20 10:24:31 -04:00
|
|
|
updateYoutubeDLBinary,
|
2018-09-13 08:27:44 -04:00
|
|
|
downloadYoutubeDLVideo,
|
|
|
|
getYoutubeDLInfo,
|
|
|
|
safeGetYoutubeDL
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-08-02 09:34:09 -04:00
|
|
|
function normalizeObject (obj: any) {
|
|
|
|
const newObj: any = {}
|
|
|
|
|
|
|
|
for (const key of Object.keys(obj)) {
|
|
|
|
// Deprecated key
|
|
|
|
if (key === 'resolution') continue
|
|
|
|
|
|
|
|
const value = obj[key]
|
|
|
|
|
|
|
|
if (typeof value === 'string') {
|
|
|
|
newObj[key] = value.normalize()
|
|
|
|
} else {
|
|
|
|
newObj[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return newObj
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildVideoInfo (obj: any) {
|
|
|
|
return {
|
|
|
|
name: titleTruncation(obj.title),
|
|
|
|
description: descriptionTruncation(obj.description),
|
|
|
|
category: getCategory(obj.categories),
|
|
|
|
licence: getLicence(obj.license),
|
|
|
|
nsfw: isNSFW(obj),
|
|
|
|
tags: getTags(obj.tags),
|
|
|
|
thumbnailUrl: obj.thumbnail || undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function titleTruncation (title: string) {
|
|
|
|
return truncate(title, {
|
|
|
|
'length': CONSTRAINTS_FIELDS.VIDEOS.NAME.max,
|
|
|
|
'separator': /,? +/,
|
|
|
|
'omission': ' […]'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function descriptionTruncation (description: string) {
|
2018-08-02 11:48:50 -04:00
|
|
|
if (!description || description.length < CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.min) return undefined
|
2018-08-02 09:34:09 -04:00
|
|
|
|
|
|
|
return truncate(description, {
|
|
|
|
'length': CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max,
|
|
|
|
'separator': /,? +/,
|
|
|
|
'omission': ' […]'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function isNSFW (info: any) {
|
|
|
|
return info.age_limit && info.age_limit >= 16
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTags (tags: any) {
|
|
|
|
if (Array.isArray(tags) === false) return []
|
|
|
|
|
|
|
|
return tags
|
|
|
|
.filter(t => t.length < CONSTRAINTS_FIELDS.VIDEOS.TAG.max && t.length > CONSTRAINTS_FIELDS.VIDEOS.TAG.min)
|
|
|
|
.map(t => t.normalize())
|
|
|
|
.slice(0, 5)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLicence (licence: string) {
|
|
|
|
if (!licence) return undefined
|
|
|
|
|
2018-08-03 10:23:45 -04:00
|
|
|
if (licence.indexOf('Creative Commons Attribution') !== -1) return 1
|
2018-08-02 09:34:09 -04:00
|
|
|
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCategory (categories: string[]) {
|
|
|
|
if (!categories) return undefined
|
|
|
|
|
|
|
|
const categoryString = categories[0]
|
|
|
|
if (!categoryString || typeof categoryString !== 'string') return undefined
|
|
|
|
|
|
|
|
if (categoryString === 'News & Politics') return 11
|
|
|
|
|
|
|
|
for (const key of Object.keys(VIDEO_CATEGORIES)) {
|
|
|
|
const category = VIDEO_CATEGORIES[key]
|
|
|
|
if (categoryString.toLowerCase() === category.toLowerCase()) return parseInt(key, 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined
|
|
|
|
}
|