mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-08-02 00:06:12 +08:00
bd3cfb7741
* fix: parse tool_use/tool_result messages and add OpenCode SQLite backend - Claude: reclassify user messages containing tool_result as "tool" role - Codex: handle function_call and function_call_output payload types - Gemini: support array content and toolCalls extraction, filter info/error types - OpenCode: add SQLite session scan, load and delete alongside legacy JSON - utils: extend parse_timestamp_to_ms for integer timestamps, extract tool_use/tool_result in shared extract_text * fix: address remaining issues from tool_use/tool_result parsing commit - Claude: fix role misclassification for mixed user+tool_result messages (any → all) - OpenCode: extract duplicate part text logic into extract_part_text() - OpenCode: add path validation for SQLite delete to prevent foreign DB access - OpenCode: wrap SQLite deletion in transaction for atomicity - openclaw_config: remove redundant as_deref() on Option<&str>
253 lines
8.1 KiB
Rust
253 lines
8.1 KiB
Rust
use std::path::Path;
|
|
|
|
use serde_json::Value;
|
|
|
|
use crate::session_manager::{SessionMessage, SessionMeta};
|
|
|
|
use super::utils::{parse_timestamp_to_ms, truncate_summary};
|
|
|
|
const PROVIDER_ID: &str = "gemini";
|
|
|
|
pub fn scan_sessions() -> Vec<SessionMeta> {
|
|
let gemini_dir = crate::gemini_config::get_gemini_dir();
|
|
let tmp_dir = gemini_dir.join("tmp");
|
|
if !tmp_dir.exists() {
|
|
return Vec::new();
|
|
}
|
|
|
|
let mut sessions = Vec::new();
|
|
|
|
// Iterate over project hash directories: tmp/<project_hash>/chats/session-*.json
|
|
let project_dirs = match std::fs::read_dir(&tmp_dir) {
|
|
Ok(entries) => entries,
|
|
Err(_) => return Vec::new(),
|
|
};
|
|
|
|
for entry in project_dirs.flatten() {
|
|
let chats_dir = entry.path().join("chats");
|
|
if !chats_dir.is_dir() {
|
|
continue;
|
|
}
|
|
|
|
let chat_files = match std::fs::read_dir(&chats_dir) {
|
|
Ok(entries) => entries,
|
|
Err(_) => continue,
|
|
};
|
|
|
|
for file_entry in chat_files.flatten() {
|
|
let path = file_entry.path();
|
|
if path.extension().and_then(|e| e.to_str()) != Some("json") {
|
|
continue;
|
|
}
|
|
if let Some(meta) = parse_session(&path) {
|
|
sessions.push(meta);
|
|
}
|
|
}
|
|
}
|
|
|
|
sessions
|
|
}
|
|
|
|
pub fn load_messages(path: &Path) -> Result<Vec<SessionMessage>, String> {
|
|
let data = std::fs::read_to_string(path).map_err(|e| format!("Failed to read session: {e}"))?;
|
|
let value: Value =
|
|
serde_json::from_str(&data).map_err(|e| format!("Failed to parse session JSON: {e}"))?;
|
|
|
|
let messages = value
|
|
.get("messages")
|
|
.and_then(Value::as_array)
|
|
.ok_or_else(|| "No messages array found".to_string())?;
|
|
|
|
let mut result = Vec::new();
|
|
for msg in messages {
|
|
let role = match msg.get("type").and_then(Value::as_str) {
|
|
Some("gemini") => "assistant",
|
|
Some("user") => "user",
|
|
Some("info") | Some("error") => continue,
|
|
Some(_) | None => continue,
|
|
};
|
|
|
|
// Gemini content may be a plain string or an array of {text: ...} objects
|
|
let mut content = match msg.get("content") {
|
|
Some(Value::String(s)) => s.to_string(),
|
|
Some(Value::Array(items)) => items
|
|
.iter()
|
|
.filter_map(|item| item.get("text").and_then(Value::as_str))
|
|
.collect::<Vec<_>>()
|
|
.join("\n"),
|
|
_ => String::new(),
|
|
};
|
|
|
|
// Append tool call names from the optional toolCalls array
|
|
if let Some(Value::Array(calls)) = msg.get("toolCalls") {
|
|
for call in calls {
|
|
if let Some(name) = call.get("name").and_then(Value::as_str) {
|
|
if !content.is_empty() {
|
|
content.push('\n');
|
|
}
|
|
content.push_str(&format!("[Tool: {name}]"));
|
|
}
|
|
}
|
|
}
|
|
|
|
if content.trim().is_empty() {
|
|
continue;
|
|
}
|
|
|
|
let ts = msg.get("timestamp").and_then(parse_timestamp_to_ms);
|
|
|
|
result.push(SessionMessage {
|
|
role: role.to_string(),
|
|
content,
|
|
ts,
|
|
});
|
|
}
|
|
|
|
Ok(result)
|
|
}
|
|
|
|
pub fn delete_session(_root: &Path, path: &Path, session_id: &str) -> Result<bool, String> {
|
|
let meta = parse_session(path).ok_or_else(|| {
|
|
format!(
|
|
"Failed to parse Gemini session metadata: {}",
|
|
path.display()
|
|
)
|
|
})?;
|
|
|
|
if meta.session_id != session_id {
|
|
return Err(format!(
|
|
"Gemini session ID mismatch: expected {session_id}, found {}",
|
|
meta.session_id
|
|
));
|
|
}
|
|
|
|
std::fs::remove_file(path).map_err(|e| {
|
|
format!(
|
|
"Failed to delete Gemini session file {}: {e}",
|
|
path.display()
|
|
)
|
|
})?;
|
|
|
|
Ok(true)
|
|
}
|
|
|
|
fn parse_session(path: &Path) -> Option<SessionMeta> {
|
|
let data = std::fs::read_to_string(path).ok()?;
|
|
let value: Value = serde_json::from_str(&data).ok()?;
|
|
|
|
let session_id = value.get("sessionId").and_then(Value::as_str)?.to_string();
|
|
|
|
let created_at = value.get("startTime").and_then(parse_timestamp_to_ms);
|
|
let last_active_at = value.get("lastUpdated").and_then(parse_timestamp_to_ms);
|
|
|
|
// Derive title from first user message
|
|
let title = value
|
|
.get("messages")
|
|
.and_then(Value::as_array)
|
|
.and_then(|msgs| {
|
|
msgs.iter()
|
|
.find(|m| m.get("type").and_then(Value::as_str) == Some("user"))
|
|
.and_then(|m| m.get("content").and_then(Value::as_str))
|
|
.filter(|s| !s.trim().is_empty())
|
|
.map(|s| truncate_summary(s, 160))
|
|
});
|
|
|
|
let source_path = path.to_string_lossy().to_string();
|
|
|
|
Some(SessionMeta {
|
|
provider_id: PROVIDER_ID.to_string(),
|
|
session_id: session_id.clone(),
|
|
title: title.clone(),
|
|
summary: title,
|
|
project_dir: None, // project hash is not reversible
|
|
created_at,
|
|
last_active_at: last_active_at.or(created_at),
|
|
source_path: Some(source_path),
|
|
resume_command: Some(format!("gemini --resume {session_id}")),
|
|
})
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use tempfile::tempdir;
|
|
|
|
#[test]
|
|
fn delete_session_removes_json_file() {
|
|
let temp = tempdir().expect("tempdir");
|
|
let path = temp.path().join("session-2026-03-06T10-17-test.json");
|
|
std::fs::write(
|
|
&path,
|
|
r#"{
|
|
"sessionId": "gemini-session-123",
|
|
"startTime": "2026-03-06T10:17:58.000Z",
|
|
"lastUpdated": "2026-03-06T10:20:00.000Z",
|
|
"messages": [
|
|
{
|
|
"id": "msg-1",
|
|
"timestamp": "2026-03-06T10:17:58.000Z",
|
|
"type": "user",
|
|
"content": "hello"
|
|
}
|
|
]
|
|
}"#,
|
|
)
|
|
.expect("write session");
|
|
|
|
delete_session(temp.path(), &path, "gemini-session-123").expect("delete session");
|
|
|
|
assert!(!path.exists());
|
|
}
|
|
|
|
#[test]
|
|
fn load_messages_handles_array_content() {
|
|
let temp = tempdir().expect("tempdir");
|
|
let path = temp.path().join("session.json");
|
|
std::fs::write(
|
|
&path,
|
|
r#"{
|
|
"sessionId": "test",
|
|
"messages": [
|
|
{"id":"1","timestamp":"2026-03-06T10:00:00Z","type":"user","content":[{"text":"hello"}]},
|
|
{"id":"2","timestamp":"2026-03-06T10:00:01Z","type":"gemini","content":"world"},
|
|
{"id":"3","timestamp":"2026-03-06T10:00:02Z","type":"info","content":"system info"},
|
|
{"id":"4","timestamp":"2026-03-06T10:00:03Z","type":"error","content":"MCP ERROR"}
|
|
]
|
|
}"#,
|
|
)
|
|
.expect("write");
|
|
|
|
let msgs = load_messages(&path).expect("load");
|
|
assert_eq!(msgs.len(), 2);
|
|
assert_eq!(msgs[0].role, "user");
|
|
assert_eq!(msgs[0].content, "hello");
|
|
assert_eq!(msgs[1].role, "assistant");
|
|
assert_eq!(msgs[1].content, "world");
|
|
}
|
|
|
|
#[test]
|
|
fn load_messages_includes_tool_calls() {
|
|
let temp = tempdir().expect("tempdir");
|
|
let path = temp.path().join("session.json");
|
|
std::fs::write(
|
|
&path,
|
|
r#"{
|
|
"sessionId": "test",
|
|
"messages": [
|
|
{"id":"1","timestamp":"2026-03-10T08:24:50Z","type":"gemini","content":"","toolCalls":[{"id":"call_1","name":"web_search","args":{"query":"test"}}]},
|
|
{"id":"2","timestamp":"2026-03-10T08:25:00Z","type":"gemini","content":"Here are the results.","toolCalls":[{"id":"call_2","name":"web_fetch","args":{"url":"http://example.com"}}]}
|
|
]
|
|
}"#,
|
|
)
|
|
.expect("write");
|
|
|
|
let msgs = load_messages(&path).expect("load");
|
|
assert_eq!(msgs.len(), 2);
|
|
assert_eq!(msgs[0].role, "assistant");
|
|
assert!(msgs[0].content.contains("[Tool: web_search]"));
|
|
assert_eq!(msgs[1].role, "assistant");
|
|
assert!(msgs[1].content.contains("Here are the results."));
|
|
assert!(msgs[1].content.contains("[Tool: web_fetch]"));
|
|
}
|
|
}
|