// // 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 . import { EmailEnvelope, PaginatedResponse } from "@/api"; import axiosInstance from "@/api/axiosInstance"; import { saveAs } from 'file-saver'; export const list_messages = async (accountId: number, mailbox_id: number, page: number, page_size: number) => { const params = new URLSearchParams({ mailbox_id: String(mailbox_id), page: String(page), page_size: String(page_size), }); const response = await axiosInstance.get>( `/api/v1/list-messages/${accountId}?${params.toString()}` ); return response.data; }; export const get_thread_messages = async (accountId: number, thread_id: number, page: number, page_size: number) => { const params = new URLSearchParams({ thread_id: String(thread_id), page: String(page), page_size: String(page_size), }); const response = await axiosInstance.get>( `/api/v1/get-thread-messages/${accountId}?${params.toString()}` ); return response.data; } export const download_attachment = async (accountId: number, id: number, attachmentFileName: string) => { const response = await axiosInstance.get(`/api/v1/download-attachment/${accountId}/${id}?name=${attachmentFileName}`, { responseType: 'blob' }); const blob = new Blob([response.data]); saveAs(blob, attachmentFileName); }; export interface AttachmentInfo { /** MIME content type of the attachment (e.g., `image/png`, `application/pdf`). */ file_type: string; /** Content-ID, used for inline attachments (referenced in HTML by `cid:` URLs). */ content_id?: string; /** Whether the attachment is marked as inline (true) or a regular file (false). */ inline: boolean; /** Original filename of the attachment, if provided. */ filename: string; /** Size of the attachment in bytes. */ size: number; } export interface MessageContentResponse { text?: string; html?: string; attachments?: AttachmentInfo[] } export const getContent = (messageContent: MessageContentResponse): string | null => { if (messageContent.html) { return messageContent.html; } else if (messageContent.text) { return messageContent.text; } return null; }; export const load_message = async (accountId: number, id: number) => { const response = await axiosInstance.get(`/api/v1/message-content/${accountId}/${id}`); return response.data; }; export const delete_messages = async (payload: Record) => { const response = await axiosInstance.post("/api/v1/delete-messages", payload); return response.data; }; export const download_message = async (accountId: number, id: number) => { const response = await axiosInstance.get(`/api/v1/download-message/${accountId}/${id}`, { responseType: 'blob' }); const blob = new Blob([response.data]); saveAs(blob, `${id}.eml`); }; export const restore_message = async (accountId: number, messageIds: number[]) => { const response = await axiosInstance.post(`/api/v1/restore-messages/${accountId}`, { message_ids: messageIds, }); return response.data; };