PeerTube/server/helpers/requests.ts

66 lines
1.5 KiB
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as replay from 'request-replay'
import * as request from 'request'
2016-02-05 18:03:20 +01:00
2017-05-15 22:22:03 +02:00
import {
RETRY_REQUESTS,
REMOTE_SCHEME,
CONFIG
} from '../initializers'
import { sign } from './peertube-crypto'
2016-02-05 18:03:20 +01:00
function makeRetryRequest (params, callback) {
replay(
request(params, callback),
{
2017-05-15 22:22:03 +02:00
retries: RETRY_REQUESTS,
factor: 3,
maxTimeout: Infinity,
errorCodes: [ 'EADDRINFO', 'ETIMEDOUT', 'ECONNRESET', 'ESOCKETTIMEDOUT', 'ENOTFOUND', 'ECONNREFUSED' ]
}
)
}
2016-02-05 18:03:20 +01:00
function makeSecureRequest (params, callback) {
const requestParams = {
2017-05-15 22:22:03 +02:00
url: REMOTE_SCHEME.HTTP + '://' + params.toPod.host + params.path,
json: {}
}
2016-02-05 18:03:20 +01:00
if (params.method !== 'POST') {
return callback(new Error('Cannot make a secure request with a non POST method.'))
}
// Add signature if it is specified in the params
if (params.sign === true) {
2017-05-15 22:22:03 +02:00
const host = CONFIG.WEBSERVER.HOST
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
}
2017-05-15 22:22:03 +02:00
requestParams.json['signature'] = {
host, // Which host we pretend to be
2017-05-15 22:22:03 +02:00
signature: sign(dataToSign)
}
}
// If there are data informations
if (params.data) {
2017-05-15 22:22:03 +02:00
requestParams.json['data'] = params.data
}
request.post(requestParams, callback)
}
2016-02-05 18:03:20 +01:00
// ---------------------------------------------------------------------------
2016-02-05 18:03:20 +01:00
2017-05-15 22:22:03 +02:00
export {
makeRetryRequest,
makeSecureRequest
}