aboutsummaryrefslogblamecommitdiffstats
path: root/filamento/src/logic/local_only.rs
blob: cabbef47681d1b32118a2e7ee8950a44c79ae36a (plain) (tree)
1
2
3
4
5
6
7





                          
                     




                       


                                                     


                                      


                                                             


                                              

                                                                                  



                                                                   



                                                    


                                        

                                                        




                                                   



                                                       


                                          



                                                           


                                              



                                                    

                                        
use jid::JID;
use uuid::Uuid;

use crate::{
    chat::{Chat, Message},
    error::DatabaseError,
    files::FileStore,
    user::User,
};

use super::ClientLogic;

pub async fn handle_get_chats<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
) -> Result<Vec<Chat>, DatabaseError> {
    Ok(logic.db().read_chats().await?)
}

pub async fn handle_get_chats_ordered<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
) -> Result<Vec<Chat>, DatabaseError> {
    Ok(logic.db().read_chats_ordered().await?)
}

pub async fn handle_get_chats_ordered_with_latest_messages<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
) -> Result<Vec<(Chat, Message)>, DatabaseError> {
    Ok(logic.db().read_chats_ordered_with_latest_messages().await?)
}

pub async fn handle_get_chat<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
    jid: JID,
) -> Result<Chat, DatabaseError> {
    Ok(logic.db().read_chat(jid).await?)
}

pub async fn handle_get_messages<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
    jid: JID,
) -> Result<Vec<Message>, DatabaseError> {
    Ok(logic.db().read_message_history(jid).await?)
}

pub async fn handle_delete_chat<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
    jid: JID,
) -> Result<(), DatabaseError> {
    Ok(logic.db().delete_chat(jid).await?)
}

pub async fn handle_delete_messaage<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
    uuid: Uuid,
) -> Result<(), DatabaseError> {
    Ok(logic.db().delete_message(uuid).await?)
}

pub async fn handle_get_user<Fs: FileStore + Clone>(
    logic: &ClientLogic<Fs>,
    jid: JID,
) -> Result<User, DatabaseError> {
    Ok(logic.db().read_user(jid).await?)
}