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

97 lines
2.9 KiB
TypeScript
Raw Normal View History

2018-01-15 10:10:46 +00:00
import * as Bluebird from 'bluebird'
2019-02-21 16:19:16 +00:00
import { createWriteStream, remove } from 'fs-extra'
2017-11-10 16:27:49 +00:00
import * as request from 'request'
2019-07-17 08:03:55 +00:00
import { ACTIVITY_PUB, PEERTUBE_VERSION, WEBSERVER } from '../initializers/constants'
2018-11-16 15:48:17 +00:00
import { processImage } from './image-utils'
2018-12-04 15:02:49 +00:00
import { join } from 'path'
2019-02-21 16:19:16 +00:00
import { logger } from './logger'
2019-04-11 09:33:44 +00:00
import { CONFIG } from '../initializers/config'
2017-12-28 10:16:08 +00:00
2018-11-14 14:01:28 +00:00
function doRequest <T> (
2019-02-21 16:19:16 +00:00
requestOptions: request.CoreOptions & request.UriOptions & { activityPub?: boolean },
bodyKBLimit = 1000 // 1MB
): Bluebird<{ response: request.RequestResponse, body: T }> {
2019-07-16 12:52:24 +00:00
if (!(requestOptions.headers)) requestOptions.headers = {}
requestOptions.headers['User-Agent'] = getUserAgent()
2017-12-28 10:16:08 +00:00
if (requestOptions.activityPub === true) {
requestOptions.headers['accept'] = ACTIVITY_PUB.ACCEPT_HEADER
}
2017-11-09 16:51:58 +00:00
2018-11-14 14:01:28 +00:00
return new Bluebird<{ response: request.RequestResponse, body: T }>((res, rej) => {
2017-11-09 16:51:58 +00:00
request(requestOptions, (err, response, body) => err ? rej(err) : res({ response, body }))
2019-02-21 16:19:16 +00:00
.on('data', onRequestDataLengthCheck(bodyKBLimit))
2017-11-09 16:51:58 +00:00
})
}
2016-02-05 17:03:20 +00:00
2019-02-21 16:19:16 +00:00
function doRequestAndSaveToFile (
requestOptions: request.CoreOptions & request.UriOptions,
destPath: string,
bodyKBLimit = 10000 // 10MB
) {
2019-07-16 12:52:24 +00:00
if (!requestOptions.headers) requestOptions.headers = {}
requestOptions.headers['User-Agent'] = getUserAgent()
2018-02-15 17:40:24 +00:00
return new Bluebird<void>((res, rej) => {
const file = createWriteStream(destPath)
file.on('finish', () => res())
2017-11-10 13:34:45 +00:00
request(requestOptions)
2019-02-21 16:19:16 +00: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 17:40:24 +00:00
.pipe(file)
2017-11-10 13:34:45 +00:00
})
}
2018-12-04 15:02:49 +00: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 15:48:17 +00:00
await doRequestAndSaveToFile({ method: 'GET', uri: url }, tmpPath)
2018-12-04 15:02:49 +00:00
const destPath = join(destDir, destName)
try {
2019-04-24 07:56:25 +00:00
await processImage(tmpPath, destPath, size)
} catch (err) {
await remove(tmpPath)
throw err
}
2018-11-16 15:48:17 +00:00
}
2019-07-16 12:52:24 +00:00
function getUserAgent () {
2019-07-17 08:03:55 +00:00
return `PeerTube/${PEERTUBE_VERSION} (+${WEBSERVER.URL})`
2019-07-16 12:52:24 +00:00
}
// ---------------------------------------------------------------------------
2016-02-05 17:03:20 +00:00
2017-05-15 20:22:03 +00:00
export {
2017-11-09 16:51:58 +00:00
doRequest,
2018-11-16 15:48:17 +00:00
doRequestAndSaveToFile,
downloadImage
2017-05-15 20:22:03 +00:00
}
2019-02-21 16:19:16 +00: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)
}
}
}