X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Frequests.ts;h=5760ad1c1854dc617f164b00aa68fbd8dd5a9fe4;hb=745778256ced65415b04a9817fc49db70d4b6681;hp=48b1fd703122e1c4cb9013ccfa7f3409bca8c33a;hpb=4d4e5cd4dca78480ec7f40e747f424cd107376a4;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/requests.ts b/server/helpers/requests.ts index 48b1fd703..5760ad1c1 100644 --- a/server/helpers/requests.ts +++ b/server/helpers/requests.ts @@ -1,65 +1,45 @@ -import * as replay from 'request-replay' +import * as Bluebird from 'bluebird' +import { createWriteStream } from 'fs-extra' import * as request from 'request' - -import { - RETRY_REQUESTS, - REMOTE_SCHEME, - CONFIG -} from '../initializers' -import { sign } from './peertube-crypto' - -function makeRetryRequest (params, callback) { - replay( - request(params, callback), - { - retries: RETRY_REQUESTS, - factor: 3, - maxTimeout: Infinity, - errorCodes: [ 'EADDRINFO', 'ETIMEDOUT', 'ECONNRESET', 'ESOCKETTIMEDOUT', 'ENOTFOUND', 'ECONNREFUSED' ] - } - ) -} - -function makeSecureRequest (params, callback) { - const requestParams = { - url: REMOTE_SCHEME.HTTP + '://' + params.toPod.host + params.path, - json: {} - } - - if (params.method !== 'POST') { - return callback(new Error('Cannot make a secure request with a non POST method.')) +import { ACTIVITY_PUB } from '../initializers' +import { processImage } from './image-utils' +import { extname } from 'path' + +function doRequest ( + requestOptions: request.CoreOptions & request.UriOptions & { activityPub?: boolean } +): Bluebird<{ response: request.RequestResponse, body: any }> { + if (requestOptions.activityPub === true) { + if (!Array.isArray(requestOptions.headers)) requestOptions.headers = {} + requestOptions.headers['accept'] = ACTIVITY_PUB.ACCEPT_HEADER } - // Add signature if it is specified in the params - if (params.sign === true) { - const host = CONFIG.WEBSERVER.HOST + return new Bluebird<{ response: request.RequestResponse, body: T }>((res, rej) => { + request(requestOptions, (err, response, body) => err ? rej(err) : res({ response, body })) + }) +} - let dataToSign - if (params.data) { - dataToSign = params.data - } else { - // We do not have data to sign so we just take our host - // It is not ideal but the connection should be in HTTPS - dataToSign = host - } +function doRequestAndSaveToFile (requestOptions: request.CoreOptions & request.UriOptions, destPath: string) { + return new Bluebird((res, rej) => { + const file = createWriteStream(destPath) + file.on('finish', () => res()) - requestParams.json['signature'] = { - host, // Which host we pretend to be - signature: sign(dataToSign) - } - } + request(requestOptions) + .on('error', err => rej(err)) + .pipe(file) + }) +} - // If there are data informations - if (params.data) { - requestParams.json['data'] = params.data - } +async function downloadImage (url: string, destPath: string, size: { width: number, height: number }) { + const tmpPath = destPath + '.tmp' + extname(destPath) + await doRequestAndSaveToFile({ method: 'GET', uri: url }, tmpPath) - request.post(requestParams, callback) + await processImage({ path: tmpPath }, destPath, size) } // --------------------------------------------------------------------------- export { - makeRetryRequest, - makeSecureRequest + doRequest, + doRequestAndSaveToFile, + downloadImage }