aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/requests.ts
blob: 31cedd7689c6386d54a74519924df6eb9c0e2680 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import * as replay from 'request-replay'
import * as request from 'request'
import * as Promise from 'bluebird'

import {
  RETRY_REQUESTS,
  REMOTE_SCHEME,
  CONFIG
} from '../initializers'
import { PodInstance } from '../models'
import { PodSignature } from '../../shared'
import { signObject } from './peertube-crypto'
import { createWriteStream } from 'fs'

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 }))
  })
}

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))
  })
}

type MakeRetryRequestParams = {
  url: string,
  method: 'GET' | 'POST',
  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' ]
      }
    )
  })
}

type MakeSecureRequestParams = {
  toPod: PodInstance
  path: string
  data?: Object
}
function makeSecureRequest (params: MakeSecureRequestParams) {
  const requestParams: {
    method: 'POST',
    uri: string,
    json: {
      signature: PodSignature,
      data: any
    }
  } = {
    method: 'POST',
    uri: REMOTE_SCHEME.HTTP + '://' + params.toPod.host + params.path,
    json: {
      signature: null,
      data: null
    }
  }

  const host = CONFIG.WEBSERVER.HOST

  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
  }

  sign(dataToSign).then(signature => {
    requestParams.json.signature = {
      host, // Which host we pretend to be
      signature
    }

    // If there are data information
    if (params.data) {
      requestParams.json.data = params.data
    }

    return doRequest(requestParams)
  })
}

// ---------------------------------------------------------------------------

export {
  doRequest,
  doRequestAndSaveToFile,
  makeRetryRequest,
  makeSecureRequest
}