refactor: 拆分 gateway 单体为独立 crate,新增 systemd 部署方案

将 gateway 内部的 model-fetch、provider-transport、scheduler-core、
usage-runtime、video-tasks-core 模块提取为独立 crate;重构 gateway
内部模块结构(state/router/cache/data/query 等);移除大量遗留模块
文件;新增 systemd 二进制部署骨架及相关文档;更新前端 usage 相关
API 和组件。
This commit is contained in:
fawney19
2026-04-05 20:23:16 +08:00
parent cbc811f6ce
commit 763ff03a7b
777 changed files with 42659 additions and 21469 deletions

View File

@@ -28,12 +28,12 @@ pub(super) fn models_detail_id(request_path: &str) -> Option<String> {
}
fn auth_snapshot_allows_provider_for_models(
auth_snapshot: Option<&crate::gateway::gateway_data::StoredGatewayAuthApiKeySnapshot>,
auth_snapshot: Option<&crate::data::auth::GatewayAuthApiKeySnapshot>,
provider_id: &str,
provider_name: &str,
) -> bool {
let Some(allowed) = auth_snapshot.and_then(
crate::gateway::gateway_data::StoredGatewayAuthApiKeySnapshot::effective_allowed_providers,
crate::data::auth::GatewayAuthApiKeySnapshot::effective_allowed_providers,
) else {
return true;
};
@@ -45,11 +45,11 @@ fn auth_snapshot_allows_provider_for_models(
}
fn auth_snapshot_allows_model_for_models(
auth_snapshot: Option<&crate::gateway::gateway_data::StoredGatewayAuthApiKeySnapshot>,
auth_snapshot: Option<&crate::data::auth::GatewayAuthApiKeySnapshot>,
global_model_name: &str,
) -> bool {
let Some(allowed) = auth_snapshot.and_then(
crate::gateway::gateway_data::StoredGatewayAuthApiKeySnapshot::effective_allowed_models,
crate::data::auth::GatewayAuthApiKeySnapshot::effective_allowed_models,
) else {
return true;
};
@@ -130,7 +130,7 @@ fn row_exposes_global_model_for_models(
pub(super) fn filter_rows_for_models(
rows: Vec<StoredMinimalCandidateSelectionRow>,
auth_snapshot: Option<&crate::gateway::gateway_data::StoredGatewayAuthApiKeySnapshot>,
auth_snapshot: Option<&crate::data::auth::GatewayAuthApiKeySnapshot>,
api_format: &str,
) -> Vec<StoredMinimalCandidateSelectionRow> {
let mut filtered = rows