-
Notifications
You must be signed in to change notification settings - Fork 893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(plugin): support authenticated proxy #3175
base: master
Are you sure you want to change the base?
Conversation
Images and logs:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces the auth-proxy-adapter plugin to support authenticated proxies by starting a local unauthenticated proxy server that forwards requests to a configured authenticated proxy.
- New menu items allow configuration of hostname and port for the proxy adapter.
- The backend is extended to intercept and forward SOCKS proxy connections via an upstream proxy.
- The application startup is updated to conditionally use the auth-proxy-adapter proxy settings.
Reviewed Changes
Copilot reviewed 7 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
src/plugins/auth-proxy-adapter/menu.ts | Adds menu items for configuring hostname and port with a minor validation discrepancy. |
src/plugins/auth-proxy-adapter/index.ts | Initializes the plugin with its configuration and backend integration. |
src/plugins/auth-proxy-adapter/config.ts | Defines the interface and default configuration for the auth-proxy-adapter plugin. |
src/plugins/auth-proxy-adapter/backend/types.ts | Provides type definitions for backend handling related to SOCKS connections. |
src/plugins/auth-proxy-adapter/backend/main.ts | Implements the core backend logic for handling SOCKS4/5 requests through the upstream proxy. |
src/plugins/auth-proxy-adapter/backend/index.ts | Re-exports backend definitions. |
src/index.ts | Updates application startup logic to use the local proxy if the auth-proxy-adapter is enabled. |
Files not reviewed (2)
- src/i18n/resources/en.json: Language not supported
- src/i18n/resources/zh-CN.json: Language not supported
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Maybe handleSocks4 can be removed because the SOCKS4 protocol does not have proxy authentication. |
I removed handleSocks4 and the application imported the ‘socks’ package because it needed to turn on the socket local server to forward requests |
Added a new plugin to support authenticated proxy.
The auth-proxy-adapter plugin will start a local unauthenticated proxy server (default
socks5://127.0.0.1:4545
) that forwards requests to an authenticated proxy server configured in the application settings, supporting proxy in the formatsocks5://username:password@your_server_ip:port
.When enabled, the plugin intercepts
app.commandLine.appendSwitch('proxy-server', proxyToUse)
and changes the application's proxy to use the local proxy server.Fixes #743