Skip to content

Commit 2f2093d

Browse files
committed
feat(plugin): support authenticated proxy
1 parent 700b2a3 commit 2f2093d

File tree

9 files changed

+527
-1
lines changed

9 files changed

+527
-1
lines changed

src/i18n/resources/en.json

+24
Original file line numberDiff line numberDiff line change
@@ -840,6 +840,30 @@
840840
}
841841
}
842842
}
843+
},
844+
"auth-proxy-adapter": {
845+
"name": "Auth Proxy Adapter",
846+
"description": "Support for the use of authentication proxy services",
847+
"menu": {
848+
"disable": "Disable Proxy Adapter",
849+
"enable": "Enable Proxy Adapter",
850+
"hostname": {
851+
"label": "Hostname"
852+
},
853+
"port": {
854+
"label": "Port"
855+
}
856+
},
857+
"prompt": {
858+
"hostname": {
859+
"title": "Proxy Hostname",
860+
"label": "Enter hostname for local proxy server (requires restart):"
861+
},
862+
"port": {
863+
"title": "Proxy Port",
864+
"label": "Enter port for local proxy server (requires restart):"
865+
}
866+
}
843867
}
844868
}
845869
}

src/i18n/resources/zh-CN.json

+24
Original file line numberDiff line numberDiff line change
@@ -840,6 +840,30 @@
840840
"visualizer-type": "可视化类型"
841841
},
842842
"name": "可视化效果"
843+
},
844+
"auth-proxy-adapter": {
845+
"name": "认证代理适配",
846+
"description": "支持使用需要身份验证的代理",
847+
"menu": {
848+
"disable": "禁用代理适配",
849+
"enable": "启用代理适配",
850+
"hostname": {
851+
"label": "主机名"
852+
},
853+
"port": {
854+
"label": "端口"
855+
}
856+
},
857+
"prompt": {
858+
"hostname": {
859+
"title": "代理主机名",
860+
"label": "请输入本地代理服务器的主机名(需要重启):"
861+
},
862+
"port": {
863+
"title": "代理端口",
864+
"label": "请输入本地代理服务器的端口号(需要重启):"
865+
}
866+
}
843867
}
844868
}
845869
}

src/index.ts

+20-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ import { loadI18n, setLanguage, t } from '@/i18n';
5757

5858
import ErrorHtmlAsset from '@assets/error.html?asset';
5959

60+
import { defaultAuthProxyConfig } from '@/plugins/auth-proxy-adapter/config';
61+
6062
import type { PluginConfig } from '@/types/plugins';
6163

6264
if (!is.macOS()) {
@@ -141,7 +143,24 @@ if (is.linux()) {
141143
}
142144

143145
if (config.get('options.proxy')) {
144-
app.commandLine.appendSwitch('proxy-server', config.get('options.proxy'));
146+
const authProxyEnabled = config.plugins.isEnabled('auth-proxy-adapter');
147+
148+
let proxyToUse = '';
149+
if (authProxyEnabled) {
150+
// Use proxy from Auth-Proxy-Adapter plugin
151+
const authProxyConfig = deepmerge(
152+
defaultAuthProxyConfig,
153+
config.get('plugins.auth-proxy-adapter') ?? {},
154+
) as typeof defaultAuthProxyConfig;
155+
156+
const { hostname, port } = authProxyConfig;
157+
proxyToUse = `socks5://${hostname}:${port}`;
158+
} else if (config.get('options.proxy')) {
159+
// Use global proxy settings
160+
proxyToUse = config.get('options.proxy');
161+
}
162+
console.log(LoggerPrefix, `Using proxy: ${proxyToUse}`);
163+
app.commandLine.appendSwitch('proxy-server', proxyToUse);
145164
}
146165

147166
// Adds debug features like hotkeys for triggering dev tools and reload
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './main';

0 commit comments

Comments
 (0)