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

105 lines
2.7 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as replay from 'request-replay'
import * as request from 'request'
import * as Promise from 'bluebird'
2016-02-05 17:03:20 +00:00
2017-05-15 20:22:03 +00:00
import {
RETRY_REQUESTS,
REMOTE_SCHEME,
CONFIG
} from '../initializers'
2017-06-10 20:15:25 +00:00
import { PodInstance } from '../models'
import { PodSignature } from '../../shared'
2017-11-09 16:51:58 +00:00
import { signObject } from './peertube-crypto'
2017-11-10 13:34:45 +00:00
import { createWriteStream } from 'fs'
2017-11-09 16:51:58 +00:00
function doRequest (requestOptions: request.CoreOptions & request.UriOptions) {
return new Promise<{ response: request.RequestResponse, body: any }>((res, rej) => {
request(requestOptions, (err, response, body) => err ? rej(err) : res({ response, body }))
})
}
2016-02-05 17:03:20 +00:00
2017-11-10 13:34:45 +00:00
function doRequestAndSaveToFile (requestOptions: request.CoreOptions & request.UriOptions, destPath: string) {
return new Promise<request.RequestResponse>((res, rej) => {
request(requestOptions)
.on('response', response => res(response as request.RequestResponse))
.on('error', err => rej(err))
.pipe(createWriteStream(destPath))
})
}
2017-06-10 20:15:25 +00:00
type MakeRetryRequestParams = {
url: string,
2017-10-31 15:31:24 +00:00
method: 'GET' | 'POST',
2017-06-10 20:15:25 +00:00
json: Object
}
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-02-05 17:03:20 +00:00
2017-06-10 20:15:25 +00:00
type MakeSecureRequestParams = {
toPod: PodInstance
path: string
data?: Object
}
function makeSecureRequest (params: MakeSecureRequestParams) {
2017-11-09 16:51:58 +00:00
const requestParams: {
method: 'POST',
uri: string,
json: {
signature: PodSignature,
data: any
}
2017-11-09 16:51:58 +00:00
} = {
method: 'POST',
uri: REMOTE_SCHEME.HTTP + '://' + params.toPod.host + params.path,
json: {
signature: null,
data: null
}
2017-11-09 16:51:58 +00:00
}
2017-11-09 16:51:58 +00:00
const host = CONFIG.WEBSERVER.HOST
2017-11-09 16:51:58 +00: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-11-09 16:51:58 +00:00
sign(dataToSign).then(signature => {
requestParams.json.signature = {
host, // Which host we pretend to be
signature
}
2017-11-09 16:51:58 +00:00
// If there are data information
if (params.data) {
requestParams.json.data = params.data
}
2017-11-09 16:51:58 +00:00
return doRequest(requestParams)
})
}
2016-02-05 17:03:20 +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,
2017-11-10 13:34:45 +00:00
doRequestAndSaveToFile,
2017-05-15 20:22:03 +00:00
makeRetryRequest,
makeSecureRequest
}