aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/requests.js
blob: 06109ce168d4e8182248590e510aa7950889dc59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
'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: constants.REMOTE_SCHEME.HTTP + '://' + params.toPod.host + 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) {
      const host = constants.CONFIG.WEBSERVER.HOST

      requestParams.json.signature = {
        host,
        signature: peertubeCrypto.sign(host)
      }
    }

    // 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