mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 17:30:23 +08:00
refactor: 移除独立 hub/proxy/executor/gateway crate,统一为 gateway tunnel 架构
- 删除 aether-hub、aether-proxy 独立项目及其 Dockerfile/配置 - 删除 crates/aether-executor 和 crates/aether-gateway 全部模块 - 新增 apps/ 目录作为应用入口 - 将 hub 概念重构为 gateway tunnel transport - 将 executor 重构为 execution runtime - 新增 tunnel.rs 合约定义和 testkit tunnel/execution_runtime 模块 - 更新 Python 服务层和测试适配新架构命名
This commit is contained in:
271
apps/aether-gateway/src/video_tasks/seed/gemini.rs
Normal file
271
apps/aether-gateway/src/video_tasks/seed/gemini.rs
Normal file
@@ -0,0 +1,271 @@
|
||||
use super::*;
|
||||
|
||||
impl GeminiVideoTaskSeed {
|
||||
pub(crate) fn apply_provider_body(&mut self, provider_body: &Map<String, Value>) {
|
||||
let done = provider_body
|
||||
.get("done")
|
||||
.and_then(Value::as_bool)
|
||||
.unwrap_or(false);
|
||||
if done {
|
||||
let error = provider_body.get("error").and_then(Value::as_object);
|
||||
if let Some(error) = error {
|
||||
self.status = LocalVideoTaskStatus::Failed;
|
||||
self.progress_percent = 100;
|
||||
self.error_code = error
|
||||
.get("code")
|
||||
.and_then(Value::as_str)
|
||||
.map(str::to_string);
|
||||
self.error_message = error
|
||||
.get("message")
|
||||
.and_then(Value::as_str)
|
||||
.map(str::to_string);
|
||||
} else {
|
||||
self.status = LocalVideoTaskStatus::Completed;
|
||||
self.progress_percent = 100;
|
||||
self.error_code = None;
|
||||
self.error_message = None;
|
||||
}
|
||||
self.metadata = json!({});
|
||||
return;
|
||||
}
|
||||
|
||||
self.status = LocalVideoTaskStatus::Processing;
|
||||
self.progress_percent = 50;
|
||||
self.error_code = None;
|
||||
self.error_message = None;
|
||||
self.metadata = provider_body
|
||||
.get("metadata")
|
||||
.cloned()
|
||||
.unwrap_or_else(|| json!({}));
|
||||
}
|
||||
|
||||
pub(crate) fn build_get_follow_up_plan(&self, trace_id: &str) -> Option<ExecutionPlan> {
|
||||
if !matches!(
|
||||
self.status,
|
||||
LocalVideoTaskStatus::Submitted
|
||||
| LocalVideoTaskStatus::Queued
|
||||
| LocalVideoTaskStatus::Processing
|
||||
) {
|
||||
return None;
|
||||
}
|
||||
|
||||
let operation_path = self.resolve_operation_path()?;
|
||||
let mut headers = self.transport.headers.clone();
|
||||
headers.remove("content-type");
|
||||
headers.remove("content-length");
|
||||
|
||||
Some(ExecutionPlan {
|
||||
request_id: trace_id.to_string(),
|
||||
candidate_id: None,
|
||||
provider_name: self.transport.provider_name.clone(),
|
||||
provider_id: self.transport.provider_id.clone(),
|
||||
endpoint_id: self.transport.endpoint_id.clone(),
|
||||
key_id: self.transport.key_id.clone(),
|
||||
method: "GET".to_string(),
|
||||
url: format!(
|
||||
"{}/v1beta/{}",
|
||||
self.transport.upstream_base_url.trim_end_matches('/'),
|
||||
operation_path
|
||||
),
|
||||
headers,
|
||||
content_type: None,
|
||||
content_encoding: None,
|
||||
body: RequestBody {
|
||||
json_body: None,
|
||||
body_bytes_b64: None,
|
||||
body_ref: None,
|
||||
},
|
||||
stream: false,
|
||||
client_api_format: "gemini:video".to_string(),
|
||||
provider_api_format: "gemini:video".to_string(),
|
||||
model_name: Some(self.model.clone()),
|
||||
proxy: self.transport.proxy.clone(),
|
||||
tls_profile: self.transport.tls_profile.clone(),
|
||||
timeouts: self.transport.timeouts.clone(),
|
||||
})
|
||||
}
|
||||
|
||||
fn resolve_operation_path(&self) -> Option<String> {
|
||||
if self.upstream_operation_name.starts_with("models/") {
|
||||
Some(self.upstream_operation_name.clone())
|
||||
} else if self.upstream_operation_name.starts_with("operations/") && !self.model.is_empty()
|
||||
{
|
||||
Some(format!(
|
||||
"models/{}/{}",
|
||||
self.model, self.upstream_operation_name
|
||||
))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) fn build_cancel_follow_up_plan(
|
||||
&self,
|
||||
auth_context: Option<&GatewayControlAuthContext>,
|
||||
trace_id: &str,
|
||||
) -> Option<LocalVideoTaskFollowUpPlan> {
|
||||
if !matches!(
|
||||
self.status,
|
||||
LocalVideoTaskStatus::Submitted
|
||||
| LocalVideoTaskStatus::Queued
|
||||
| LocalVideoTaskStatus::Processing
|
||||
) {
|
||||
return None;
|
||||
}
|
||||
let (user_id, api_key_id) = resolve_follow_up_auth(
|
||||
self.user_id.as_deref(),
|
||||
self.api_key_id.as_deref(),
|
||||
auth_context,
|
||||
)?;
|
||||
|
||||
let operation_path = self.resolve_operation_path()?;
|
||||
|
||||
let mut headers = self.transport.headers.clone();
|
||||
let content_type = self
|
||||
.transport
|
||||
.content_type
|
||||
.clone()
|
||||
.unwrap_or_else(|| "application/json".to_string());
|
||||
headers
|
||||
.entry("content-type".to_string())
|
||||
.or_insert_with(|| content_type.clone());
|
||||
|
||||
Some(LocalVideoTaskFollowUpPlan {
|
||||
plan: ExecutionPlan {
|
||||
request_id: trace_id.to_string(),
|
||||
candidate_id: None,
|
||||
provider_name: self.transport.provider_name.clone(),
|
||||
provider_id: self.transport.provider_id.clone(),
|
||||
endpoint_id: self.transport.endpoint_id.clone(),
|
||||
key_id: self.transport.key_id.clone(),
|
||||
method: "POST".to_string(),
|
||||
url: format!(
|
||||
"{}/v1beta/{}:cancel",
|
||||
self.transport.upstream_base_url.trim_end_matches('/'),
|
||||
operation_path
|
||||
),
|
||||
headers,
|
||||
content_type: Some(content_type),
|
||||
content_encoding: None,
|
||||
body: RequestBody::from_json(json!({})),
|
||||
stream: false,
|
||||
client_api_format: "gemini:video".to_string(),
|
||||
provider_api_format: "gemini:video".to_string(),
|
||||
model_name: Some(self.model.clone()),
|
||||
proxy: self.transport.proxy.clone(),
|
||||
tls_profile: self.transport.tls_profile.clone(),
|
||||
timeouts: self.transport.timeouts.clone(),
|
||||
},
|
||||
report_kind: Some("gemini_video_cancel_sync_finalize".to_string()),
|
||||
report_context: Some(build_video_follow_up_report_context(
|
||||
&self.persistence.request_id,
|
||||
&user_id,
|
||||
&api_key_id,
|
||||
&self.local_short_id,
|
||||
Some(self.model.clone()),
|
||||
&self.transport,
|
||||
"gemini:video",
|
||||
"gemini:video",
|
||||
)),
|
||||
})
|
||||
}
|
||||
|
||||
pub(crate) fn client_body_json(&self) -> Value {
|
||||
let operation_name = format!("models/{}/operations/{}", self.model, self.local_short_id);
|
||||
match self.status {
|
||||
LocalVideoTaskStatus::Completed => json!({
|
||||
"name": operation_name,
|
||||
"done": true,
|
||||
"response": {
|
||||
"generateVideoResponse": {
|
||||
"generatedSamples": [
|
||||
{
|
||||
"video": {
|
||||
"uri": format!("/v1beta/files/aev_{}:download?alt=media", self.local_short_id),
|
||||
"mimeType": "video/mp4"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}),
|
||||
LocalVideoTaskStatus::Failed | LocalVideoTaskStatus::Expired => json!({
|
||||
"name": operation_name,
|
||||
"done": true,
|
||||
"error": {
|
||||
"code": self.error_code.clone().unwrap_or_else(|| "UNKNOWN".to_string()),
|
||||
"message": self
|
||||
.error_message
|
||||
.clone()
|
||||
.unwrap_or_else(|| "Video generation failed".to_string()),
|
||||
}
|
||||
}),
|
||||
_ => json!({
|
||||
"name": operation_name,
|
||||
"done": false,
|
||||
"metadata": self.metadata.clone(),
|
||||
}),
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) fn to_upsert_record(&self) -> UpsertVideoTask {
|
||||
let now_unix_secs = current_unix_timestamp_secs();
|
||||
let next_poll_at_unix_secs = match self.status {
|
||||
LocalVideoTaskStatus::Submitted
|
||||
| LocalVideoTaskStatus::Queued
|
||||
| LocalVideoTaskStatus::Processing => Some(
|
||||
now_unix_secs.saturating_add(u64::from(DEFAULT_VIDEO_TASK_POLL_INTERVAL_SECONDS)),
|
||||
),
|
||||
_ => None,
|
||||
};
|
||||
UpsertVideoTask {
|
||||
id: self.local_short_id.clone(),
|
||||
short_id: Some(self.local_short_id.clone()),
|
||||
request_id: self.persistence.request_id.clone(),
|
||||
user_id: self.user_id.clone(),
|
||||
api_key_id: self.api_key_id.clone(),
|
||||
username: self.persistence.username.clone(),
|
||||
api_key_name: self.persistence.api_key_name.clone(),
|
||||
external_task_id: Some(self.upstream_operation_name.clone()),
|
||||
provider_id: Some(self.transport.provider_id.clone()),
|
||||
endpoint_id: Some(self.transport.endpoint_id.clone()),
|
||||
key_id: Some(self.transport.key_id.clone()),
|
||||
client_api_format: Some(self.persistence.client_api_format.clone()),
|
||||
provider_api_format: Some(self.persistence.provider_api_format.clone()),
|
||||
format_converted: self.persistence.format_converted,
|
||||
model: Some(self.model.clone()),
|
||||
prompt: request_body_string(&self.persistence.original_request_body, "prompt")
|
||||
.or_else(|| Some(String::new())),
|
||||
original_request_body: Some(self.persistence.original_request_body.clone()),
|
||||
duration_seconds: request_body_u32(&self.persistence.original_request_body, "seconds")
|
||||
.or_else(|| {
|
||||
request_body_u32(&self.persistence.original_request_body, "duration_seconds")
|
||||
}),
|
||||
resolution: request_body_string(&self.persistence.original_request_body, "resolution"),
|
||||
aspect_ratio: request_body_string(
|
||||
&self.persistence.original_request_body,
|
||||
"aspect_ratio",
|
||||
),
|
||||
size: request_body_string(&self.persistence.original_request_body, "size"),
|
||||
status: self.status.as_database_status(),
|
||||
progress_percent: self.progress_percent,
|
||||
progress_message: None,
|
||||
retry_count: 0,
|
||||
poll_interval_seconds: DEFAULT_VIDEO_TASK_POLL_INTERVAL_SECONDS,
|
||||
next_poll_at_unix_secs,
|
||||
poll_count: 0,
|
||||
max_poll_count: DEFAULT_VIDEO_TASK_MAX_POLL_COUNT,
|
||||
created_at_unix_secs: now_unix_secs,
|
||||
submitted_at_unix_secs: Some(now_unix_secs),
|
||||
completed_at_unix_secs: None,
|
||||
updated_at_unix_secs: now_unix_secs,
|
||||
error_code: self.error_code.clone(),
|
||||
error_message: self.error_message.clone(),
|
||||
video_url: gemini_metadata_video_url(&self.metadata),
|
||||
request_metadata: Some(json!({
|
||||
"rust_owner": "async_task",
|
||||
"rust_local_snapshot": LocalVideoTaskSnapshot::Gemini(self.clone()),
|
||||
})),
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user