mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-11-22 21:39:21 +00:00
Return the list of available private conversations
This commit is contained in:
parent
ab10bc2d36
commit
633974a401
@ -16,4 +16,5 @@ pub mod res_find_user_by_virtual_directory;
|
|||||||
pub mod res_find_virtual_directory;
|
pub mod res_find_virtual_directory;
|
||||||
pub mod res_create_conversation;
|
pub mod res_create_conversation;
|
||||||
pub mod conversation_api;
|
pub mod conversation_api;
|
||||||
mod legacy_api_bool;
|
mod legacy_api_bool;
|
||||||
|
pub mod res_find_private_conversations;
|
20
src/api_data/res_find_private_conversations.rs
Normal file
20
src/api_data/res_find_private_conversations.rs
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
//! Find private conversations result
|
||||||
|
//!
|
||||||
|
//! @author Pierre Hubert
|
||||||
|
|
||||||
|
use serde::Serialize;
|
||||||
|
|
||||||
|
#[derive(Serialize)]
|
||||||
|
#[allow(non_snake_case)]
|
||||||
|
pub struct ResFindPrivateConversations {
|
||||||
|
conversationsID: Vec<u64>
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ResFindPrivateConversations {
|
||||||
|
/// Construct a new instance of this structure
|
||||||
|
pub fn new(list: Vec<u64>) -> ResFindPrivateConversations {
|
||||||
|
ResFindPrivateConversations {
|
||||||
|
conversationsID: list
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
use crate::api_data::conversation_api::ConversationAPI;
|
use crate::api_data::conversation_api::ConversationAPI;
|
||||||
use crate::api_data::res_create_conversation::ResCreateConversation;
|
use crate::api_data::res_create_conversation::ResCreateConversation;
|
||||||
|
use crate::api_data::res_find_private_conversations::ResFindPrivateConversations;
|
||||||
use crate::controllers::routes::RequestResult;
|
use crate::controllers::routes::RequestResult;
|
||||||
use crate::data::http_request_handler::HttpRequestHandler;
|
use crate::data::http_request_handler::HttpRequestHandler;
|
||||||
use crate::data::new_conversation::NewConversation;
|
use crate::data::new_conversation::NewConversation;
|
||||||
@ -136,7 +137,11 @@ pub fn find_private(r: &mut HttpRequestHandler) -> RequestResult {
|
|||||||
// Query the database
|
// Query the database
|
||||||
let list = conversations_helper::find_private(r.user_id()?, other_user)?;
|
let list = conversations_helper::find_private(r.user_id()?, other_user)?;
|
||||||
|
|
||||||
println!("{:#?}", list);
|
if list.is_empty() {
|
||||||
|
if !allow_create {
|
||||||
|
return r.not_found(format!("Not any private conversation was found. The server was not allowed to create a new one..."));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
r.success("implement it")
|
r.set_response(ResFindPrivateConversations::new(list))
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user