2017-06-05 15:53:49 -04:00
|
|
|
import * as replay from 'request-replay'
|
|
|
|
import * as request from 'request'
|
2017-07-05 07:26:25 -04:00
|
|
|
import * as Promise from 'bluebird'
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
import {
|
|
|
|
RETRY_REQUESTS,
|
|
|
|
REMOTE_SCHEME,
|
|
|
|
CONFIG
|
|
|
|
} from '../initializers'
|
2017-06-10 16:15:25 -04:00
|
|
|
import { PodInstance } from '../models'
|
2017-07-10 13:43:21 -04:00
|
|
|
import { PodSignature } from '../../shared'
|
2017-05-15 16:22:03 -04:00
|
|
|
import { sign } from './peertube-crypto'
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
type MakeRetryRequestParams = {
|
|
|
|
url: string,
|
2017-10-31 11:31:24 -04:00
|
|
|
method: 'GET' | 'POST',
|
2017-06-10 16:15:25 -04:00
|
|
|
json: Object
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
function makeRetryRequest (params: MakeRetryRequestParams) {
|
|
|
|
return new Promise<{ response: request.RequestResponse, body: any }>((res, rej) => {
|
|
|
|
replay(
|
|
|
|
request(params, (err, response, body) => err ? rej(err) : res({ response, body })),
|
|
|
|
{
|
|
|
|
retries: RETRY_REQUESTS,
|
|
|
|
factor: 3,
|
|
|
|
maxTimeout: Infinity,
|
|
|
|
errorCodes: [ 'EADDRINFO', 'ETIMEDOUT', 'ECONNRESET', 'ESOCKETTIMEDOUT', 'ENOTFOUND', 'ECONNREFUSED' ]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2016-06-18 10:13:54 -04:00
|
|
|
}
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
type MakeSecureRequestParams = {
|
2017-10-31 11:31:24 -04:00
|
|
|
method: 'GET' | 'POST'
|
2017-06-10 16:15:25 -04:00
|
|
|
toPod: PodInstance
|
|
|
|
path: string
|
|
|
|
data?: Object
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
function makeSecureRequest (params: MakeSecureRequestParams) {
|
|
|
|
return new Promise<{ response: request.RequestResponse, body: any }>((res, rej) => {
|
2017-07-10 13:43:21 -04:00
|
|
|
const requestParams: {
|
|
|
|
url: string,
|
|
|
|
json: {
|
|
|
|
signature: PodSignature,
|
|
|
|
data: any
|
|
|
|
}
|
|
|
|
} = {
|
2017-07-05 07:26:25 -04:00
|
|
|
url: REMOTE_SCHEME.HTTP + '://' + params.toPod.host + params.path,
|
2017-07-10 13:43:21 -04:00
|
|
|
json: {
|
|
|
|
signature: null,
|
|
|
|
data: null
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
}
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
if (params.method !== 'POST') {
|
|
|
|
return rej(new Error('Cannot make a secure request with a non POST method.'))
|
|
|
|
}
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-07-07 10:57:28 -04:00
|
|
|
const host = CONFIG.WEBSERVER.HOST
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-07-07 10:57:28 -04:00
|
|
|
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-01-04 16:23:07 -05:00
|
|
|
|
2017-07-07 10:57:28 -04:00
|
|
|
sign(dataToSign).then(signature => {
|
2017-07-10 13:43:21 -04:00
|
|
|
requestParams.json.signature = {
|
2017-07-05 07:26:25 -04:00
|
|
|
host, // Which host we pretend to be
|
2017-07-07 10:57:28 -04:00
|
|
|
signature
|
2017-07-05 07:26:25 -04:00
|
|
|
}
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-10-25 10:03:33 -04:00
|
|
|
// If there are data information
|
2017-07-07 10:57:28 -04:00
|
|
|
if (params.data) {
|
2017-07-10 13:43:21 -04:00
|
|
|
requestParams.json.data = params.data
|
2017-07-07 10:57:28 -04:00
|
|
|
}
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-07-07 10:57:28 -04:00
|
|
|
request.post(requestParams, (err, response, body) => err ? rej(err) : res({ response, body }))
|
|
|
|
})
|
2017-07-05 07:26:25 -04:00
|
|
|
})
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2016-02-05 12:03:20 -05: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 {
|
|
|
|
makeRetryRequest,
|
|
|
|
makeSecureRequest
|
|
|
|
}
|