mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-25 13:45:03 +08:00
8b92982112
* refactor(proxy): simplify logging for better readability - Delete 17 verbose debug logs from handlers, streaming, and response_processor - Convert excessive INFO logs to DEBUG level for internal processing details - Add 2 critical INFO logs in forwarder.rs for failover scenarios: - Log when switching to next provider after failure - Log when all providers have been exhausted - Fix clippy uninlined_format_args warning This reduces log noise while maintaining visibility into key user-facing decisions. * fix: replace unsafe unwrap() calls with proper error handling - database/dao/mcp.rs: Use map_err for serde_json serialization - database/dao/providers.rs: Use map_err for settings_config and meta serialization - commands/misc.rs: Use expect() for compile-time regex pattern - services/prompt.rs: Use unwrap_or_default() for SystemTime - deeplink/provider.rs: Replace unwrap() with is_none_or pattern for Option checks Reduces potential panic points from 26 to 1 (static regex init, safe). * refactor(proxy): simplify verbose logging output - Remove response JSON full output logging in response_processor - Remove per-request INFO logs in provider_router (failover status, provider selection) - Change model mapping log from INFO to DEBUG - Change usage logging failure from INFO to WARN - Remove redundant debug logs for circuit breaker operations Reduces log noise significantly while preserving important warnings and errors. * feat(proxy): add structured log codes for i18n support Add error code system to proxy module logs for multi-language support: - CB-001~006: Circuit breaker state transitions and triggers - SRV-001~004: Proxy server lifecycle events - FWD-001~002: Request forwarding and failover - FO-001~005: Failover switch operations - USG-001~002: Usage logging errors Log format: [CODE] Chinese message Frontend/log tools can map codes to any language. New file: src/proxy/log_codes.rs - centralized code definitions * chore: bump version to 3.9.1 * style: format code with prettier and rustfmt * fix(ui): allow number inputs to be fully cleared before saving - Convert numeric state to string type for controlled inputs - Use isNaN() check instead of || fallback to allow 0 values - Apply fix to ProxyPanel, CircuitBreakerConfigPanel, AutoFailoverConfigPanel, and ModelTestConfigPanel * feat(pricing): support @ separator in model name matching - Refactor model name cleaning into chained method calls - Add @ to - replacement (e.g., gpt-5.2-codex@low → gpt-5.2-codex-low) - Add test case for @ separator matching * feat(proxy): add global proxy settings support Add ability to configure a global HTTP/HTTPS proxy for all outbound requests including provider API calls, speed tests, and stream checks. * fix(proxy): improve validation and error handling in proxy config panels - Add StopTimeout/StopFailed error types for proper stop() error reporting - Replace silent clamp with validation-and-block in config panels - Add listenAddress format validation in ProxyPanel - Use log_codes constants instead of hardcoded strings - Use once_cell::Lazy for regex precompilation * fix(proxy): harden error handling and input validation - Handle RwLock poisoning in settings.rs with unwrap_or_else - Add fallback for dirs::home_dir() in config modules - Normalize localhost to 127.0.0.1 in ProxyPanel - Format IPv6 addresses with brackets for valid URLs - Strict port validation with pure digit regex - Treat NaN as validation failure in config panels - Log warning on cost_multiplier parse failure - Align timeoutSeconds range to [0, 300] across all panels * feat(proxy): add local proxy auto-scan and fix hot-reload - Add scan_local_proxies command to detect common proxy ports - Fix SkillService not using updated proxy after hot-reload - Move global proxy settings to advanced tab - Add error handling for scan failures * fix(proxy): allow localhost input in proxy address field * fix(proxy): restore request timeout and fix proxy hot-reload issues - Add URL scheme validation in build_client (http/https/socks5/socks5h) - Restore per-request timeout for speedtest, stream_check, usage_script, forwarder - Fix set_global_proxy_url to validate before persisting to DB - Mask proxy credentials in all log outputs - Fix forwarder hot-reload by fetching client on each request * style: format code with prettier * fix(proxy): improve global proxy stability and error handling - Fix RwLock silent failures with explicit error propagation - Handle init() duplicate calls gracefully with warning log - Align fallback client config with build_client settings - Make scan_local_proxies async to avoid UI blocking - Add mixed mode support for Clash 7890 port (http+socks5) - Use multiple test targets for better proxy connectivity test - Clear invalid proxy config on init failure - Restore timeout constraints in usage_script - Fix mask_url output for URLs without port - Add structured error codes [GP-001 to GP-009] * feat(proxy): add username/password authentication support - Add separate username and password input fields - Implement password visibility toggle with eye icon - Add clear button to reset all proxy fields - Auto-extract auth info from saved URL and merge on save - Update i18n translations (zh/en/ja) * fix(proxy): fix double encoding issue in proxy auth and add debug logs - Remove encodeURIComponent in mergeAuth() since URL object's username/password setters already do percent-encoding automatically - Add GP-010 debug log for database read operations - Add GP-011 debug log to track incoming URL info (length, has_auth) - Fix username.trim() in fallback branch for consistent behavior
276 lines
7.7 KiB
TypeScript
276 lines
7.7 KiB
TypeScript
/**
|
|
* 全局出站代理设置组件
|
|
*
|
|
* 提供配置全局代理的输入界面,支持用户名密码认证。
|
|
*/
|
|
|
|
import { useState, useEffect, useMemo } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Loader2, TestTube2, Search, Eye, EyeOff, X } from "lucide-react";
|
|
import {
|
|
useGlobalProxyUrl,
|
|
useSetGlobalProxyUrl,
|
|
useTestProxy,
|
|
useScanProxies,
|
|
type DetectedProxy,
|
|
} from "@/hooks/useGlobalProxy";
|
|
|
|
/** 从完整 URL 提取认证信息 */
|
|
function extractAuth(url: string): {
|
|
baseUrl: string;
|
|
username: string;
|
|
password: string;
|
|
} {
|
|
if (!url.trim()) return { baseUrl: "", username: "", password: "" };
|
|
|
|
try {
|
|
const parsed = new URL(url);
|
|
const username = decodeURIComponent(parsed.username || "");
|
|
const password = decodeURIComponent(parsed.password || "");
|
|
// 移除认证信息,获取基础 URL
|
|
parsed.username = "";
|
|
parsed.password = "";
|
|
return { baseUrl: parsed.toString(), username, password };
|
|
} catch {
|
|
return { baseUrl: url, username: "", password: "" };
|
|
}
|
|
}
|
|
|
|
/** 将认证信息合并到 URL */
|
|
function mergeAuth(
|
|
baseUrl: string,
|
|
username: string,
|
|
password: string,
|
|
): string {
|
|
if (!baseUrl.trim()) return "";
|
|
if (!username.trim()) return baseUrl;
|
|
|
|
try {
|
|
const parsed = new URL(baseUrl);
|
|
// URL 对象的 username/password setter 会自动进行 percent-encoding
|
|
// 不要使用 encodeURIComponent,否则会导致双重编码
|
|
parsed.username = username.trim();
|
|
if (password) {
|
|
parsed.password = password;
|
|
}
|
|
return parsed.toString();
|
|
} catch {
|
|
// URL 解析失败,尝试手动插入(此时需要手动编码)
|
|
const match = baseUrl.match(/^(\w+:\/\/)(.+)$/);
|
|
if (match) {
|
|
const auth = password
|
|
? `${encodeURIComponent(username.trim())}:${encodeURIComponent(password)}@`
|
|
: `${encodeURIComponent(username.trim())}@`;
|
|
return `${match[1]}${auth}${match[2]}`;
|
|
}
|
|
return baseUrl;
|
|
}
|
|
}
|
|
|
|
export function GlobalProxySettings() {
|
|
const { t } = useTranslation();
|
|
const { data: savedUrl, isLoading } = useGlobalProxyUrl();
|
|
const setMutation = useSetGlobalProxyUrl();
|
|
const testMutation = useTestProxy();
|
|
const scanMutation = useScanProxies();
|
|
|
|
const [url, setUrl] = useState("");
|
|
const [username, setUsername] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const [showPassword, setShowPassword] = useState(false);
|
|
const [dirty, setDirty] = useState(false);
|
|
const [detected, setDetected] = useState<DetectedProxy[]>([]);
|
|
|
|
// 计算完整 URL(含认证信息)
|
|
const fullUrl = useMemo(
|
|
() => mergeAuth(url, username, password),
|
|
[url, username, password],
|
|
);
|
|
|
|
// 同步远程配置
|
|
useEffect(() => {
|
|
if (savedUrl !== undefined) {
|
|
const { baseUrl, username: u, password: p } = extractAuth(savedUrl || "");
|
|
setUrl(baseUrl);
|
|
setUsername(u);
|
|
setPassword(p);
|
|
setDirty(false);
|
|
}
|
|
}, [savedUrl]);
|
|
|
|
const handleSave = async () => {
|
|
await setMutation.mutateAsync(fullUrl);
|
|
setDirty(false);
|
|
};
|
|
|
|
const handleTest = async () => {
|
|
if (fullUrl) {
|
|
await testMutation.mutateAsync(fullUrl);
|
|
}
|
|
};
|
|
|
|
const handleScan = async () => {
|
|
const result = await scanMutation.mutateAsync();
|
|
setDetected(result);
|
|
};
|
|
|
|
const handleSelect = (proxyUrl: string) => {
|
|
const { baseUrl, username: u, password: p } = extractAuth(proxyUrl);
|
|
setUrl(baseUrl);
|
|
setUsername(u);
|
|
setPassword(p);
|
|
setDirty(true);
|
|
setDetected([]);
|
|
};
|
|
|
|
const handleClear = () => {
|
|
setUrl("");
|
|
setUsername("");
|
|
setPassword("");
|
|
setDirty(true);
|
|
};
|
|
|
|
const handleKeyDown = (e: React.KeyboardEvent) => {
|
|
if (e.key === "Enter" && dirty && !setMutation.isPending) {
|
|
handleSave();
|
|
}
|
|
};
|
|
|
|
// 只在首次加载且无数据时显示加载状态
|
|
if (isLoading && savedUrl === undefined) {
|
|
return (
|
|
<div className="flex items-center justify-center p-4">
|
|
<Loader2 className="h-5 w-5 animate-spin text-muted-foreground" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-3">
|
|
{/* 描述 */}
|
|
<p className="text-sm text-muted-foreground">
|
|
{t("settings.globalProxy.hint")}
|
|
</p>
|
|
|
|
{/* 代理地址输入框和按钮 */}
|
|
<div className="flex gap-2">
|
|
<Input
|
|
placeholder="http://127.0.0.1:7890 / socks5://127.0.0.1:1080"
|
|
value={url}
|
|
onChange={(e) => {
|
|
setUrl(e.target.value);
|
|
setDirty(true);
|
|
}}
|
|
onKeyDown={handleKeyDown}
|
|
className="font-mono text-sm flex-1"
|
|
/>
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
disabled={scanMutation.isPending}
|
|
onClick={handleScan}
|
|
title={t("settings.globalProxy.scan")}
|
|
>
|
|
{scanMutation.isPending ? (
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
) : (
|
|
<Search className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
disabled={!fullUrl || testMutation.isPending}
|
|
onClick={handleTest}
|
|
title={t("settings.globalProxy.test")}
|
|
>
|
|
{testMutation.isPending ? (
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
) : (
|
|
<TestTube2 className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
size="icon"
|
|
disabled={!url && !username && !password}
|
|
onClick={handleClear}
|
|
title={t("settings.globalProxy.clear")}
|
|
>
|
|
<X className="h-4 w-4" />
|
|
</Button>
|
|
<Button
|
|
onClick={handleSave}
|
|
disabled={!dirty || setMutation.isPending}
|
|
size="sm"
|
|
>
|
|
{setMutation.isPending && (
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
)}
|
|
{t("common.save")}
|
|
</Button>
|
|
</div>
|
|
|
|
{/* 认证信息:用户名 + 密码(可选) */}
|
|
<div className="flex gap-2">
|
|
<Input
|
|
placeholder={t("settings.globalProxy.username")}
|
|
value={username}
|
|
onChange={(e) => {
|
|
setUsername(e.target.value);
|
|
setDirty(true);
|
|
}}
|
|
onKeyDown={handleKeyDown}
|
|
className="font-mono text-sm flex-1"
|
|
/>
|
|
<div className="relative flex-1">
|
|
<Input
|
|
type={showPassword ? "text" : "password"}
|
|
placeholder={t("settings.globalProxy.password")}
|
|
value={password}
|
|
onChange={(e) => {
|
|
setPassword(e.target.value);
|
|
setDirty(true);
|
|
}}
|
|
onKeyDown={handleKeyDown}
|
|
className="font-mono text-sm pr-10"
|
|
/>
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
size="icon"
|
|
className="absolute right-0 top-0 h-full px-3 hover:bg-transparent"
|
|
onClick={() => setShowPassword(!showPassword)}
|
|
tabIndex={-1}
|
|
>
|
|
{showPassword ? (
|
|
<EyeOff className="h-4 w-4 text-muted-foreground" />
|
|
) : (
|
|
<Eye className="h-4 w-4 text-muted-foreground" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* 扫描结果 */}
|
|
{detected.length > 0 && (
|
|
<div className="flex flex-wrap gap-2">
|
|
{detected.map((p) => (
|
|
<Button
|
|
key={p.url}
|
|
variant="secondary"
|
|
size="sm"
|
|
onClick={() => handleSelect(p.url)}
|
|
className="font-mono text-xs"
|
|
>
|
|
{p.url}
|
|
</Button>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|