Compare commits

...

4 Commits

6 changed files with 63 additions and 24 deletions

View File

@ -1,5 +1,19 @@
# Changelog # Changelog
## 2025-02-21 - 3.4.0 - feat(PortProxy)
Enhanced PortProxy with custom target host and improved testing
- PortProxy constructor now accepts 'fromPort', 'toPort', and optional 'toHost' directly from settings
- Refactored test cases to cover forwarding to the custom host
- Added support to handle multiple concurrent connections
- Refactored internal connection handling logic to utilize default configurations
## 2025-02-21 - 3.3.1 - fix(PortProxy)
fixed import usage of net and tls libraries for PortProxy
- Corrected the use of plugins for importing 'tls' and 'net' libraries in the PortProxy module.
- Updated the constructor of PortProxy to accept combined tls options with ProxySettings.
## 2025-02-21 - 3.3.0 - feat(PortProxy) ## 2025-02-21 - 3.3.0 - feat(PortProxy)
Enhanced PortProxy with domain and IP filtering, SNI support, and minimatch integration Enhanced PortProxy with domain and IP filtering, SNI support, and minimatch integration

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartproxy", "name": "@push.rocks/smartproxy",
"version": "3.3.0", "version": "3.4.0",
"private": false, "private": false,
"description": "a proxy for handling high workloads of proxying", "description": "a proxy for handling high workloads of proxying",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -58,7 +58,10 @@ function createTestClient(port: number, data: string): Promise<string> {
// Setup test environment // Setup test environment
tap.test('setup port proxy test environment', async () => { tap.test('setup port proxy test environment', async () => {
testServer = await createTestServer(TEST_SERVER_PORT); testServer = await createTestServer(TEST_SERVER_PORT);
portProxy = new PortProxy(PROXY_PORT, TEST_SERVER_PORT, { portProxy = new PortProxy({
fromPort: PROXY_PORT,
toPort: TEST_SERVER_PORT,
toHost: 'localhost',
domains: [], domains: [],
sniEnabled: false, sniEnabled: false,
defaultAllowedIPs: ['127.0.0.1', '::ffff:127.0.0.1'] defaultAllowedIPs: ['127.0.0.1', '::ffff:127.0.0.1']
@ -70,11 +73,28 @@ tap.test('should start port proxy', async () => {
expect(portProxy.netServer.listening).toBeTrue(); expect(portProxy.netServer.listening).toBeTrue();
}); });
tap.test('should forward TCP connections and data', async () => { tap.test('should forward TCP connections and data to localhost', async () => {
const response = await createTestClient(PROXY_PORT, TEST_DATA); const response = await createTestClient(PROXY_PORT, TEST_DATA);
expect(response).toEqual(`Echo: ${TEST_DATA}`); expect(response).toEqual(`Echo: ${TEST_DATA}`);
}); });
tap.test('should forward TCP connections to custom host', async () => {
// Create a new proxy instance with a custom host
const customHostProxy = new PortProxy({
fromPort: PROXY_PORT + 1,
toPort: TEST_SERVER_PORT,
toHost: '127.0.0.1',
domains: [],
sniEnabled: false,
defaultAllowedIPs: ['127.0.0.1', '::ffff:127.0.0.1']
});
await customHostProxy.start();
const response = await createTestClient(PROXY_PORT + 1, TEST_DATA);
expect(response).toEqual(`Echo: ${TEST_DATA}`);
await customHostProxy.stop();
});
tap.test('should handle multiple concurrent connections', async () => { tap.test('should handle multiple concurrent connections', async () => {
const concurrentRequests = 5; const concurrentRequests = 5;
const requests = Array(concurrentRequests).fill(null).map((_, i) => const requests = Array(concurrentRequests).fill(null).map((_, i) =>

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartproxy', name: '@push.rocks/smartproxy',
version: '3.3.0', version: '3.4.0',
description: 'a proxy for handling high workloads of proxying' description: 'a proxy for handling high workloads of proxying'
} }

View File

@ -2,9 +2,10 @@
import * as http from 'http'; import * as http from 'http';
import * as https from 'https'; import * as https from 'https';
import * as net from 'net'; import * as net from 'net';
import * as tls from 'tls';
import * as url from 'url'; import * as url from 'url';
export { http, https, net, url }; export { http, https, net, tls, url };
// tsclass scope // tsclass scope
import * as tsclass from '@tsclass/tsclass'; import * as tsclass from '@tsclass/tsclass';

View File

@ -1,6 +1,4 @@
import * as plugins from './smartproxy.plugins.js'; import * as plugins from './smartproxy.plugins.js';
import * as net from 'net';
import * as tls from 'tls';
export interface DomainConfig { export interface DomainConfig {
@ -8,23 +6,27 @@ export interface DomainConfig {
allowedIPs: string[]; // glob patterns for IPs allowed to access this domain allowedIPs: string[]; // glob patterns for IPs allowed to access this domain
} }
export interface ProxySettings { export interface ProxySettings extends plugins.tls.TlsOptions {
// Port configuration
fromPort: number;
toPort: number;
toHost?: string; // Target host to proxy to, defaults to 'localhost'
// Domain and security settings
domains: DomainConfig[]; domains: DomainConfig[];
sniEnabled?: boolean; sniEnabled?: boolean;
tlsOptions?: tls.TlsOptions;
defaultAllowedIPs?: string[]; // Optional default IP patterns if no matching domain found defaultAllowedIPs?: string[]; // Optional default IP patterns if no matching domain found
} }
export class PortProxy { export class PortProxy {
netServer: plugins.net.Server; netServer: plugins.net.Server | plugins.tls.Server;
fromPort: number;
toPort: number;
settings: ProxySettings; settings: ProxySettings;
constructor(fromPortArg: number, toPortArg: number, settings: ProxySettings) { constructor(settings: ProxySettings) {
this.fromPort = fromPortArg; this.settings = {
this.toPort = toPortArg; ...settings,
this.settings = settings; toHost: settings.toHost || 'localhost'
};
} }
public async start() { public async start() {
@ -46,11 +48,13 @@ export class PortProxy {
return this.settings.domains.find(config => plugins.minimatch(serverName, config.domain)); return this.settings.domains.find(config => plugins.minimatch(serverName, config.domain));
}; };
const server = this.settings.sniEnabled ? tls.createServer(this.settings.tlsOptions || {}) : net.createServer(); const server = this.settings.sniEnabled
? plugins.tls.createServer(this.settings)
: plugins.net.createServer();
this.netServer = server.on('connection', (from: net.Socket) => { this.netServer = server.on('connection', (from: plugins.net.Socket) => {
const remoteIP = from.remoteAddress || ''; const remoteIP = from.remoteAddress || '';
if (this.settings.sniEnabled && from instanceof tls.TLSSocket) { if (this.settings.sniEnabled && from instanceof plugins.tls.TLSSocket) {
const serverName = (from as any).servername || ''; const serverName = (from as any).servername || '';
const domainConfig = findMatchingDomain(serverName); const domainConfig = findMatchingDomain(serverName);
@ -75,9 +79,9 @@ export class PortProxy {
return; return;
} }
const to = net.createConnection({ const to = plugins.net.createConnection({
host: 'localhost', host: this.settings.toHost!,
port: this.toPort, port: this.settings.toPort,
}); });
from.setTimeout(120000); from.setTimeout(120000);
from.pipe(to); from.pipe(to);
@ -107,8 +111,8 @@ export class PortProxy {
cleanUpSockets(from, to); cleanUpSockets(from, to);
}); });
}) })
.listen(this.fromPort); .listen(this.settings.fromPort);
console.log(`PortProxy -> OK: Now listening on port ${this.fromPort}`); console.log(`PortProxy -> OK: Now listening on port ${this.settings.fromPort}`);
} }
public async stop() { public async stop() {