use anyhow::{Result, anyhow};
use base64::Engine;
use systemprompt_database::DbPool;
use systemprompt_identifiers::ContextId;
use systemprompt_models::{
AiContentPart, AiMessage, MessageRole, is_supported_audio, is_supported_image,
is_supported_text, is_supported_video,
};
use crate::models::a2a::{FilePart, MessageRole as A2aMessageRole, Part};
use crate::models::{Artifact, Message};
use crate::repository::task::TaskRepository;
#[derive(Debug)]
pub struct ConversationService {
db_pool: DbPool,
}
impl ConversationService {
pub const fn new(db_pool: DbPool) -> Self {
Self { db_pool }
}
pub async fn load_conversation_history(
&self,
context_id: &ContextId,
) -> Result<Vec<AiMessage>> {
let task_repo = TaskRepository::new(&self.db_pool)?;
let tasks = task_repo
.list_tasks_by_context(context_id)
.await
.map_err(|e| anyhow!("Failed to load conversation history: {}", e))?;
let mut history_messages = Vec::new();
for task in tasks {
if let Some(task_history) = task.history {
for msg in task_history {
let (text, parts) = Self::extract_message_content(&msg);
if text.is_empty() && parts.is_empty() {
continue;
}
let role = match msg.role {
A2aMessageRole::User => MessageRole::User,
A2aMessageRole::Agent => MessageRole::Assistant,
};
history_messages.push(AiMessage {
role,
content: text,
parts,
});
}
}
if let Some(artifacts) = task.artifacts {
for artifact in artifacts {
let artifact_content = Self::serialize_artifact_for_context(&artifact);
history_messages.push(AiMessage {
role: MessageRole::Assistant,
content: artifact_content,
parts: Vec::new(),
});
}
}
}
Ok(history_messages)
}
fn extract_message_content(message: &Message) -> (String, Vec<AiContentPart>) {
let mut text_content = String::new();
let mut content_parts = Vec::new();
for part in &message.parts {
match part {
Part::Text(text_part) => {
if text_content.is_empty() {
text_content.clone_from(&text_part.text);
}
content_parts.push(AiContentPart::text(&text_part.text));
},
Part::File(file_part) => {
if let Some(content_part) = Self::file_to_content_part(file_part) {
content_parts.push(content_part);
}
},
Part::Data(_) => {},
}
}
(text_content, content_parts)
}
fn file_to_content_part(file_part: &FilePart) -> Option<AiContentPart> {
let mime_type = file_part.file.mime_type.as_deref()?;
let file_name = file_part.file.name.as_deref().unwrap_or("unnamed");
let bytes = file_part.file.bytes.as_deref()?;
if is_supported_image(mime_type) {
return Some(AiContentPart::image(mime_type, bytes));
}
if is_supported_audio(mime_type) {
return Some(AiContentPart::audio(mime_type, bytes));
}
if is_supported_video(mime_type) {
return Some(AiContentPart::video(mime_type, bytes));
}
if is_supported_text(mime_type) {
return Self::decode_text_file(bytes, file_name, mime_type);
}
tracing::warn!(
file_name = %file_name,
mime_type = %mime_type,
"Unsupported file type - file will not be sent to AI"
);
None
}
fn decode_text_file(bytes: &str, file_name: &str, mime_type: &str) -> Option<AiContentPart> {
let decoded = base64::engine::general_purpose::STANDARD
.decode(bytes)
.map_err(|e| {
tracing::warn!(
file_name = %file_name,
mime_type = %mime_type,
error = %e,
"Failed to decode base64 text file"
);
e
})
.ok()?;
let text_content = String::from_utf8(decoded)
.map_err(|e| {
tracing::warn!(
file_name = %file_name,
mime_type = %mime_type,
error = %e,
"Failed to decode text file as UTF-8"
);
e
})
.ok()?;
let formatted = format!("[File: {file_name} ({mime_type})]\n{text_content}");
Some(AiContentPart::text(formatted))
}
fn serialize_artifact_for_context(artifact: &Artifact) -> String {
let artifact_name = artifact
.title
.clone()
.unwrap_or_else(|| "unnamed".to_string());
let mut content = format!(
"[Artifact: {} (type: {})]\n",
artifact_name, artifact.metadata.artifact_type
);
for part in &artifact.parts {
match part {
Part::Text(text_part) => {
content.push_str(&text_part.text);
content.push('\n');
},
Part::Data(data_part) => {
let json_str = serde_json::to_string_pretty(&data_part.data)
.unwrap_or_else(|_| "{}".to_string());
content.push_str(&json_str);
content.push('\n');
},
Part::File(file_part) => {
if let Some(name) = &file_part.file.name {
content.push_str(&format!("[File: {}]\n", name));
}
},
}
}
content
}
}