mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-24 12:44:18 +08:00
b1103c8a59
* feat(proxy): implement local HTTP proxy server with multi-provider failover Add a complete HTTP proxy server implementation built on Axum framework, enabling local API request forwarding with automatic provider failover and load balancing capabilities. Backend Implementation (Rust): - Add proxy server module with 7 core components: * server.rs: Axum HTTP server lifecycle management (start/stop/status) * router.rs: API routing configuration for Claude/OpenAI/Gemini endpoints * handlers.rs: Request/response handling and transformation * forwarder.rs: Upstream forwarding logic with retry mechanism (652 lines) * error.rs: Comprehensive error handling and HTTP status mapping * types.rs: Shared types (ProxyConfig, ProxyStatus, ProxyServerInfo) * health.rs: Provider health check infrastructure Service Layer: - Add ProxyService (services/proxy.rs, 157 lines): * Manage proxy server lifecycle * Handle configuration updates * Track runtime status and metrics Database Layer: - Add proxy configuration DAO (dao/proxy.rs, 242 lines): * Persist proxy settings (listen address, port, timeout) * Store provider priority and availability flags - Update schema with proxy_config table (schema.rs): * Support runtime configuration persistence Tauri Commands: - Add 6 command endpoints (commands/proxy.rs): * start_proxy_server: Launch proxy server * stop_proxy_server: Gracefully shutdown server * get_proxy_status: Query runtime status * get_proxy_config: Retrieve current configuration * update_proxy_config: Modify settings without restart * is_proxy_running: Check server state Frontend Implementation (React + TypeScript): - Add ProxyPanel component (222 lines): * Real-time server status display * Start/stop controls * Provider availability monitoring - Add ProxySettingsDialog component (420 lines): * Configuration editor (address, port, timeout) * Provider priority management * Settings validation - Add React hooks: * useProxyConfig: Manage proxy configuration state * useProxyStatus: Poll and display server status - Add TypeScript types (types/proxy.ts): * Define ProxyConfig, ProxyStatus interfaces Provider Integration: - Extend Provider model with availability field (providers.rs): * Track provider health for failover logic - Update ProviderCard UI to display proxy status - Integrate proxy controls in Settings page Dependencies: - Add Axum 0.7 (async web framework) - Add Tower 0.4 (middleware and service abstractions) - Add Tower-HTTP (CORS layer) - Add Tokio sync primitives (oneshot, RwLock) Technical Details: - Graceful shutdown via oneshot channel - Shared state with Arc<RwLock<T>> for thread-safe config updates - CORS enabled for cross-origin frontend access - Request/response streaming support - Automatic retry with exponential backoff (forwarder) - API key extraction from multiple config formats (Claude/Codex/Gemini) File Statistics: - 41 files changed - 3491 insertions(+), 41 deletions(-) - Core modules: 1393 lines (server + forwarder + handlers) - Frontend UI: 642 lines (ProxyPanel + ProxySettingsDialog) - Database/DAO: 326 lines This implementation provides the foundation for advanced features like: - Multi-provider load balancing - Automatic failover on provider errors - Request logging and analytics - Usage tracking and cost monitoring * fix(proxy): resolve UI/UX issues and database constraint error Simplify proxy control interface and fix database persistence issues: Backend Fixes: - Fix NOT NULL constraint error in proxy_config.created_at field * Use COALESCE to preserve created_at on updates * Ensure proper INSERT OR REPLACE behavior - Remove redundant enabled field validation on startup * Auto-enable when user clicks start button * Persist enabled state after successful start - Preserve enabled state during config updates * Prevent accidental service shutdown on config save Frontend Improvements: - Remove duplicate proxy enable switch from settings dialog * Keep only runtime toggle in ProxyPanel * Simplify user experience with single control point - Hide proxy target button when proxy service is stopped * Add isProxyRunning prop to ProviderCard * Conditionally render proxy controls based on service status - Update form schema to omit enabled field * Managed automatically by backend Files: 5 changed, 81 insertions(+), 94 deletions(-) * fix(proxy): improve URL building and Gemini request handling - Refactor URL construction with version path deduplication (/v1, /v1beta) - Preserve query parameters for Gemini API requests - Support GOOGLE_GEMINI_API_KEY field name (with fallback) - Change default proxy port from 5000 to 15721 - Fix test: use Option type for is_proxy_target field * refactor(proxy): remove unused request handlers and routes - Remove unused GET/DELETE request forwarding methods - Remove count_tokens, get/delete response handlers - Simplify router by removing unused endpoints - Keep only essential routes: /v1/messages, /v1/responses, /v1beta/* * Merge branch 'main' into feat/proxy-server * fix(proxy): resolve clippy warnings for dead code and uninlined format args - Add #[allow(dead_code)] to unused ProviderUnhealthy variant - Inline format string arguments in handlers.rs and codex.rs log macros - Refactor error response handling to properly pass through upstream errors - Add URL deduplication logic for /v1/v1 paths in CodexAdapter * feat(proxy): implement provider adapter pattern with OpenRouter support This major refactoring introduces a modular provider adapter architecture to support format transformation between different AI API formats. New features: - Add ProviderAdapter trait for unified provider abstraction - Implement Claude, Codex, and Gemini adapters with specific logic - Add Anthropic ↔ OpenAI format transformation for OpenRouter compatibility - Support model mapping from provider configuration (ANTHROPIC_MODEL, etc.) - Add OpenRouter preset to Claude provider presets Refactoring: - Extract authentication logic into auth.rs with AuthInfo and AuthStrategy - Move URL building and request transformation to individual adapters - Simplify ProviderRouter to only use proxy target providers - Refactor RequestForwarder to use adapter-based request/response handling - Use whitelist mode for header forwarding (only pass necessary headers) Architecture: - providers/adapter.rs: ProviderAdapter trait definition - providers/auth.rs: AuthInfo, AuthStrategy types - providers/claude.rs: Claude adapter with OpenRouter detection - providers/codex.rs: Codex (OpenAI) adapter - providers/gemini.rs: Gemini (Google) adapter - providers/models/: Anthropic and OpenAI API data models - providers/transform.rs: Bidirectional format transformation * feat(proxy): add streaming SSE transform and thinking parameter support New features: - Add OpenAI → Anthropic SSE streaming response transformation - Support thinking parameter detection for reasoning model selection - Add ANTHROPIC_REASONING_MODEL config option for extended thinking Changes: - streaming.rs: Implement SSE event parsing and Anthropic format conversion - transform.rs: Add thinking detection logic and reasoning model mapping - handlers.rs: Integrate streaming transform for OpenRouter compatibility - Cargo.toml: Add async-stream and bytes dependencies * feat(db): add usage tracking schema and types Add database tables for proxy request logs and model pricing. Extend Provider and error types to support usage statistics. * feat(proxy): implement usage tracking subsystem Add request logger with automatic cost calculation. Implement token parser for Claude/OpenAI/Gemini responses. Add cost calculator based on model pricing configuration. * feat(proxy): integrate usage logging into request handlers Add usage logging to forwarder and streaming handlers. Track token usage and costs for each proxy request. * feat(commands): add usage statistics Tauri commands Register usage commands for summary, trends, logs, and pricing. Expose usage stats service through Tauri command layer. * feat(api): add frontend usage API and query hooks Add TypeScript types for usage statistics. Implement usage API with Tauri invoke calls. Add TanStack Query hooks for usage data fetching. * feat(ui): add usage dashboard components Add UsageDashboard with summary cards, trend chart, and data tables. Implement model pricing configuration panel. Add request log viewer with filtering and detail panel. * fix(ui): integrate usage dashboard and fix type errors Add usage dashboard tab to settings page. Fix UsageScriptModal TypeScript type annotations. * deps: add recharts for charts and rust_decimal/uuid for usage tracking - recharts: Chart visualization for usage trends - rust_decimal: Precise cost calculations - uuid: Request ID generation * feat(proxy): add ProviderType enum for fine-grained provider detection Introduce ProviderType enum to distinguish between different provider implementations (Claude, ClaudeAuth, Codex, Gemini, GeminiCli, OpenRouter). This enables proper authentication handling and request transformation based on the actual provider type rather than just AppType. - Add ProviderType enum with detection logic from config - Enhance Claude adapter with OpenRouter detection - Enhance Gemini adapter with CLI mode detection - Add helper methods for provider type inference * feat(database): extend schema with streaming and timing fields Add new columns to proxy_request_logs table for enhanced usage tracking: - first_token_ms and duration_ms for performance metrics - provider_type and is_streaming for request classification - cost_multiplier for flexible pricing Update model pricing with accurate rates for Claude/GPT/Gemini models. Add ensure_model_pricing_seeded() call on database initialization. Add test for model pricing auto-seeding verification. * feat(proxy/usage): enhance token parser and logger for multi-format support Parser enhancements: - Add OpenAI Chat Completions format parsing (prompt_tokens/completion_tokens) - Add model field to TokenUsage for actual model name extraction - Add from_codex_response_adjusted() for proper cache token handling - Add debug logging for better stream event tracing Logger enhancements: - Add first_token_ms, provider_type, is_streaming, cost_multiplier fields - Extend RequestLog struct with full metadata tracking - Update log_with_calculation() signature for new fields Calculator: Update tests with model field in TokenUsage. * feat(proxy): enhance proxy server with session tracking and OpenAI route Error handling: - Add StreamIdleTimeout and AuthError variants for better error classification Module exports: - Export ResponseType, StreamHandler, NonStreamHandler from response_handler - Export ProxySession, ClientFormat from session module Server routing: - Add /v1/chat/completions route for OpenAI Chat Completions API Handlers: - Add log_usage_with_session() for enhanced usage tracking with session context - Add first_token_ms timing measurement for streaming responses - Use SseUsageCollector with start_time for accurate latency calculation - Track is_streaming flag in usage logs * feat(services): add pagination and enhanced filtering for request logs Usage stats service: - Change get_request_logs() from limit/offset to page/page_size pagination - Return PaginatedLogs with total count, page, and page_size - Add appType and providerName filters with LIKE search - Add is_streaming, first_token_ms, duration_ms to RequestLogDetail - Join with providers table for provider name lookup Commands: - Update get_request_logs command signature for pagination params Module exports: - Export PaginatedLogs struct * feat(frontend): update usage types and API for pagination support Types (usage.ts): - Add isStreaming, firstTokenMs, durationMs to RequestLog - Add PaginatedLogs interface with data, total, page, pageSize - Change LogFilters: providerId -> appType + providerName API (usage.ts): - Change getRequestLogs params from limit/offset to page/pageSize - Return PaginatedLogs instead of RequestLog[] - Pass filters object directly to backend Query (usage.ts): - Update usageKeys.logs key generation for pagination - Update useRequestLogs hook signature * refactor(ui): enhance RequestLogTable with filtering and pagination UI improvements: - Add filter bar with app type, provider name, model, status selectors - Add date range picker (startDate/endDate) - Add search/reset/refresh buttons Pagination: - Implement proper page-based pagination with page info display - Show total count and current page range - Add prev/next navigation buttons Features: - Default to last 24 hours filter - Streamlined table columns layout - Query invalidation on refresh * style(config): format mcpPresets code style Apply consistent formatting to createNpxCommand function and sequential-thinking server configuration. * fix(ui): update SettingsPage tab styles for improved appearance (#342) * feat(model-test): add provider model availability testing Implement standalone model testing feature to verify provider API connectivity: - Add ModelTestService for Claude/Codex/Gemini endpoint testing - Create model_test_logs table for test result persistence - Add test button to ProviderCard with loading state - Include ModelTestConfigPanel for customizing test parameters * fix(proxy): resolve token parsing for OpenRouter streaming responses Problem: - OpenRouter and similar third-party services return streaming responses where input_tokens appear in message_delta instead of message_start - The previous implementation only extracted input_tokens from message_start, causing input_tokens to be recorded as 0 for these providers Changes: - streaming.rs: Add prompt_tokens field to Usage struct and include input_tokens in the transformed message_delta event when converting OpenAI format to Anthropic format - parser.rs: Update from_claude_stream_events() to handle input_tokens from both message_start (native Claude API) and message_delta (OpenRouter) - Use if-let pattern instead of direct unwrap for safer parsing - Only update input_tokens from message_delta if not already set - logger.rs: Adjust test parameters to match updated function signature Tests: - Add test_openrouter_stream_parsing() for OpenRouter format validation - Add test_native_claude_stream_parsing() for native Claude API validation * fix(pricing): standardize model ID format for pricing lookup Normalize model IDs by removing vendor prefixes and converting dots to hyphens to ensure consistent pricing lookups across different API response formats. Changes: - Update seed data to use hyphen format (e.g., gpt-5-1, gemini-2-5-pro) - Add normalize_model_id() function to strip vendor prefixes (anthropic/, openai/) - Convert dots to hyphens in model IDs (claude-haiku-4.5 → claude-haiku-4-5) - Try both original and normalized IDs for exact matching - Use normalized ID for suffix-based fallback matching - Add comprehensive test cases for prefix and dot handling - Add warning log when no pricing found This ensures pricing lookups work correctly for: - Models with vendor prefixes: anthropic/claude-haiku-4.5 - Models with dots in version: claude-sonnet-4.5 - Models with date suffixes: claude-haiku-4-5-20240229 * style(rust): apply clippy formatting suggestions Apply automatic clippy fixes for uninlined_format_args warnings across Rust codebase. Replace format string placeholders with inline variable syntax for improved readability. Changes: - Convert format!("{}", var) to format!("{var}") - Apply to model_test.rs, parser.rs, and usage_stats.rs - Fix line length issues by breaking long function calls - Improve code formatting consistency All changes are automatic formatting with no functional impact. * fix(ui): restore card borders in usage statistics panels Restore proper card styling for ModelTestConfigPanel and PricingConfigPanel by adding back border and rounded-lg classes. The transparent background styling was causing visual inconsistency. Changes: - Replace border-none bg-transparent shadow-none with border rounded-lg - Apply to both loading and error states for consistency - Format TypeScript code for better readability - Break long function signatures across multiple lines This ensures the usage statistics panels have consistent visual appearance with proper borders and rounded corners. * feat(pricing): add GPT-5 Codex model pricing presets Add pricing configuration for GPT-5 Codex variants to support cost tracking for Codex-specific models. Changes: - Add gpt-5-codex model with standard GPT-5 pricing - Add gpt-5-1-codex model with standard GPT-5.1 pricing - Input: $1.25/M tokens, Output: $10/M tokens - Cache read: $0.125/M tokens, Cache creation: $0 This ensures accurate cost calculation for Codex API requests using GPT-5 Codex models.
511 lines
16 KiB
Rust
511 lines
16 KiB
Rust
//! 模型测试服务
|
||
//!
|
||
//! 提供独立的模型可用性测试功能,复用现有 Provider 适配器逻辑,
|
||
//! 但不影响正常代理数据流程。测试结果记录到独立的日志表。
|
||
|
||
use crate::app_config::AppType;
|
||
use crate::database::Database;
|
||
use crate::error::AppError;
|
||
use crate::provider::Provider;
|
||
use crate::proxy::providers::{get_adapter, AuthInfo, ProviderAdapter};
|
||
use reqwest::Client;
|
||
use serde::{Deserialize, Serialize};
|
||
use serde_json::{json, Value};
|
||
use std::time::{Duration, Instant};
|
||
|
||
/// 模型测试配置
|
||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||
#[serde(rename_all = "camelCase")]
|
||
pub struct ModelTestConfig {
|
||
/// 默认测试模型(Claude)
|
||
pub claude_model: String,
|
||
/// 默认测试模型(Codex/OpenAI)
|
||
pub codex_model: String,
|
||
/// 默认测试模型(Gemini)
|
||
pub gemini_model: String,
|
||
/// 测试提示词
|
||
pub test_prompt: String,
|
||
/// 超时时间(秒)
|
||
pub timeout_secs: u64,
|
||
}
|
||
|
||
impl Default for ModelTestConfig {
|
||
fn default() -> Self {
|
||
Self {
|
||
claude_model: "claude-haiku-4-5-20251001".to_string(),
|
||
codex_model: "gpt-5.1-low".to_string(),
|
||
gemini_model: "gemini-3-pro-low".to_string(),
|
||
test_prompt: "ping".to_string(),
|
||
timeout_secs: 15,
|
||
}
|
||
}
|
||
}
|
||
|
||
/// 模型测试结果
|
||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||
#[serde(rename_all = "camelCase")]
|
||
pub struct ModelTestResult {
|
||
pub success: bool,
|
||
pub message: String,
|
||
pub response_time_ms: Option<u64>,
|
||
pub http_status: Option<u16>,
|
||
pub model_used: String,
|
||
pub tested_at: i64,
|
||
}
|
||
|
||
/// 模型测试日志记录
|
||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||
#[serde(rename_all = "camelCase")]
|
||
pub struct ModelTestLog {
|
||
pub id: i64,
|
||
pub provider_id: String,
|
||
pub provider_name: String,
|
||
pub app_type: String,
|
||
pub model: String,
|
||
pub prompt: String,
|
||
pub success: bool,
|
||
pub message: String,
|
||
pub response_time_ms: Option<i64>,
|
||
pub http_status: Option<i64>,
|
||
pub tested_at: i64,
|
||
}
|
||
|
||
/// 模型测试服务
|
||
pub struct ModelTestService;
|
||
|
||
impl ModelTestService {
|
||
/// 测试单个供应商的模型可用性
|
||
pub async fn test_provider(
|
||
app_type: &AppType,
|
||
provider: &Provider,
|
||
config: &ModelTestConfig,
|
||
) -> Result<ModelTestResult, AppError> {
|
||
let start = Instant::now();
|
||
let adapter = get_adapter(app_type);
|
||
|
||
// 构建 HTTP 客户端(独立于代理服务)
|
||
let client = Client::builder()
|
||
.timeout(Duration::from_secs(config.timeout_secs))
|
||
.build()
|
||
.map_err(|e| AppError::Message(format!("创建 HTTP 客户端失败: {e}")))?;
|
||
|
||
// 根据 AppType 选择测试模型
|
||
let model = match app_type {
|
||
AppType::Claude => &config.claude_model,
|
||
AppType::Codex => &config.codex_model,
|
||
AppType::Gemini => &config.gemini_model,
|
||
};
|
||
|
||
let result = match app_type {
|
||
AppType::Claude => {
|
||
Self::test_claude(
|
||
&client,
|
||
provider,
|
||
adapter.as_ref(),
|
||
model,
|
||
&config.test_prompt,
|
||
)
|
||
.await
|
||
}
|
||
AppType::Codex => {
|
||
Self::test_codex(
|
||
&client,
|
||
provider,
|
||
adapter.as_ref(),
|
||
model,
|
||
&config.test_prompt,
|
||
)
|
||
.await
|
||
}
|
||
AppType::Gemini => {
|
||
Self::test_gemini(
|
||
&client,
|
||
provider,
|
||
adapter.as_ref(),
|
||
model,
|
||
&config.test_prompt,
|
||
)
|
||
.await
|
||
}
|
||
};
|
||
|
||
let response_time = start.elapsed().as_millis() as u64;
|
||
let tested_at = chrono::Utc::now().timestamp();
|
||
|
||
match result {
|
||
Ok((status, msg)) => Ok(ModelTestResult {
|
||
success: true,
|
||
message: msg,
|
||
response_time_ms: Some(response_time),
|
||
http_status: Some(status),
|
||
model_used: model.clone(),
|
||
tested_at,
|
||
}),
|
||
Err(e) => Ok(ModelTestResult {
|
||
success: false,
|
||
message: e.to_string(),
|
||
response_time_ms: Some(response_time),
|
||
http_status: None,
|
||
model_used: model.clone(),
|
||
tested_at,
|
||
}),
|
||
}
|
||
}
|
||
|
||
/// 测试 Claude (Anthropic Messages API)
|
||
async fn test_claude(
|
||
client: &Client,
|
||
provider: &Provider,
|
||
adapter: &dyn ProviderAdapter,
|
||
model: &str,
|
||
prompt: &str,
|
||
) -> Result<(u16, String), AppError> {
|
||
let base_url = adapter
|
||
.extract_base_url(provider)
|
||
.map_err(|e| AppError::Message(format!("提取 base_url 失败: {e}")))?;
|
||
|
||
let auth = adapter
|
||
.extract_auth(provider)
|
||
.ok_or_else(|| AppError::Message("未找到 API Key".to_string()))?;
|
||
|
||
// 智能拼接 URL,避免重复 /v1
|
||
let base = base_url.trim_end_matches('/');
|
||
let url = if base.ends_with("/v1") {
|
||
format!("{base}/messages")
|
||
} else {
|
||
format!("{base}/v1/messages")
|
||
};
|
||
|
||
let body = json!({
|
||
"model": model,
|
||
"max_tokens": 1,
|
||
"messages": [{
|
||
"role": "user",
|
||
"content": prompt
|
||
}]
|
||
});
|
||
|
||
let mut request = client.post(&url).json(&body);
|
||
request = Self::add_claude_auth(request, &auth);
|
||
|
||
let response = request.send().await.map_err(|e| {
|
||
if e.is_timeout() {
|
||
AppError::Message("请求超时".to_string())
|
||
} else if e.is_connect() {
|
||
AppError::Message(format!("连接失败: {e}"))
|
||
} else {
|
||
AppError::Message(e.to_string())
|
||
}
|
||
})?;
|
||
|
||
let status = response.status().as_u16();
|
||
|
||
if response.status().is_success() {
|
||
// 先获取文本,再尝试解析 JSON(兼容流式响应)
|
||
let text = response.text().await.unwrap_or_default();
|
||
|
||
// 尝试解析 JSON
|
||
if let Ok(data) = serde_json::from_str::<Value>(&text) {
|
||
if data.get("type").is_some()
|
||
|| data.get("content").is_some()
|
||
|| data.get("id").is_some()
|
||
{
|
||
return Ok((status, "模型测试成功".to_string()));
|
||
}
|
||
}
|
||
|
||
// 即使无法解析 JSON,只要状态码是 200 就认为成功
|
||
Ok((status, "模型测试成功".to_string()))
|
||
} else {
|
||
let error_text = response.text().await.unwrap_or_default();
|
||
Err(AppError::Message(format!("HTTP {status}: {error_text}")))
|
||
}
|
||
}
|
||
|
||
/// 测试 Codex (OpenAI Chat Completions API)
|
||
async fn test_codex(
|
||
client: &Client,
|
||
provider: &Provider,
|
||
adapter: &dyn ProviderAdapter,
|
||
model: &str,
|
||
prompt: &str,
|
||
) -> Result<(u16, String), AppError> {
|
||
let base_url = adapter
|
||
.extract_base_url(provider)
|
||
.map_err(|e| AppError::Message(format!("提取 base_url 失败: {e}")))?;
|
||
|
||
let auth = adapter
|
||
.extract_auth(provider)
|
||
.ok_or_else(|| AppError::Message("未找到 API Key".to_string()))?;
|
||
|
||
// 智能拼接 URL,避免重复 /v1
|
||
let base = base_url.trim_end_matches('/');
|
||
let url = if base.ends_with("/v1") {
|
||
format!("{base}/chat/completions")
|
||
} else {
|
||
format!("{base}/v1/chat/completions")
|
||
};
|
||
|
||
let body = json!({
|
||
"model": model,
|
||
"messages": [{
|
||
"role": "user",
|
||
"content": prompt
|
||
}],
|
||
"max_tokens": 1,
|
||
"stream": false
|
||
});
|
||
|
||
let request = client
|
||
.post(&url)
|
||
.header("Authorization", format!("Bearer {}", auth.api_key))
|
||
.header("Content-Type", "application/json")
|
||
.json(&body);
|
||
|
||
let response = request.send().await.map_err(|e| {
|
||
if e.is_timeout() {
|
||
AppError::Message("请求超时".to_string())
|
||
} else if e.is_connect() {
|
||
AppError::Message(format!("连接失败: {e}"))
|
||
} else {
|
||
AppError::Message(e.to_string())
|
||
}
|
||
})?;
|
||
|
||
let status = response.status().as_u16();
|
||
|
||
if response.status().is_success() {
|
||
// 先获取文本,再尝试解析 JSON
|
||
let text = response.text().await.unwrap_or_default();
|
||
|
||
if let Ok(data) = serde_json::from_str::<Value>(&text) {
|
||
if data.get("choices").is_some() || data.get("id").is_some() {
|
||
return Ok((status, "模型测试成功".to_string()));
|
||
}
|
||
}
|
||
|
||
// 即使无法解析 JSON,只要状态码是 200 就认为成功
|
||
Ok((status, "模型测试成功".to_string()))
|
||
} else {
|
||
let error_text = response.text().await.unwrap_or_default();
|
||
Err(AppError::Message(format!("HTTP {status}: {error_text}")))
|
||
}
|
||
}
|
||
|
||
/// 测试 Gemini (Google Generative AI API)
|
||
async fn test_gemini(
|
||
client: &Client,
|
||
provider: &Provider,
|
||
adapter: &dyn ProviderAdapter,
|
||
model: &str,
|
||
prompt: &str,
|
||
) -> Result<(u16, String), AppError> {
|
||
let base_url = adapter
|
||
.extract_base_url(provider)
|
||
.map_err(|e| AppError::Message(format!("提取 base_url 失败: {e}")))?;
|
||
|
||
let auth = adapter
|
||
.extract_auth(provider)
|
||
.ok_or_else(|| AppError::Message("未找到 API Key".to_string()))?;
|
||
|
||
let url = format!(
|
||
"{}/v1beta/models/{}:generateContent?key={}",
|
||
base_url.trim_end_matches('/'),
|
||
model,
|
||
auth.api_key
|
||
);
|
||
|
||
let body = json!({
|
||
"contents": [{
|
||
"parts": [{
|
||
"text": prompt
|
||
}]
|
||
}],
|
||
"generationConfig": {
|
||
"maxOutputTokens": 1
|
||
}
|
||
});
|
||
|
||
let request = client
|
||
.post(&url)
|
||
.header("Content-Type", "application/json")
|
||
.json(&body);
|
||
|
||
let response = request.send().await.map_err(|e| {
|
||
if e.is_timeout() {
|
||
AppError::Message("请求超时".to_string())
|
||
} else if e.is_connect() {
|
||
AppError::Message(format!("连接失败: {e}"))
|
||
} else {
|
||
AppError::Message(e.to_string())
|
||
}
|
||
})?;
|
||
|
||
let status = response.status().as_u16();
|
||
|
||
if response.status().is_success() {
|
||
let data: Value = response
|
||
.json()
|
||
.await
|
||
.map_err(|e| AppError::Message(format!("解析响应失败: {e}")))?;
|
||
|
||
if data.get("candidates").is_some() {
|
||
Ok((status, "模型测试成功".to_string()))
|
||
} else {
|
||
Err(AppError::Message("响应格式异常".to_string()))
|
||
}
|
||
} else {
|
||
let error_text = response.text().await.unwrap_or_default();
|
||
Err(AppError::Message(format!("HTTP {status}: {error_text}")))
|
||
}
|
||
}
|
||
|
||
/// 添加 Claude 认证头
|
||
fn add_claude_auth(
|
||
request: reqwest::RequestBuilder,
|
||
auth: &AuthInfo,
|
||
) -> reqwest::RequestBuilder {
|
||
request
|
||
.header("x-api-key", &auth.api_key)
|
||
.header("anthropic-version", "2023-06-01")
|
||
.header("Content-Type", "application/json")
|
||
}
|
||
}
|
||
|
||
// ===== 数据库操作 =====
|
||
|
||
impl Database {
|
||
/// 保存模型测试日志
|
||
pub fn save_model_test_log(
|
||
&self,
|
||
provider_id: &str,
|
||
provider_name: &str,
|
||
app_type: &str,
|
||
model: &str,
|
||
prompt: &str,
|
||
result: &ModelTestResult,
|
||
) -> Result<i64, AppError> {
|
||
let conn = self
|
||
.conn
|
||
.lock()
|
||
.map_err(|e| AppError::Database(format!("获取数据库连接失败: {e}")))?;
|
||
|
||
conn.execute(
|
||
"INSERT INTO model_test_logs
|
||
(provider_id, provider_name, app_type, model, prompt, success, message, response_time_ms, http_status, tested_at)
|
||
VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10)",
|
||
rusqlite::params![
|
||
provider_id,
|
||
provider_name,
|
||
app_type,
|
||
model,
|
||
prompt,
|
||
result.success,
|
||
result.message,
|
||
result.response_time_ms.map(|t| t as i64),
|
||
result.http_status.map(|s| s as i64),
|
||
result.tested_at,
|
||
],
|
||
)
|
||
.map_err(|e| AppError::Database(e.to_string()))?;
|
||
|
||
Ok(conn.last_insert_rowid())
|
||
}
|
||
|
||
/// 获取模型测试日志
|
||
pub fn get_model_test_logs(
|
||
&self,
|
||
app_type: Option<&str>,
|
||
provider_id: Option<&str>,
|
||
limit: u32,
|
||
) -> Result<Vec<ModelTestLog>, AppError> {
|
||
let conn = self
|
||
.conn
|
||
.lock()
|
||
.map_err(|e| AppError::Database(format!("获取数据库连接失败: {e}")))?;
|
||
|
||
let mut sql = String::from(
|
||
"SELECT id, provider_id, provider_name, app_type, model, prompt, success, message, response_time_ms, http_status, tested_at
|
||
FROM model_test_logs WHERE 1=1"
|
||
);
|
||
|
||
let mut params: Vec<Box<dyn rusqlite::ToSql>> = Vec::new();
|
||
|
||
if let Some(at) = app_type {
|
||
sql.push_str(" AND app_type = ?");
|
||
params.push(Box::new(at.to_string()));
|
||
}
|
||
|
||
if let Some(pid) = provider_id {
|
||
sql.push_str(" AND provider_id = ?");
|
||
params.push(Box::new(pid.to_string()));
|
||
}
|
||
|
||
sql.push_str(" ORDER BY tested_at DESC LIMIT ?");
|
||
params.push(Box::new(limit as i64));
|
||
|
||
let params_refs: Vec<&dyn rusqlite::ToSql> = params.iter().map(|p| p.as_ref()).collect();
|
||
|
||
let mut stmt = conn
|
||
.prepare(&sql)
|
||
.map_err(|e| AppError::Database(e.to_string()))?;
|
||
|
||
let logs = stmt
|
||
.query_map(params_refs.as_slice(), |row| {
|
||
Ok(ModelTestLog {
|
||
id: row.get(0)?,
|
||
provider_id: row.get(1)?,
|
||
provider_name: row.get(2)?,
|
||
app_type: row.get(3)?,
|
||
model: row.get(4)?,
|
||
prompt: row.get(5)?,
|
||
success: row.get(6)?,
|
||
message: row.get(7)?,
|
||
response_time_ms: row.get(8)?,
|
||
http_status: row.get(9)?,
|
||
tested_at: row.get(10)?,
|
||
})
|
||
})
|
||
.map_err(|e| AppError::Database(e.to_string()))?
|
||
.collect::<Result<Vec<_>, _>>()
|
||
.map_err(|e| AppError::Database(e.to_string()))?;
|
||
|
||
Ok(logs)
|
||
}
|
||
|
||
/// 获取模型测试配置
|
||
pub fn get_model_test_config(&self) -> Result<ModelTestConfig, AppError> {
|
||
match self.get_setting("model_test_config")? {
|
||
Some(json) => serde_json::from_str(&json)
|
||
.map_err(|e| AppError::Message(format!("解析模型测试配置失败: {e}"))),
|
||
None => Ok(ModelTestConfig::default()),
|
||
}
|
||
}
|
||
|
||
/// 保存模型测试配置
|
||
pub fn save_model_test_config(&self, config: &ModelTestConfig) -> Result<(), AppError> {
|
||
let json = serde_json::to_string(config)
|
||
.map_err(|e| AppError::Message(format!("序列化模型测试配置失败: {e}")))?;
|
||
self.set_setting("model_test_config", &json)
|
||
}
|
||
|
||
/// 清理旧的测试日志(保留最近 N 条)
|
||
pub fn cleanup_model_test_logs(&self, keep_count: u32) -> Result<u64, AppError> {
|
||
let conn = self
|
||
.conn
|
||
.lock()
|
||
.map_err(|e| AppError::Database(format!("获取数据库连接失败: {e}")))?;
|
||
|
||
let deleted = conn
|
||
.execute(
|
||
"DELETE FROM model_test_logs WHERE id NOT IN (
|
||
SELECT id FROM model_test_logs ORDER BY tested_at DESC LIMIT ?
|
||
)",
|
||
rusqlite::params![keep_count as i64],
|
||
)
|
||
.map_err(|e| AppError::Database(e.to_string()))?;
|
||
|
||
Ok(deleted as u64)
|
||
}
|
||
}
|