// // Copyright (c) 2025-2026 rustmailer.com (https://rustmailer.com) // // This file is part of the Bichon Email Archiving Project // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . use std::collections::HashSet; use poem_openapi::{Enum, Object}; use serde::{Deserialize, Serialize}; use crate::{ modules::{ duckdb::init::duckdb, error::{code::ErrorCode, BichonResult}, indexer::{envelope::Envelope, manager::ENVELOPE_INDEX_MANAGER}, rest::response::DataPage, }, raise_error, }; #[derive(Debug, Clone, Default, Eq, PartialEq, Serialize, Deserialize, Object)] pub struct SearchFilter { pub text: Option, pub from: Option, pub to: Option, pub cc: Option, pub bcc: Option, pub since: Option, pub before: Option, pub account_ids: Option>, pub mailbox_ids: Option>, pub min_size: Option, pub max_size: Option, pub message_id: Option, pub has_attachment: Option, pub attachment_name: Option, pub tags: Option>, } #[derive(Debug, Clone, Default, Eq, PartialEq, Serialize, Deserialize, Enum)] pub enum SortBy { #[default] DATE, SIZE, } #[derive(Debug, Clone, Default, Eq, PartialEq, Serialize, Deserialize, Object)] pub struct SearchRequest { filter: SearchFilter, page: u64, page_size: u64, sort_by: Option, desc: Option, } impl SearchRequest { pub fn validate(&self) -> BichonResult<()> { if self.page == 0 || self.page_size == 0 { return Err(raise_error!( "Both page and page_size must be greater than 0.".into(), ErrorCode::InvalidParameter )); } if self.page_size > 500 { return Err(raise_error!( "The page_size exceeds the maximum allowed limit of 500.".into(), ErrorCode::InvalidParameter )); } if let Some(ref pattern) = self.filter.text { if let Err(_) = duckdb()?.validate_regex(pattern) { return Err(raise_error!( "Invalid search pattern: The regular expression is not supported by DuckDB." .into(), ErrorCode::InvalidParameter )); } } Ok(()) } } pub async fn search_messages_impl( accounts: Option>, request: SearchRequest, ) -> BichonResult> { request.validate()?; ENVELOPE_INDEX_MANAGER .search( accounts, request.filter, request.page, request.page_size, request.desc.unwrap_or(true), request.sort_by.unwrap_or(SortBy::DATE), ) .await }