aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/src/subproviders/redundant_rpc.ts
blob: 67e2a857baa2e66aa0877a6d6433534156852421 (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
import {promisify} from '@0xproject/utils';
import * as _ from 'lodash';
import RpcSubprovider = require('web3-provider-engine/subproviders/rpc');

import {JSONRPCPayload} from '../types';

import {Subprovider} from './subprovider';

export class RedundantRPCSubprovider extends Subprovider {
    private _rpcs: RpcSubprovider[];
    private static async _firstSuccessAsync(
        rpcs: RpcSubprovider[], payload: JSONRPCPayload, next: () => void,
    ): Promise<any> {
        let lastErr: Error|undefined;
        for (const rpc of rpcs) {
            try {
                const data = await promisify(rpc.handleRequest.bind(rpc))(payload, next);
                return data;
            } catch (err) {
                lastErr = err;
                continue;
            }
        }
        if (!_.isUndefined(lastErr)) {
            throw lastErr;
        }
    }
    constructor(endpoints: string[]) {
        super();
        this._rpcs = _.map(endpoints, endpoint => {
            return new RpcSubprovider({
                rpcUrl: endpoint,
            });
        });
    }
    // tslint:disable-next-line:async-suffix
    public async handleRequest(payload: JSONRPCPayload, next: () => void,
                               end: (err: Error|null, data?: any) =>  void): Promise<void> {
        const rpcsCopy = this._rpcs.slice();
        try {
            const data = await RedundantRPCSubprovider._firstSuccessAsync(rpcsCopy, payload, next);
            end(null, data);
        } catch (err) {
            end(err);
        }

    }
}