mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-26 06:24:32 +08:00
c5d3732b9f
- 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
520 lines
18 KiB
TypeScript
520 lines
18 KiB
TypeScript
import { useState, useEffect } from "react";
|
||
import { useTranslation } from "react-i18next";
|
||
import { Button } from "@/components/ui/button";
|
||
import { Input } from "@/components/ui/input";
|
||
import { Label } from "@/components/ui/label";
|
||
import { Alert, AlertDescription } from "@/components/ui/alert";
|
||
import { Save, Loader2, Info } from "lucide-react";
|
||
import { toast } from "sonner";
|
||
import { useAppProxyConfig, useUpdateAppProxyConfig } from "@/lib/query/proxy";
|
||
|
||
export interface AutoFailoverConfigPanelProps {
|
||
appType: string;
|
||
disabled?: boolean;
|
||
}
|
||
|
||
export function AutoFailoverConfigPanel({
|
||
appType,
|
||
disabled = false,
|
||
}: AutoFailoverConfigPanelProps) {
|
||
const { t } = useTranslation();
|
||
const { data: config, isLoading, error } = useAppProxyConfig(appType);
|
||
const updateConfig = useUpdateAppProxyConfig();
|
||
|
||
// 使用字符串状态以支持完全清空数字输入框
|
||
const [formData, setFormData] = useState({
|
||
autoFailoverEnabled: false,
|
||
maxRetries: "3",
|
||
streamingFirstByteTimeout: "30",
|
||
streamingIdleTimeout: "60",
|
||
nonStreamingTimeout: "300",
|
||
circuitFailureThreshold: "5",
|
||
circuitSuccessThreshold: "2",
|
||
circuitTimeoutSeconds: "60",
|
||
circuitErrorRateThreshold: "50", // 存储百分比值
|
||
circuitMinRequests: "10",
|
||
});
|
||
|
||
useEffect(() => {
|
||
if (config) {
|
||
setFormData({
|
||
autoFailoverEnabled: config.autoFailoverEnabled,
|
||
maxRetries: String(config.maxRetries),
|
||
streamingFirstByteTimeout: String(config.streamingFirstByteTimeout),
|
||
streamingIdleTimeout: String(config.streamingIdleTimeout),
|
||
nonStreamingTimeout: String(config.nonStreamingTimeout),
|
||
circuitFailureThreshold: String(config.circuitFailureThreshold),
|
||
circuitSuccessThreshold: String(config.circuitSuccessThreshold),
|
||
circuitTimeoutSeconds: String(config.circuitTimeoutSeconds),
|
||
circuitErrorRateThreshold: String(
|
||
Math.round(config.circuitErrorRateThreshold * 100),
|
||
),
|
||
circuitMinRequests: String(config.circuitMinRequests),
|
||
});
|
||
}
|
||
}, [config]);
|
||
|
||
const handleSave = async () => {
|
||
if (!config) return;
|
||
// 解析数字,返回 NaN 表示无效输入
|
||
const parseNum = (val: string) => {
|
||
const trimmed = val.trim();
|
||
// 必须是纯数字
|
||
if (!/^-?\d+$/.test(trimmed)) return NaN;
|
||
return parseInt(trimmed);
|
||
};
|
||
|
||
// 定义各字段的有效范围
|
||
const ranges = {
|
||
maxRetries: { min: 0, max: 10 },
|
||
streamingFirstByteTimeout: { min: 0, max: 180 },
|
||
streamingIdleTimeout: { min: 0, max: 600 },
|
||
nonStreamingTimeout: { min: 0, max: 1800 },
|
||
circuitFailureThreshold: { min: 1, max: 20 },
|
||
circuitSuccessThreshold: { min: 1, max: 10 },
|
||
circuitTimeoutSeconds: { min: 0, max: 300 },
|
||
circuitErrorRateThreshold: { min: 0, max: 100 },
|
||
circuitMinRequests: { min: 5, max: 100 },
|
||
};
|
||
|
||
// 解析原始值
|
||
const raw = {
|
||
maxRetries: parseNum(formData.maxRetries),
|
||
streamingFirstByteTimeout: parseNum(formData.streamingFirstByteTimeout),
|
||
streamingIdleTimeout: parseNum(formData.streamingIdleTimeout),
|
||
nonStreamingTimeout: parseNum(formData.nonStreamingTimeout),
|
||
circuitFailureThreshold: parseNum(formData.circuitFailureThreshold),
|
||
circuitSuccessThreshold: parseNum(formData.circuitSuccessThreshold),
|
||
circuitTimeoutSeconds: parseNum(formData.circuitTimeoutSeconds),
|
||
circuitErrorRateThreshold: parseNum(formData.circuitErrorRateThreshold),
|
||
circuitMinRequests: parseNum(formData.circuitMinRequests),
|
||
};
|
||
|
||
// 校验是否超出范围(NaN 也视为无效)
|
||
const errors: string[] = [];
|
||
const checkRange = (
|
||
value: number,
|
||
range: { min: number; max: number },
|
||
label: string,
|
||
) => {
|
||
if (isNaN(value) || value < range.min || value > range.max) {
|
||
errors.push(`${label}: ${range.min}-${range.max}`);
|
||
}
|
||
};
|
||
|
||
checkRange(
|
||
raw.maxRetries,
|
||
ranges.maxRetries,
|
||
t("proxy.autoFailover.maxRetries", "最大重试次数"),
|
||
);
|
||
checkRange(
|
||
raw.streamingFirstByteTimeout,
|
||
ranges.streamingFirstByteTimeout,
|
||
t("proxy.autoFailover.streamingFirstByte", "流式首字节超时"),
|
||
);
|
||
checkRange(
|
||
raw.streamingIdleTimeout,
|
||
ranges.streamingIdleTimeout,
|
||
t("proxy.autoFailover.streamingIdle", "流式静默超时"),
|
||
);
|
||
checkRange(
|
||
raw.nonStreamingTimeout,
|
||
ranges.nonStreamingTimeout,
|
||
t("proxy.autoFailover.nonStreaming", "非流式超时"),
|
||
);
|
||
checkRange(
|
||
raw.circuitFailureThreshold,
|
||
ranges.circuitFailureThreshold,
|
||
t("proxy.autoFailover.failureThreshold", "失败阈值"),
|
||
);
|
||
checkRange(
|
||
raw.circuitSuccessThreshold,
|
||
ranges.circuitSuccessThreshold,
|
||
t("proxy.autoFailover.successThreshold", "恢复成功阈值"),
|
||
);
|
||
checkRange(
|
||
raw.circuitTimeoutSeconds,
|
||
ranges.circuitTimeoutSeconds,
|
||
t("proxy.autoFailover.timeout", "恢复等待时间"),
|
||
);
|
||
checkRange(
|
||
raw.circuitErrorRateThreshold,
|
||
ranges.circuitErrorRateThreshold,
|
||
t("proxy.autoFailover.errorRate", "错误率阈值"),
|
||
);
|
||
checkRange(
|
||
raw.circuitMinRequests,
|
||
ranges.circuitMinRequests,
|
||
t("proxy.autoFailover.minRequests", "最小请求数"),
|
||
);
|
||
|
||
if (errors.length > 0) {
|
||
toast.error(
|
||
t("proxy.autoFailover.validationFailed", {
|
||
fields: errors.join("; "),
|
||
defaultValue: `以下字段超出有效范围: ${errors.join("; ")}`,
|
||
}),
|
||
);
|
||
return;
|
||
}
|
||
|
||
try {
|
||
await updateConfig.mutateAsync({
|
||
appType,
|
||
enabled: config.enabled,
|
||
autoFailoverEnabled: formData.autoFailoverEnabled,
|
||
maxRetries: raw.maxRetries,
|
||
streamingFirstByteTimeout: raw.streamingFirstByteTimeout,
|
||
streamingIdleTimeout: raw.streamingIdleTimeout,
|
||
nonStreamingTimeout: raw.nonStreamingTimeout,
|
||
circuitFailureThreshold: raw.circuitFailureThreshold,
|
||
circuitSuccessThreshold: raw.circuitSuccessThreshold,
|
||
circuitTimeoutSeconds: raw.circuitTimeoutSeconds,
|
||
circuitErrorRateThreshold: raw.circuitErrorRateThreshold / 100,
|
||
circuitMinRequests: raw.circuitMinRequests,
|
||
});
|
||
toast.success(
|
||
t("proxy.autoFailover.configSaved", "自动故障转移配置已保存"),
|
||
{ closeButton: true },
|
||
);
|
||
} catch (e) {
|
||
toast.error(
|
||
t("proxy.autoFailover.configSaveFailed", "保存失败") + ": " + String(e),
|
||
);
|
||
}
|
||
};
|
||
|
||
const handleReset = () => {
|
||
if (config) {
|
||
setFormData({
|
||
autoFailoverEnabled: config.autoFailoverEnabled,
|
||
maxRetries: String(config.maxRetries),
|
||
streamingFirstByteTimeout: String(config.streamingFirstByteTimeout),
|
||
streamingIdleTimeout: String(config.streamingIdleTimeout),
|
||
nonStreamingTimeout: String(config.nonStreamingTimeout),
|
||
circuitFailureThreshold: String(config.circuitFailureThreshold),
|
||
circuitSuccessThreshold: String(config.circuitSuccessThreshold),
|
||
circuitTimeoutSeconds: String(config.circuitTimeoutSeconds),
|
||
circuitErrorRateThreshold: String(
|
||
Math.round(config.circuitErrorRateThreshold * 100),
|
||
),
|
||
circuitMinRequests: String(config.circuitMinRequests),
|
||
});
|
||
}
|
||
};
|
||
|
||
if (isLoading) {
|
||
return (
|
||
<div className="flex items-center justify-center p-4">
|
||
<Loader2 className="h-6 w-6 animate-spin text-muted-foreground" />
|
||
</div>
|
||
);
|
||
}
|
||
|
||
const isDisabled = disabled || updateConfig.isPending;
|
||
|
||
return (
|
||
<div className="border-0 rounded-none shadow-none bg-transparent">
|
||
<div className="space-y-4">
|
||
{error && (
|
||
<Alert variant="destructive">
|
||
<AlertDescription>{String(error)}</AlertDescription>
|
||
</Alert>
|
||
)}
|
||
|
||
<Alert className="border-blue-500/40 bg-blue-500/10">
|
||
<Info className="h-4 w-4" />
|
||
<AlertDescription className="text-sm">
|
||
{t(
|
||
"proxy.autoFailover.info",
|
||
"当故障转移队列中配置了多个供应商时,系统会在请求失败时按优先级顺序依次尝试。当某个供应商连续失败达到阈值时,熔断器会打开并在一段时间内跳过该供应商。",
|
||
)}
|
||
</AlertDescription>
|
||
</Alert>
|
||
|
||
{/* 重试与超时配置 */}
|
||
<div className="space-y-4 rounded-lg border border-white/10 bg-muted/30 p-4">
|
||
<h4 className="text-sm font-semibold">
|
||
{t("proxy.autoFailover.retrySettings", "重试与超时设置")}
|
||
</h4>
|
||
|
||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`maxRetries-${appType}`}>
|
||
{t("proxy.autoFailover.maxRetries", "最大重试次数")}
|
||
</Label>
|
||
<Input
|
||
id={`maxRetries-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="10"
|
||
value={formData.maxRetries}
|
||
onChange={(e) =>
|
||
setFormData({ ...formData, maxRetries: e.target.value })
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.maxRetriesHint",
|
||
"请求失败时的重试次数(0-10)",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`failureThreshold-${appType}`}>
|
||
{t("proxy.autoFailover.failureThreshold", "失败阈值")}
|
||
</Label>
|
||
<Input
|
||
id={`failureThreshold-${appType}`}
|
||
type="number"
|
||
min="1"
|
||
max="20"
|
||
value={formData.circuitFailureThreshold}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
circuitFailureThreshold: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.failureThresholdHint",
|
||
"连续失败多少次后打开熔断器(建议: 3-10)",
|
||
)}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 超时配置 */}
|
||
<div className="space-y-4 rounded-lg border border-white/10 bg-muted/30 p-4">
|
||
<h4 className="text-sm font-semibold">
|
||
{t("proxy.autoFailover.timeoutSettings", "超时配置")}
|
||
</h4>
|
||
|
||
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`streamingFirstByte-${appType}`}>
|
||
{t(
|
||
"proxy.autoFailover.streamingFirstByte",
|
||
"流式首字节超时(秒)",
|
||
)}
|
||
</Label>
|
||
<Input
|
||
id={`streamingFirstByte-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="180"
|
||
value={formData.streamingFirstByteTimeout}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
streamingFirstByteTimeout: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.streamingFirstByteHint",
|
||
"等待首个数据块的最大时间",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`streamingIdle-${appType}`}>
|
||
{t("proxy.autoFailover.streamingIdle", "流式静默超时(秒)")}
|
||
</Label>
|
||
<Input
|
||
id={`streamingIdle-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="600"
|
||
value={formData.streamingIdleTimeout}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
streamingIdleTimeout: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.streamingIdleHint",
|
||
"数据块之间的最大间隔",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`nonStreaming-${appType}`}>
|
||
{t("proxy.autoFailover.nonStreaming", "非流式超时(秒)")}
|
||
</Label>
|
||
<Input
|
||
id={`nonStreaming-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="1800"
|
||
value={formData.nonStreamingTimeout}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
nonStreamingTimeout: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.nonStreamingHint",
|
||
"非流式请求的总超时时间",
|
||
)}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 熔断器配置 */}
|
||
<div className="space-y-4 rounded-lg border border-white/10 bg-muted/30 p-4">
|
||
<h4 className="text-sm font-semibold">
|
||
{t("proxy.autoFailover.circuitBreakerSettings", "熔断器配置")}
|
||
</h4>
|
||
|
||
<div className="grid grid-cols-2 md:grid-cols-4 gap-4">
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`successThreshold-${appType}`}>
|
||
{t("proxy.autoFailover.successThreshold", "恢复成功阈值")}
|
||
</Label>
|
||
<Input
|
||
id={`successThreshold-${appType}`}
|
||
type="number"
|
||
min="1"
|
||
max="10"
|
||
value={formData.circuitSuccessThreshold}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
circuitSuccessThreshold: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.successThresholdHint",
|
||
"半开状态下成功多少次后关闭熔断器",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`timeoutSeconds-${appType}`}>
|
||
{t("proxy.autoFailover.timeout", "恢复等待时间(秒)")}
|
||
</Label>
|
||
<Input
|
||
id={`timeoutSeconds-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="300"
|
||
value={formData.circuitTimeoutSeconds}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
circuitTimeoutSeconds: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.timeoutHint",
|
||
"熔断器打开后,等待多久后尝试恢复(建议: 30-120)",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`errorRateThreshold-${appType}`}>
|
||
{t("proxy.autoFailover.errorRate", "错误率阈值 (%)")}
|
||
</Label>
|
||
<Input
|
||
id={`errorRateThreshold-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="100"
|
||
step="5"
|
||
value={formData.circuitErrorRateThreshold}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
circuitErrorRateThreshold: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.errorRateHint",
|
||
"错误率超过此值时打开熔断器",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`minRequests-${appType}`}>
|
||
{t("proxy.autoFailover.minRequests", "最小请求数")}
|
||
</Label>
|
||
<Input
|
||
id={`minRequests-${appType}`}
|
||
type="number"
|
||
min="5"
|
||
max="100"
|
||
value={formData.circuitMinRequests}
|
||
onChange={(e) =>
|
||
setFormData({
|
||
...formData,
|
||
circuitMinRequests: e.target.value,
|
||
})
|
||
}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.minRequestsHint",
|
||
"计算错误率前的最小请求数",
|
||
)}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 操作按钮 */}
|
||
<div className="flex justify-end gap-3 pt-2">
|
||
<Button variant="outline" onClick={handleReset} disabled={isDisabled}>
|
||
{t("common.reset", "重置")}
|
||
</Button>
|
||
<Button onClick={handleSave} disabled={isDisabled}>
|
||
{updateConfig.isPending ? (
|
||
<>
|
||
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
||
{t("common.saving", "保存中...")}
|
||
</>
|
||
) : (
|
||
<>
|
||
<Save className="mr-2 h-4 w-4" />
|
||
{t("common.save", "保存")}
|
||
</>
|
||
)}
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|