simple send message endpoint
This commit is contained in:
BIN
db/1.sqlite
BIN
db/1.sqlite
Binary file not shown.
@@ -53,3 +53,26 @@ where S: Send + Sync,
|
|||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Deserialize, Debug)]
|
||||||
|
pub struct SendMessageValues{
|
||||||
|
pub conv_id: u32,
|
||||||
|
pub message: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct SendMessagePayload(pub SendMessageValues);
|
||||||
|
|
||||||
|
impl<S> FromRequest<S> for SendMessagePayload
|
||||||
|
where S: Send + Sync,
|
||||||
|
{
|
||||||
|
type Rejection = (StatusCode, String);
|
||||||
|
|
||||||
|
async fn from_request(req: Request, state: &S) -> Result<Self, Self::Rejection> {
|
||||||
|
let Json(payload) = Json::<SendMessageValues>::from_request(req, state)
|
||||||
|
.await
|
||||||
|
.map_err(|err| (StatusCode::BAD_REQUEST, format!("Invalid body: {}", err)))?;
|
||||||
|
|
||||||
|
Ok(SendMessagePayload(payload))
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,7 +8,7 @@ use axum::{
|
|||||||
use rusqlite::params;
|
use rusqlite::params;
|
||||||
|
|
||||||
use crate::chat::extractor::{
|
use crate::chat::extractor::{
|
||||||
AddUserConversationPayload, CreateConversationPayload
|
AddUserConversationPayload, CreateConversationPayload, SendMessagePayload
|
||||||
};
|
};
|
||||||
use crate::utils::db_pool::{AppState};
|
use crate::utils::db_pool::{AppState};
|
||||||
use crate::utils::auth::AuthClaims;
|
use crate::utils::auth::AuthClaims;
|
||||||
@@ -88,3 +88,42 @@ pub async fn add_user_to_conv(
|
|||||||
return (StatusCode::OK, "ok".to_string());
|
return (StatusCode::OK, "ok".to_string());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn send_message(
|
||||||
|
State(state): State<AppState>,
|
||||||
|
AuthClaims {user_id, hotel_id,username}: AuthClaims,
|
||||||
|
SendMessagePayload(payload):SendMessagePayload
|
||||||
|
) -> impl IntoResponse {
|
||||||
|
|
||||||
|
let pool = state.hotel_pools.get_pool(hotel_id);
|
||||||
|
|
||||||
|
let conn = match pool.get(){
|
||||||
|
Ok(conn) => conn,
|
||||||
|
Err(err) => return (StatusCode::INTERNAL_SERVER_ERROR, format!("Pool error"))
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut statement = match conn.prepare(
|
||||||
|
"SELECT 1 FROM conversation_participants WHERE user_id = ?1 AND conversation_id = ?2" ,
|
||||||
|
){
|
||||||
|
Ok(statement) => statement,
|
||||||
|
Err(_) => return (StatusCode::INTERNAL_SERVER_ERROR, "prepare failed".to_string())
|
||||||
|
};
|
||||||
|
|
||||||
|
if !statement.exists(params![user_id, payload.conv_id])
|
||||||
|
.map_err(|_| (StatusCode::INTERNAL_SERVER_ERROR, "Query failed".to_string())).unwrap()
|
||||||
|
{
|
||||||
|
// Early exit if not creator
|
||||||
|
return ((StatusCode::FORBIDDEN, "Not the creator".to_string()));
|
||||||
|
}
|
||||||
|
|
||||||
|
let result = conn.execute(
|
||||||
|
"INSERT INTO message (sender_id, content, conversation_id) VALUES (?1, ?2, ?3)",
|
||||||
|
params![&user_id, &payload.message, &payload.conv_id],
|
||||||
|
);
|
||||||
|
|
||||||
|
match result {
|
||||||
|
Ok(rows) if rows > 0 => (StatusCode::OK, "added message succesfully".to_string()),
|
||||||
|
Ok(_) => (StatusCode::NOT_FOUND, "not able to add the message, conversation may not exist".to_string() ),
|
||||||
|
Err(err) => (StatusCode::INTERNAL_SERVER_ERROR, format!("Error when adding the message : {err}")),
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
use axum::{
|
use axum::{
|
||||||
Router,
|
Router,
|
||||||
routing::put
|
routing::put,
|
||||||
|
routing::post
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::utils::db_pool::AppState;
|
use crate::utils::db_pool::AppState;
|
||||||
use crate::chat::handlers::{
|
use crate::chat::handlers::{
|
||||||
create_conversation,add_user_to_conv,
|
create_conversation,add_user_to_conv,send_message
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -15,7 +16,8 @@ use crate::chat::handlers::{
|
|||||||
pub fn chat_routes() -> Router<AppState> {
|
pub fn chat_routes() -> Router<AppState> {
|
||||||
|
|
||||||
Router::new()
|
Router::new()
|
||||||
.route("/create_conversation", put (create_conversation))
|
.route("/create_conversation", post (create_conversation))
|
||||||
.route("/add_users_conv", put(add_user_to_conv))
|
.route("/add_users_conv", put(add_user_to_conv))
|
||||||
|
.route("/send_message", post(send_message))
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user