mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
| 'use strict'
 | |
| 
 | |
| const replay = require('request-replay')
 | |
| const request = require('request')
 | |
| 
 | |
| const constants = require('../initializers/constants')
 | |
| const peertubeCrypto = require('./peertube-crypto')
 | |
| 
 | |
| const requests = {
 | |
|   makeRetryRequest,
 | |
|   makeSecureRequest
 | |
| }
 | |
| 
 | |
| function makeRetryRequest (params, callback) {
 | |
|   replay(
 | |
|     request(params, callback),
 | |
|     {
 | |
|       retries: constants.RETRY_REQUESTS,
 | |
|       factor: 3,
 | |
|       maxTimeout: Infinity,
 | |
|       errorCodes: [ 'EADDRINFO', 'ETIMEDOUT', 'ECONNRESET', 'ESOCKETTIMEDOUT', 'ENOTFOUND', 'ECONNREFUSED' ]
 | |
|     }
 | |
|   )
 | |
| }
 | |
| 
 | |
| function makeSecureRequest (params, callback) {
 | |
|   const requestParams = {
 | |
|     url: params.toPod.url + params.path
 | |
|   }
 | |
| 
 | |
|   // Add data with POST requst ?
 | |
|   if (params.method === 'POST') {
 | |
|     requestParams.json = {}
 | |
| 
 | |
|     // Add signature if it is specified in the params
 | |
|     if (params.sign === true) {
 | |
|       requestParams.json.signature = {
 | |
|         url: constants.CONFIG.WEBSERVER.URL,
 | |
|         signature: peertubeCrypto.sign(constants.CONFIG.WEBSERVER.URL)
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     // If there are data informations
 | |
|     if (params.data) {
 | |
|       // Encrypt data
 | |
|       if (params.encrypt === true) {
 | |
|         peertubeCrypto.encrypt(params.toPod.publicKey, JSON.stringify(params.data), function (err, encrypted) {
 | |
|           if (err) return callback(err)
 | |
| 
 | |
|           requestParams.json.data = encrypted.data
 | |
|           requestParams.json.key = encrypted.key
 | |
| 
 | |
|           request.post(requestParams, callback)
 | |
|         })
 | |
|       } else {
 | |
|         // No encryption
 | |
|         requestParams.json.data = params.data
 | |
|         request.post(requestParams, callback)
 | |
|       }
 | |
|     } else {
 | |
|       // No data
 | |
|       request.post(requestParams, callback)
 | |
|     }
 | |
|   } else {
 | |
|     request.get(requestParams, callback)
 | |
|   }
 | |
| }
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| module.exports = requests
 |