//! # WebSocket routes //! //! @author Pierre Hubert use crate::controllers::{calls_controller, conversations_controller, forez_controller, likes_controller, user_ws_actions}; use crate::data::error::Res; use crate::data::user_ws_request_handler::UserWsRequestHandler; use crate::routes::RequestResult; pub type WsRequestProcess = Box Res>; /// Search for a route pub async fn exec_user_ws_route(uri: &str, handler: &mut UserWsRequestHandler) -> Option { match uri { // Main controller "$main/set_incognito" => Some(user_ws_actions::set_incognito(handler)), "$main/register_conv" => Some(user_ws_actions::register_conv(handler)), "$main/unregister_conv" => Some(user_ws_actions::unregister_conv(handler)), "$main/register_post" => Some(user_ws_actions::register_post(handler)), "$main/unregister_post" => Some(user_ws_actions::unregister_post(handler)), // Likes controller "likes/update" => Some(likes_controller::update(handler)), // Conversations controller "conversations/is_writing" => Some(conversations_controller::member_is_writing(handler)), // Calls controller "calls/config" => Some(calls_controller::get_config(handler)), "calls/join" => Some(calls_controller::join_call(handler)), "calls/leave" => Some(calls_controller::leave_call(handler)), "calls/members" => Some(calls_controller::get_members_list(handler)), "calls/signal" => Some(calls_controller::on_client_signal(handler)), "calls/mark_ready" => Some(calls_controller::mark_user_ready(handler)), "calls/request_offer" => Some(calls_controller::request_offer(handler)), "calls/stop_streaming" => Some(calls_controller::stop_streaming(handler)), // Presence controller "forez_presence/list" => Some(forez_controller::get_list(handler)), "forez_presence/add_day" => Some(forez_controller::add_day(handler)), "forez_presence/del_day" => Some(forez_controller::del_day(handler)), _ => None, } }