2018-01-15 05:10:46 -05:00
|
|
|
import * as Bluebird from 'bluebird'
|
2019-02-21 11:19:16 -05:00
|
|
|
import { createWriteStream, remove } from 'fs-extra'
|
2017-11-10 11:27:49 -05:00
|
|
|
import * as request from 'request'
|
2019-07-17 04:03:55 -04:00
|
|
|
import { ACTIVITY_PUB, PEERTUBE_VERSION, WEBSERVER } from '../initializers/constants'
|
2018-11-16 10:48:17 -05:00
|
|
|
import { processImage } from './image-utils'
|
2018-12-04 10:02:49 -05:00
|
|
|
import { join } from 'path'
|
2019-02-21 11:19:16 -05:00
|
|
|
import { logger } from './logger'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2017-12-28 05:16:08 -05:00
|
|
|
|
2018-11-14 09:01:28 -05:00
|
|
|
function doRequest <T> (
|
2019-02-21 11:19:16 -05:00
|
|
|
requestOptions: request.CoreOptions & request.UriOptions & { activityPub?: boolean },
|
|
|
|
bodyKBLimit = 1000 // 1MB
|
2019-02-07 09:08:19 -05:00
|
|
|
): Bluebird<{ response: request.RequestResponse, body: T }> {
|
2019-07-16 08:52:24 -04:00
|
|
|
if (!(requestOptions.headers)) requestOptions.headers = {}
|
|
|
|
requestOptions.headers['User-Agent'] = getUserAgent()
|
|
|
|
|
2017-12-28 05:16:08 -05:00
|
|
|
if (requestOptions.activityPub === true) {
|
|
|
|
requestOptions.headers['accept'] = ACTIVITY_PUB.ACCEPT_HEADER
|
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2018-11-14 09:01:28 -05:00
|
|
|
return new Bluebird<{ response: request.RequestResponse, body: T }>((res, rej) => {
|
2017-11-09 11:51:58 -05:00
|
|
|
request(requestOptions, (err, response, body) => err ? rej(err) : res({ response, body }))
|
2019-02-21 11:19:16 -05:00
|
|
|
.on('data', onRequestDataLengthCheck(bodyKBLimit))
|
2017-11-09 11:51:58 -05:00
|
|
|
})
|
|
|
|
}
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2019-02-21 11:19:16 -05:00
|
|
|
function doRequestAndSaveToFile (
|
|
|
|
requestOptions: request.CoreOptions & request.UriOptions,
|
|
|
|
destPath: string,
|
|
|
|
bodyKBLimit = 10000 // 10MB
|
|
|
|
) {
|
2019-07-16 08:52:24 -04:00
|
|
|
if (!requestOptions.headers) requestOptions.headers = {}
|
|
|
|
requestOptions.headers['User-Agent'] = getUserAgent()
|
|
|
|
|
2018-02-15 12:40:24 -05:00
|
|
|
return new Bluebird<void>((res, rej) => {
|
|
|
|
const file = createWriteStream(destPath)
|
|
|
|
file.on('finish', () => res())
|
|
|
|
|
2017-11-10 08:34:45 -05:00
|
|
|
request(requestOptions)
|
2019-02-21 11:19:16 -05:00
|
|
|
.on('data', onRequestDataLengthCheck(bodyKBLimit))
|
|
|
|
.on('error', err => {
|
|
|
|
file.close()
|
|
|
|
|
|
|
|
remove(destPath)
|
|
|
|
.catch(err => logger.error('Cannot remove %s after request failure.', destPath, { err }))
|
|
|
|
|
|
|
|
return rej(err)
|
|
|
|
})
|
2018-02-15 12:40:24 -05:00
|
|
|
.pipe(file)
|
2017-11-10 08:34:45 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
async function downloadImage (url: string, destDir: string, destName: string, size: { width: number, height: number }) {
|
|
|
|
const tmpPath = join(CONFIG.STORAGE.TMP_DIR, 'pending-' + destName)
|
2018-11-16 10:48:17 -05:00
|
|
|
await doRequestAndSaveToFile({ method: 'GET', uri: url }, tmpPath)
|
|
|
|
|
2018-12-04 10:02:49 -05:00
|
|
|
const destPath = join(destDir, destName)
|
2019-04-15 09:04:02 -04:00
|
|
|
|
|
|
|
try {
|
2019-04-24 03:56:25 -04:00
|
|
|
await processImage(tmpPath, destPath, size)
|
2019-04-15 09:04:02 -04:00
|
|
|
} catch (err) {
|
|
|
|
await remove(tmpPath)
|
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
2018-11-16 10:48:17 -05:00
|
|
|
}
|
|
|
|
|
2019-07-16 08:52:24 -04:00
|
|
|
function getUserAgent () {
|
2019-07-17 04:03:55 -04:00
|
|
|
return `PeerTube/${PEERTUBE_VERSION} (+${WEBSERVER.URL})`
|
2019-07-16 08:52:24 -04:00
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2017-11-09 11:51:58 -05:00
|
|
|
doRequest,
|
2018-11-16 10:48:17 -05:00
|
|
|
doRequestAndSaveToFile,
|
|
|
|
downloadImage
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|
2019-02-21 11:19:16 -05:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Thanks to https://github.com/request/request/issues/2470#issuecomment-268929907 <3
|
|
|
|
function onRequestDataLengthCheck (bodyKBLimit: number) {
|
|
|
|
let bufferLength = 0
|
|
|
|
const bytesLimit = bodyKBLimit * 1000
|
|
|
|
|
|
|
|
return function (chunk) {
|
|
|
|
bufferLength += chunk.length
|
|
|
|
if (bufferLength > bytesLimit) {
|
|
|
|
this.abort()
|
|
|
|
|
|
|
|
const error = new Error(`Response was too large - aborted after ${bytesLimit} bytes.`)
|
|
|
|
this.emit('error', error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|