2017-06-05 14:53:49 -05:00
|
|
|
import * as replay from 'request-replay'
|
|
|
|
import * as request from 'request'
|
2016-02-05 11:03:20 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
import {
|
|
|
|
RETRY_REQUESTS,
|
|
|
|
REMOTE_SCHEME,
|
|
|
|
CONFIG
|
|
|
|
} from '../initializers'
|
|
|
|
import { sign } from './peertube-crypto'
|
2016-02-05 11:03:20 -06:00
|
|
|
|
2016-06-18 09:13:54 -05:00
|
|
|
function makeRetryRequest (params, callback) {
|
|
|
|
replay(
|
|
|
|
request(params, callback),
|
|
|
|
{
|
2017-05-15 15:22:03 -05:00
|
|
|
retries: RETRY_REQUESTS,
|
2016-06-18 09:13:54 -05:00
|
|
|
factor: 3,
|
|
|
|
maxTimeout: Infinity,
|
|
|
|
errorCodes: [ 'EADDRINFO', 'ETIMEDOUT', 'ECONNRESET', 'ESOCKETTIMEDOUT', 'ENOTFOUND', 'ECONNREFUSED' ]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2016-02-05 11:03:20 -06:00
|
|
|
|
2016-06-18 09:13:54 -05:00
|
|
|
function makeSecureRequest (params, callback) {
|
|
|
|
const requestParams = {
|
2017-05-15 15:22:03 -05:00
|
|
|
url: REMOTE_SCHEME.HTTP + '://' + params.toPod.host + params.path,
|
|
|
|
json: {}
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2016-02-05 11:03:20 -06:00
|
|
|
|
2017-01-04 15:23:07 -06: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 15:22:03 -05:00
|
|
|
const host = CONFIG.WEBSERVER.HOST
|
2017-01-04 15:23:07 -06:00
|
|
|
|
|
|
|
let dataToSign
|
2016-06-18 09:13:54 -05:00
|
|
|
if (params.data) {
|
2017-05-05 10:35:58 -05:00
|
|
|
dataToSign = params.data
|
2016-02-07 04:23:23 -06:00
|
|
|
} else {
|
2017-01-04 15:23:07 -06:00
|
|
|
// 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
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2017-01-04 15:23:07 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
requestParams.json['signature'] = {
|
2017-01-04 15:23:07 -06:00
|
|
|
host, // Which host we pretend to be
|
2017-05-15 15:22:03 -05:00
|
|
|
signature: sign(dataToSign)
|
2017-01-04 15:23:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are data informations
|
|
|
|
if (params.data) {
|
2017-05-15 15:22:03 -05:00
|
|
|
requestParams.json['data'] = params.data
|
2016-06-18 09:13:54 -05:00
|
|
|
}
|
2017-01-04 15:23:07 -06:00
|
|
|
|
|
|
|
request.post(requestParams, callback)
|
2016-02-07 04:23:23 -06:00
|
|
|
}
|
2016-02-05 11:03:20 -06:00
|
|
|
|
2016-02-07 04:23:23 -06:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-05 11:03:20 -06:00
|
|
|
|
2017-05-15 15:22:03 -05:00
|
|
|
export {
|
|
|
|
makeRetryRequest,
|
|
|
|
makeSecureRequest
|
|
|
|
}
|