Private
Public Access
1
0
Files
Kordophone/kordophoned/src/daemon/events.rs

74 lines
2.7 KiB
Rust
Raw Normal View History

use tokio::sync::oneshot;
2025-05-02 14:22:43 -07:00
use uuid::Uuid;
use kordophone::model::ConversationID;
use kordophone::model::OutgoingMessage;
use kordophone_db::models::{Conversation, Message};
use crate::daemon::settings::Settings;
use crate::daemon::Attachment;
pub type Reply<T> = oneshot::Sender<T>;
#[derive(Debug)]
pub enum Event {
/// Get the version of the daemon.
GetVersion(Reply<String>),
/// Asynchronous event for syncing the conversation list with the server.
SyncConversationList(Reply<()>),
/// Asynchronous event for syncing all conversations with the server.
SyncAllConversations(Reply<()>),
/// Asynchronous event for syncing a single conversation with the server.
SyncConversation(String, Reply<()>),
/// Returns all known conversations from the database.
/// Parameters:
/// - limit: The maximum number of conversations to return. (-1 for no limit)
/// - offset: The offset into the conversation list to start returning conversations from.
GetAllConversations(i32, i32, Reply<Vec<Conversation>>),
/// Returns all known settings from the database.
GetAllSettings(Reply<Settings>),
/// Update settings in the database.
UpdateSettings(Settings, Reply<()>),
/// Returns all messages for a conversation from the database.
/// Parameters:
/// - conversation_id: The ID of the conversation to get messages for.
/// - last_message_id: (optional) The ID of the last message to get. If None, all messages are returned.
GetMessages(String, Option<String>, Reply<Vec<Message>>),
2025-05-01 01:08:13 -07:00
2025-05-02 14:22:43 -07:00
/// Enqueues a message to be sent to the server.
/// Parameters:
2025-05-02 14:22:43 -07:00
/// - conversation_id: The ID of the conversation to send the message to.
/// - text: The text of the message to send.
/// - reply: The outgoing message ID (not the server-assigned message ID).
SendMessage(String, String, Reply<Uuid>),
/// Notifies the daemon that a message has been sent.
/// Parameters:
/// - message: The message that was sent.
/// - outgoing_message: The outgoing message that was sent.
/// - conversation_id: The ID of the conversation that the message was sent to.
MessageSent(Message, OutgoingMessage, ConversationID),
/// Gets an attachment object from the attachment store.
/// Parameters:
/// - guid: The attachment guid
/// - reply: Reply of the attachment object, if known.
GetAttachment(String, Reply<Attachment>),
2025-05-26 16:19:26 -07:00
/// Downloads an attachment from the server.
/// Parameters:
/// - attachment_id: The attachment ID to download
/// - reply: Reply indicating success or failure
DownloadAttachment(String, Reply<()>),
2025-05-01 01:08:13 -07:00
/// Delete all conversations from the database.
DeleteAllConversations(Reply<()>),
}