UNPKG

@journeyapps/https-proxy-socket

Version:

Node library to enable opening Socket connections via an HTTPS proxy.

35 lines (34 loc) 1.52 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); const debug = require('debug')('https-proxy'); /** * Replace the connection method on the tedious library (used by mssql) * to connect via a proxy. * * @param proxy - the proxy to use */ function useProxyForTedious(proxy) { const { Connector } = require('tedious/lib/connector'); Connector.prototype.execute = function (cb) { return __awaiter(this, void 0, void 0, function* () { debug(`opening sql connection to ${this.options.host}:${this.options.port}`); try { const socket = yield proxy.connect(this.options); cb(null, socket); } catch (error) { cb(error); } }); }; } exports.useProxyForTedious = useProxyForTedious;