diff --git a/src/routes.rs b/src/routes.rs index eeb24a8..43172e4 100644 --- a/src/routes.rs +++ b/src/routes.rs @@ -176,312 +176,309 @@ impl Route { macro_rules! route { - ($r : expr, $req_uri: expr, $call: expr, GET_NO_LOGIN, $uri: expr, $func: expr)=>{ + ($req_uri: expr, $call: expr, GET_NO_LOGIN, $uri: expr, $func: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::get_without_login($uri)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + + return (Some(Route::get_without_login($uri)), None) } }; - ($r : expr, $req_uri: expr, $call: expr, POST_NO_LOGIN, $uri: expr, $func: expr)=>{ + ($req_uri: expr, $call: expr, POST_NO_LOGIN, $uri: expr, $func: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::post_without_login($uri)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + + return (Some(Route::post_without_login($uri)), None) } }; - ($r : expr, $req_uri: expr, $call: expr, POST_LOGIN, $uri: expr, $func: expr)=>{ + ($req_uri: expr, $call: expr, POST_LOGIN, $uri: expr, $func: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::post($uri)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + + return (Some(Route::post($uri)), None) } }; - ($r : expr, $req_uri: expr, $call: expr, LTD_POST_NO_LOGIN, $uri: expr, $func: expr, $policy: expr)=>{ + ($req_uri: expr, $call: expr, LTD_POST_NO_LOGIN, $uri: expr, $func: expr, $policy: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::limited_post_without_login($uri, $policy)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + + return (Some(Route::limited_post_without_login($uri, $policy)), None) } }; - ($r : expr, $req_uri: expr, $call: expr, LTD_POST_LOGIN, $uri: expr, $func: expr, $policy: expr)=>{ + ($req_uri: expr, $call: expr, LTD_POST_LOGIN, $uri: expr, $func: expr, $policy: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::limited_post($uri, $policy)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + + return (Some(Route::limited_post($uri, $policy)), None) } }; - ($r : expr, $req_uri: expr, $call: expr, LTD_ADMIN_POST_NO_LOGIN, $uri: expr, $func: expr, $policy: expr)=>{ + ($req_uri: expr, $call: expr, LTD_ADMIN_POST_NO_LOGIN, $uri: expr, $func: expr, $policy: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::limited_admin_post_without_login($uri, $policy)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + + return (Some(Route::limited_admin_post_without_login($uri, $policy)), None) } }; - ($r : expr, $req_uri: expr, $call: expr, ADMIN_POST_LOGIN, $uri: expr, $func: expr)=>{ + ($req_uri: expr, $call: expr, ADMIN_POST_LOGIN, $uri: expr, $func: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::admin_post($uri)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + + return (Some(Route::admin_post($uri)), None); } }; - ($r : expr, $req_uri: expr, $call: expr, ADMIN_POST_LOGIN_RESTR, $uri: expr, $func: expr, $role: expr)=>{ + ($req_uri: expr, $call: expr, ADMIN_POST_LOGIN_RESTR, $uri: expr, $func: expr, $role: expr)=>{ if($uri.eq($req_uri)) { - $r = Some(Route::admin_post_restricted($uri, $role)); - if let Some(c) = $call { - return ($r, Some($func(c).await)); + return (None, Some($func(c).await)); } + return (Some(Route::admin_post_restricted($uri, $role)), None); } }; } pub async fn find_route(req_uri: &str, call: Option<&mut HttpRequestHandler>) -> (Option, Option) { - let mut r = None; - // Server meta routes - route!(r, req_uri, call, GET_NO_LOGIN, "/", server_controller::main_index); - route!(r, req_uri, call, POST_NO_LOGIN, "/server/config", server_controller::get_config); + route!(req_uri, call, GET_NO_LOGIN, "/", server_controller::main_index); + route!(req_uri, call, POST_NO_LOGIN, "/server/config", server_controller::get_config); // Main user WebSocket - route!(r, req_uri, call, POST_LOGIN, "/ws/token", user_ws_controller::get_token); + route!(req_uri, call, POST_LOGIN, "/ws/token", user_ws_controller::get_token); // Account controller - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/create", account_controller::create, LimitPolicy::SUCCESS(10)); - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/login", account_controller::login_user, LimitPolicy::FAILURE(10)); - route!(r, req_uri, call, POST_LOGIN, "/account/logout", account_controller::logout_user); - route!(r, req_uri, call, POST_LOGIN, "/account/disconnect_all_devices", account_controller::disconnect_all_devices); - route!(r, req_uri, call, POST_LOGIN, "/account/id", account_controller::user_id); - route!(r, req_uri, call, POST_LOGIN, "/account/mail", account_controller::get_mail); - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/exists_email", account_controller::exists_mail, LimitPolicy::ANY(30)); - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/has_security_questions", account_controller::has_security_questions, LimitPolicy::FAILURE(10)); - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/get_security_questions", account_controller::get_security_questions, LimitPolicy::FAILURE(10)); - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/check_security_answers", account_controller::check_security_answers, LimitPolicy::FAILURE(10)); - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/check_password_reset_token", account_controller::check_password_reset_token, LimitPolicy::FAILURE(10)); - route!(r, req_uri, call, LTD_POST_NO_LOGIN, "/account/reset_user_passwd", account_controller::reset_user_password, LimitPolicy::FAILURE(10)); - route!(r, req_uri, call, LTD_POST_LOGIN, "/account/export_data", account_controller::export_data, LimitPolicy::ANY(10)); - route!(r, req_uri, call, POST_LOGIN, "/account/delete", account_controller::delete_account); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/create", account_controller::create, LimitPolicy::SUCCESS(10)); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/login", account_controller::login_user, LimitPolicy::FAILURE(10)); + route!(req_uri, call, POST_LOGIN, "/account/logout", account_controller::logout_user); + route!(req_uri, call, POST_LOGIN, "/account/disconnect_all_devices", account_controller::disconnect_all_devices); + route!(req_uri, call, POST_LOGIN, "/account/id", account_controller::user_id); + route!(req_uri, call, POST_LOGIN, "/account/mail", account_controller::get_mail); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/exists_email", account_controller::exists_mail, LimitPolicy::ANY(30)); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/has_security_questions", account_controller::has_security_questions, LimitPolicy::FAILURE(10)); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/get_security_questions", account_controller::get_security_questions, LimitPolicy::FAILURE(10)); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/check_security_answers", account_controller::check_security_answers, LimitPolicy::FAILURE(10)); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/check_password_reset_token", account_controller::check_password_reset_token, LimitPolicy::FAILURE(10)); + route!(req_uri, call, LTD_POST_NO_LOGIN, "/account/reset_user_passwd", account_controller::reset_user_password, LimitPolicy::FAILURE(10)); + route!(req_uri, call, LTD_POST_LOGIN, "/account/export_data", account_controller::export_data, LimitPolicy::ANY(10)); + route!(req_uri, call, POST_LOGIN, "/account/delete", account_controller::delete_account); // User controller - route!(r, req_uri, call, POST_LOGIN, "/user/getInfo", user_controller::get_single); - route!(r, req_uri, call, POST_LOGIN, "/user/getInfos", user_controller::get_single); - route!(r, req_uri, call, POST_LOGIN, "/user/getInfoMultiple", user_controller::get_multiple); - route!(r, req_uri, call, POST_LOGIN, "/user/getInfosMultiple", user_controller::get_multiple); - route!(r, req_uri, call, POST_LOGIN, "/user/getAdvancedUserInfo", user_controller::get_advanced_info); - route!(r, req_uri, call, POST_LOGIN, "/user/getAdvancedUserInfos", user_controller::get_advanced_info); + route!(req_uri, call, POST_LOGIN, "/user/getInfo", user_controller::get_single); + route!(req_uri, call, POST_LOGIN, "/user/getInfos", user_controller::get_single); + route!(req_uri, call, POST_LOGIN, "/user/getInfoMultiple", user_controller::get_multiple); + route!(req_uri, call, POST_LOGIN, "/user/getInfosMultiple", user_controller::get_multiple); + route!(req_uri, call, POST_LOGIN, "/user/getAdvancedUserInfo", user_controller::get_advanced_info); + route!(req_uri, call, POST_LOGIN, "/user/getAdvancedUserInfos", user_controller::get_advanced_info); // Settings controller - route!(r, req_uri, call, POST_LOGIN, "/settings/get_general", settings_controller::get_general); - route!(r, req_uri, call, POST_LOGIN, "/settings/set_general", settings_controller::set_general); - route!(r, req_uri, call, POST_LOGIN, "/settings/check_user_directory_availability", settings_controller::check_virtual_directory); - route!(r, req_uri, call, POST_LOGIN, "/settings/get_language", settings_controller::get_language); - route!(r, req_uri, call, POST_LOGIN, "/settings/set_language", settings_controller::set_language); - route!(r, req_uri, call, POST_LOGIN, "/settings/get_security", settings_controller::get_security); - route!(r, req_uri, call, POST_LOGIN, "/settings/set_security", settings_controller::set_security); - route!(r, req_uri, call, POST_LOGIN, "/settings/check_password", settings_controller::check_password); - route!(r, req_uri, call, POST_LOGIN, "/settings/update_password", settings_controller::update_password); - route!(r, req_uri, call, POST_LOGIN, "/settings/get_account_image", settings_controller::get_account_image_settings); - route!(r, req_uri, call, POST_LOGIN, "/settings/upload_account_image", settings_controller::upload_account_image); - route!(r, req_uri, call, POST_LOGIN, "/settings/delete_account_image", settings_controller::delete_account_image); - route!(r, req_uri, call, POST_LOGIN, "/settings/set_account_image_visibility", settings_controller::set_account_image_visibility); - route!(r, req_uri, call, POST_LOGIN, "/settings/upload_custom_emoji", settings_controller::upload_custom_emoji); - route!(r, req_uri, call, POST_LOGIN, "/settings/delete_custom_emoji", settings_controller::delete_custom_emoji); - route!(r, req_uri, call, POST_LOGIN, "/settings/get_data_conservation_policy", settings_controller::get_data_conservation_policy); - route!(r, req_uri, call, LTD_POST_LOGIN, "/settings/set_data_conservation_policy", settings_controller::set_data_conservation_policy, LimitPolicy::FAILURE(10)); - route!(r, req_uri, call, POST_LOGIN, "/settings/get_notifications", settings_controller::get_notifications); - route!(r, req_uri, call, POST_LOGIN, "/settings/set_notifications", settings_controller::set_notifications); + route!(req_uri, call, POST_LOGIN, "/settings/get_general", settings_controller::get_general); + route!(req_uri, call, POST_LOGIN, "/settings/set_general", settings_controller::set_general); + route!(req_uri, call, POST_LOGIN, "/settings/check_user_directory_availability", settings_controller::check_virtual_directory); + route!(req_uri, call, POST_LOGIN, "/settings/get_language", settings_controller::get_language); + route!(req_uri, call, POST_LOGIN, "/settings/set_language", settings_controller::set_language); + route!(req_uri, call, POST_LOGIN, "/settings/get_security", settings_controller::get_security); + route!(req_uri, call, POST_LOGIN, "/settings/set_security", settings_controller::set_security); + route!(req_uri, call, POST_LOGIN, "/settings/check_password", settings_controller::check_password); + route!(req_uri, call, POST_LOGIN, "/settings/update_password", settings_controller::update_password); + route!(req_uri, call, POST_LOGIN, "/settings/get_account_image", settings_controller::get_account_image_settings); + route!(req_uri, call, POST_LOGIN, "/settings/upload_account_image", settings_controller::upload_account_image); + route!(req_uri, call, POST_LOGIN, "/settings/delete_account_image", settings_controller::delete_account_image); + route!(req_uri, call, POST_LOGIN, "/settings/set_account_image_visibility", settings_controller::set_account_image_visibility); + route!(req_uri, call, POST_LOGIN, "/settings/upload_custom_emoji", settings_controller::upload_custom_emoji); + route!(req_uri, call, POST_LOGIN, "/settings/delete_custom_emoji", settings_controller::delete_custom_emoji); + route!(req_uri, call, POST_LOGIN, "/settings/get_data_conservation_policy", settings_controller::get_data_conservation_policy); + route!(req_uri, call, LTD_POST_LOGIN, "/settings/set_data_conservation_policy", settings_controller::set_data_conservation_policy, LimitPolicy::FAILURE(10)); + route!(req_uri, call, POST_LOGIN, "/settings/get_notifications", settings_controller::get_notifications); + route!(req_uri, call, POST_LOGIN, "/settings/set_notifications", settings_controller::set_notifications); // Push notifications controller - route!(r, req_uri, call, POST_LOGIN, "/push_notifications/status", push_notifications_controller::get_status); - route!(r, req_uri, call, POST_LOGIN, "/push_notifications/configure", push_notifications_controller::configure); + route!(req_uri, call, POST_LOGIN, "/push_notifications/status", push_notifications_controller::get_status); + route!(req_uri, call, POST_LOGIN, "/push_notifications/configure", push_notifications_controller::configure); // Friends controller - route!(r, req_uri, call, POST_LOGIN, "/friends/getList", friends_controller::get_list); - route!(r, req_uri, call, POST_LOGIN, "/friends/get_single_infos", friends_controller::get_single_friendship_info); - route!(r, req_uri, call, POST_LOGIN, "/friends/get_user_list", friends_controller::get_other_user_list); - route!(r, req_uri, call, POST_LOGIN, "/friends/getStatus", friends_controller::get_status); - route!(r, req_uri, call, POST_LOGIN, "/friends/sendRequest", friends_controller::send_request); - route!(r, req_uri, call, POST_LOGIN, "/friends/removeRequest", friends_controller::cancel_request); - route!(r, req_uri, call, POST_LOGIN, "/friends/respondRequest", friends_controller::respond_request); - route!(r, req_uri, call, POST_LOGIN, "/friends/remove", friends_controller::remove_friend); - route!(r, req_uri, call, POST_LOGIN, "/friends/setFollowing", friends_controller::set_following); - route!(r, req_uri, call, POST_LOGIN, "/friends/set_can_post_texts", friends_controller::set_can_post_texts); + route!(req_uri, call, POST_LOGIN, "/friends/getList", friends_controller::get_list); + route!(req_uri, call, POST_LOGIN, "/friends/get_single_infos", friends_controller::get_single_friendship_info); + route!(req_uri, call, POST_LOGIN, "/friends/get_user_list", friends_controller::get_other_user_list); + route!(req_uri, call, POST_LOGIN, "/friends/getStatus", friends_controller::get_status); + route!(req_uri, call, POST_LOGIN, "/friends/sendRequest", friends_controller::send_request); + route!(req_uri, call, POST_LOGIN, "/friends/removeRequest", friends_controller::cancel_request); + route!(req_uri, call, POST_LOGIN, "/friends/respondRequest", friends_controller::respond_request); + route!(req_uri, call, POST_LOGIN, "/friends/remove", friends_controller::remove_friend); + route!(req_uri, call, POST_LOGIN, "/friends/setFollowing", friends_controller::set_following); + route!(req_uri, call, POST_LOGIN, "/friends/set_can_post_texts", friends_controller::set_can_post_texts); // Conversations controller - route!(r, req_uri, call, POST_LOGIN, "/conversations/create", conversations_controller::create); - route!(r, req_uri, call, POST_LOGIN, "/conversations/getList", conversations_controller::get_list); - route!(r, req_uri, call, POST_LOGIN, "/conversations/get_single", conversations_controller::get_single); - route!(r, req_uri, call, POST_LOGIN, "/conversations/updateSettings", conversations_controller::update_settings); - route!(r, req_uri, call, POST_LOGIN, "/conversations/change_image", conversations_controller::change_image); - route!(r, req_uri, call, POST_LOGIN, "/conversations/delete_image", conversations_controller::delete_image); - route!(r, req_uri, call, POST_LOGIN, "/conversations/addMember", conversations_controller::add_member); - route!(r, req_uri, call, POST_LOGIN, "/conversations/setAdmin", conversations_controller::set_admin); - route!(r, req_uri, call, POST_LOGIN, "/conversations/removeMember", conversations_controller::remove_member); - route!(r, req_uri, call, POST_LOGIN, "/conversations/getPrivate", conversations_controller::find_private); - route!(r, req_uri, call, POST_LOGIN, "/conversations/refresh_single", conversations_controller::refresh_single); - route!(r, req_uri, call, POST_LOGIN, "/conversations/get_older_messages", conversations_controller::get_older_messages); - route!(r, req_uri, call, POST_LOGIN, "/conversations/sendMessage", conversations_controller::send_message); - route!(r, req_uri, call, POST_LOGIN, "/conversations/get_number_unread", conversations_controller::count_unread); - route!(r, req_uri, call, POST_LOGIN, "/conversations/get_list_unread", conversations_controller::list_unread); - route!(r, req_uri, call, POST_LOGIN, "/conversations/delete", conversations_controller::delete_conversation); - route!(r, req_uri, call, POST_LOGIN, "/conversations/updateMessage", conversations_controller::update_message); - route!(r, req_uri, call, POST_LOGIN, "/conversations/deleteMessage", conversations_controller::delete_message); + route!(req_uri, call, POST_LOGIN, "/conversations/create", conversations_controller::create); + route!(req_uri, call, POST_LOGIN, "/conversations/getList", conversations_controller::get_list); + route!(req_uri, call, POST_LOGIN, "/conversations/get_single", conversations_controller::get_single); + route!(req_uri, call, POST_LOGIN, "/conversations/updateSettings", conversations_controller::update_settings); + route!(req_uri, call, POST_LOGIN, "/conversations/change_image", conversations_controller::change_image); + route!(req_uri, call, POST_LOGIN, "/conversations/delete_image", conversations_controller::delete_image); + route!(req_uri, call, POST_LOGIN, "/conversations/addMember", conversations_controller::add_member); + route!(req_uri, call, POST_LOGIN, "/conversations/setAdmin", conversations_controller::set_admin); + route!(req_uri, call, POST_LOGIN, "/conversations/removeMember", conversations_controller::remove_member); + route!(req_uri, call, POST_LOGIN, "/conversations/getPrivate", conversations_controller::find_private); + route!(req_uri, call, POST_LOGIN, "/conversations/refresh_single", conversations_controller::refresh_single); + route!(req_uri, call, POST_LOGIN, "/conversations/get_older_messages", conversations_controller::get_older_messages); + route!(req_uri, call, POST_LOGIN, "/conversations/sendMessage", conversations_controller::send_message); + route!(req_uri, call, POST_LOGIN, "/conversations/get_number_unread", conversations_controller::count_unread); + route!(req_uri, call, POST_LOGIN, "/conversations/get_list_unread", conversations_controller::list_unread); + route!(req_uri, call, POST_LOGIN, "/conversations/delete", conversations_controller::delete_conversation); + route!(req_uri, call, POST_LOGIN, "/conversations/updateMessage", conversations_controller::update_message); + route!(req_uri, call, POST_LOGIN, "/conversations/deleteMessage", conversations_controller::delete_message); // Search controller - route!(r, req_uri, call, POST_LOGIN, "/search/user", search_controller::search_user); - route!(r, req_uri, call, POST_LOGIN, "/user/search", search_controller::search_user); - route!(r, req_uri, call, POST_LOGIN, "/search/global", search_controller::search_global); + route!(req_uri, call, POST_LOGIN, "/search/user", search_controller::search_user); + route!(req_uri, call, POST_LOGIN, "/user/search", search_controller::search_user); + route!(req_uri, call, POST_LOGIN, "/search/global", search_controller::search_global); // Groups controller - route!(r, req_uri, call, POST_LOGIN, "/groups/create", groups_controller::create); - route!(r, req_uri, call, POST_LOGIN, "/groups/get_my_list", groups_controller::get_list_user); - route!(r, req_uri, call, POST_LOGIN, "/groups/get_info", groups_controller::get_info_single); - route!(r, req_uri, call, POST_LOGIN, "/groups/get_multiple_info", groups_controller::get_info_multiple); - route!(r, req_uri, call, POST_LOGIN, "/groups/get_advanced_info", groups_controller::get_advanced_info); - route!(r, req_uri, call, POST_LOGIN, "/groups/get_settings", groups_controller::get_settings); - route!(r, req_uri, call, POST_LOGIN, "/groups/set_settings", groups_controller::set_settings); - route!(r, req_uri, call, POST_LOGIN, "/groups/checkVirtualDirectory", groups_controller::check_virtual_dir); - route!(r, req_uri, call, POST_LOGIN, "/groups/upload_logo", groups_controller::upload_logo); - route!(r, req_uri, call, POST_LOGIN, "/groups/delete_logo", groups_controller::delete_logo); - route!(r, req_uri, call, POST_LOGIN, "/groups/create_conversation", groups_controller::create_conversation); - route!(r, req_uri, call, POST_LOGIN, "/groups/set_conversation_visibility", groups_controller::set_conversation_visibility); - route!(r, req_uri, call, POST_LOGIN, "/groups/delete_conversation", groups_controller::delete_conversation); - route!(r, req_uri, call, POST_LOGIN, "/groups/get_members", groups_controller::get_members); - route!(r, req_uri, call, POST_LOGIN, "/groups/invite", groups_controller::invite_user); - route!(r, req_uri, call, POST_LOGIN, "/groups/cancel_invitation", groups_controller::cancel_invitation); - route!(r, req_uri, call, POST_LOGIN, "/groups/respond_invitation", groups_controller::respond_invitation); - route!(r, req_uri, call, POST_LOGIN, "/groups/send_request", groups_controller::send_request); - route!(r, req_uri, call, POST_LOGIN, "/groups/cancel_request", groups_controller::cancel_request); - route!(r, req_uri, call, POST_LOGIN, "/groups/delete_member", groups_controller::delete_member); - route!(r, req_uri, call, POST_LOGIN, "/groups/update_membership_level", groups_controller::update_membership); - route!(r, req_uri, call, POST_LOGIN, "/groups/respond_request", groups_controller::respond_request); - route!(r, req_uri, call, POST_LOGIN, "/groups/get_membership", groups_controller::get_membership); - route!(r, req_uri, call, POST_LOGIN, "/groups/remove_membership", groups_controller::remove_membership); - route!(r, req_uri, call, POST_LOGIN, "/groups/set_following", groups_controller::set_following); - route!(r, req_uri, call, LTD_POST_LOGIN, "/groups/delete", groups_controller::delete_group, LimitPolicy::FAILURE(10)); + route!(req_uri, call, POST_LOGIN, "/groups/create", groups_controller::create); + route!(req_uri, call, POST_LOGIN, "/groups/get_my_list", groups_controller::get_list_user); + route!(req_uri, call, POST_LOGIN, "/groups/get_info", groups_controller::get_info_single); + route!(req_uri, call, POST_LOGIN, "/groups/get_multiple_info", groups_controller::get_info_multiple); + route!(req_uri, call, POST_LOGIN, "/groups/get_advanced_info", groups_controller::get_advanced_info); + route!(req_uri, call, POST_LOGIN, "/groups/get_settings", groups_controller::get_settings); + route!(req_uri, call, POST_LOGIN, "/groups/set_settings", groups_controller::set_settings); + route!(req_uri, call, POST_LOGIN, "/groups/checkVirtualDirectory", groups_controller::check_virtual_dir); + route!(req_uri, call, POST_LOGIN, "/groups/upload_logo", groups_controller::upload_logo); + route!(req_uri, call, POST_LOGIN, "/groups/delete_logo", groups_controller::delete_logo); + route!(req_uri, call, POST_LOGIN, "/groups/create_conversation", groups_controller::create_conversation); + route!(req_uri, call, POST_LOGIN, "/groups/set_conversation_visibility", groups_controller::set_conversation_visibility); + route!(req_uri, call, POST_LOGIN, "/groups/delete_conversation", groups_controller::delete_conversation); + route!(req_uri, call, POST_LOGIN, "/groups/get_members", groups_controller::get_members); + route!(req_uri, call, POST_LOGIN, "/groups/invite", groups_controller::invite_user); + route!(req_uri, call, POST_LOGIN, "/groups/cancel_invitation", groups_controller::cancel_invitation); + route!(req_uri, call, POST_LOGIN, "/groups/respond_invitation", groups_controller::respond_invitation); + route!(req_uri, call, POST_LOGIN, "/groups/send_request", groups_controller::send_request); + route!(req_uri, call, POST_LOGIN, "/groups/cancel_request", groups_controller::cancel_request); + route!(req_uri, call, POST_LOGIN, "/groups/delete_member", groups_controller::delete_member); + route!(req_uri, call, POST_LOGIN, "/groups/update_membership_level", groups_controller::update_membership); + route!(req_uri, call, POST_LOGIN, "/groups/respond_request", groups_controller::respond_request); + route!(req_uri, call, POST_LOGIN, "/groups/get_membership", groups_controller::get_membership); + route!(req_uri, call, POST_LOGIN, "/groups/remove_membership", groups_controller::remove_membership); + route!(req_uri, call, POST_LOGIN, "/groups/set_following", groups_controller::set_following); + route!(req_uri, call, LTD_POST_LOGIN, "/groups/delete", groups_controller::delete_group, LimitPolicy::FAILURE(10)); // Posts controller - route!(r, req_uri, call, POST_LOGIN, "/posts/get_user", posts_controller::get_list_user); - route!(r, req_uri, call, POST_LOGIN, "/posts/get_group", posts_controller::get_list_group); - route!(r, req_uri, call, POST_LOGIN, "/posts/get_latest", posts_controller::get_latest); - route!(r, req_uri, call, POST_LOGIN, "/posts/get_single", posts_controller::get_single); - route!(r, req_uri, call, POST_LOGIN, "/posts/create", posts_controller::create_post); - route!(r, req_uri, call, POST_LOGIN, "/posts/set_visibility_level", posts_controller::set_visibility_level); - route!(r, req_uri, call, POST_LOGIN, "/posts/update_content", posts_controller::update_content); - route!(r, req_uri, call, POST_LOGIN, "/posts/delete", posts_controller::delete); - route!(r, req_uri, call, POST_LOGIN, "/posts/getAvailableTargets", posts_controller::get_targets); + route!(req_uri, call, POST_LOGIN, "/posts/get_user", posts_controller::get_list_user); + route!(req_uri, call, POST_LOGIN, "/posts/get_group", posts_controller::get_list_group); + route!(req_uri, call, POST_LOGIN, "/posts/get_latest", posts_controller::get_latest); + route!(req_uri, call, POST_LOGIN, "/posts/get_single", posts_controller::get_single); + route!(req_uri, call, POST_LOGIN, "/posts/create", posts_controller::create_post); + route!(req_uri, call, POST_LOGIN, "/posts/set_visibility_level", posts_controller::set_visibility_level); + route!(req_uri, call, POST_LOGIN, "/posts/update_content", posts_controller::update_content); + route!(req_uri, call, POST_LOGIN, "/posts/delete", posts_controller::delete); + route!(req_uri, call, POST_LOGIN, "/posts/getAvailableTargets", posts_controller::get_targets); // Comments controller - route!(r, req_uri, call, POST_LOGIN, "/comments/create", comments_controller::create); - route!(r, req_uri, call, POST_LOGIN, "/comments/get_single", comments_controller::get_single); - route!(r, req_uri, call, POST_LOGIN, "/comments/edit", comments_controller::edit); - route!(r, req_uri, call, POST_LOGIN, "/comments/delete", comments_controller::delete); + route!(req_uri, call, POST_LOGIN, "/comments/create", comments_controller::create); + route!(req_uri, call, POST_LOGIN, "/comments/get_single", comments_controller::get_single); + route!(req_uri, call, POST_LOGIN, "/comments/edit", comments_controller::edit); + route!(req_uri, call, POST_LOGIN, "/comments/delete", comments_controller::delete); // Likes controller - route!(r, req_uri, call, POST_LOGIN, "/likes/update", likes_controller::update_async); + route!(req_uri, call, POST_LOGIN, "/likes/update", likes_controller::update_async); // Surveys controller - route!(r, req_uri, call, POST_LOGIN, "/surveys/get_info", surveys_controller::get_info_single); - route!(r, req_uri, call, POST_LOGIN, "/surveys/send_response", surveys_controller::send_response); - route!(r, req_uri, call, POST_LOGIN, "/surveys/cancel_response", surveys_controller::cancel_response); - route!(r, req_uri, call, POST_LOGIN, "/surveys/create_new_choice", surveys_controller::create_new_choice); - route!(r, req_uri, call, POST_LOGIN, "/surveys/block_new_choices_creation", surveys_controller::block_new_choices_creation); + route!(req_uri, call, POST_LOGIN, "/surveys/get_info", surveys_controller::get_info_single); + route!(req_uri, call, POST_LOGIN, "/surveys/send_response", surveys_controller::send_response); + route!(req_uri, call, POST_LOGIN, "/surveys/cancel_response", surveys_controller::cancel_response); + route!(req_uri, call, POST_LOGIN, "/surveys/create_new_choice", surveys_controller::create_new_choice); + route!(req_uri, call, POST_LOGIN, "/surveys/block_new_choices_creation", surveys_controller::block_new_choices_creation); // Notifications controller - route!(r, req_uri, call, POST_LOGIN, "/notifications/count_unread", notifications_controller::count_unread); - route!(r, req_uri, call, POST_LOGIN, "/notifications/count_all_news", notifications_controller::count_all_news); - route!(r, req_uri, call, POST_LOGIN, "/notifications/get_list_unread", notifications_controller::get_list_unread); - route!(r, req_uri, call, POST_LOGIN, "/notifications/mark_seen", notifications_controller::mark_seen); - route!(r, req_uri, call, POST_LOGIN, "/notifications/delete_all", notifications_controller::delete_all); + route!(req_uri, call, POST_LOGIN, "/notifications/count_unread", notifications_controller::count_unread); + route!(req_uri, call, POST_LOGIN, "/notifications/count_all_news", notifications_controller::count_all_news); + route!(req_uri, call, POST_LOGIN, "/notifications/get_list_unread", notifications_controller::get_list_unread); + route!(req_uri, call, POST_LOGIN, "/notifications/mark_seen", notifications_controller::mark_seen); + route!(req_uri, call, POST_LOGIN, "/notifications/delete_all", notifications_controller::delete_all); // Virtual directory controller - route!(r, req_uri, call, POST_LOGIN, "/user/findbyfolder", virtual_directory_controller::find_user); - route!(r, req_uri, call, POST_LOGIN, "/virtualDirectory/find", virtual_directory_controller::find); + route!(req_uri, call, POST_LOGIN, "/user/findbyfolder", virtual_directory_controller::find_user); + route!(req_uri, call, POST_LOGIN, "/virtualDirectory/find", virtual_directory_controller::find); // Web application controller - route!(r, req_uri, call, POST_LOGIN, "/webApp/getMemberships", web_app_controller::get_memberships); + route!(req_uri, call, POST_LOGIN, "/webApp/getMemberships", web_app_controller::get_memberships); // Forez controller - route!(r, req_uri, call, POST_LOGIN, "/forez/get_groups", forez_controller::get_list_groups); - route!(r, req_uri, call, POST_LOGIN, "/forez/get_member_info", forez_controller::get_member_info); + route!(req_uri, call, POST_LOGIN, "/forez/get_groups", forez_controller::get_list_groups); + route!(req_uri, call, POST_LOGIN, "/forez/get_member_info", forez_controller::get_member_info); // === ADMIN ROUTES === // Admin accounts controller - route!(r, req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/accounts/auth_options", admin_account_controller::get_auth_options, LimitPolicy::FAILURE(5)); - route!(r, req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/accounts/auth_with_reset_token", admin_account_controller::auth_with_reset_token, LimitPolicy::FAILURE(5)); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/sign_out", admin_account_controller::sign_out); - route!(r, req_uri, call, ADMIN_POST_LOGIN_RESTR, "/admin/accounts/create", admin_account_controller::create, AdminRole::MANAGE_ADMINS); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/id", admin_account_controller::get_admin_id); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/list", admin_account_controller::get_list); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/info", admin_account_controller::get_admin_info); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/update_general_settings", admin_account_controller::update_general_settings); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/generate_reset_token", admin_account_controller::generate_reset_token); + route!(req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/accounts/auth_options", admin_account_controller::get_auth_options, LimitPolicy::FAILURE(5)); + route!(req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/accounts/auth_with_reset_token", admin_account_controller::auth_with_reset_token, LimitPolicy::FAILURE(5)); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/sign_out", admin_account_controller::sign_out); + route!(req_uri, call, ADMIN_POST_LOGIN_RESTR, "/admin/accounts/create", admin_account_controller::create, AdminRole::MANAGE_ADMINS); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/id", admin_account_controller::get_admin_id); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/list", admin_account_controller::get_list); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/info", admin_account_controller::get_admin_info); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/update_general_settings", admin_account_controller::update_general_settings); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/accounts/generate_reset_token", admin_account_controller::generate_reset_token); // Admin security keys controller - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/list", admin_keys_controller::get_keys_list); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/challenge_register_key", admin_keys_controller::challenge_register_key); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/register_key", admin_keys_controller::register_key); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/delete_auth_key", admin_keys_controller::delete_auth_key); - route!(r, req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/keys/challenge_auth_with_key", admin_keys_controller::challenge_auth_with_key, LimitPolicy::ANY(10)); - route!(r, req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/keys/auth_with_key", admin_keys_controller::auth_with_key, LimitPolicy::ANY(10)); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/list", admin_keys_controller::get_keys_list); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/challenge_register_key", admin_keys_controller::challenge_register_key); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/register_key", admin_keys_controller::register_key); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/keys/delete_auth_key", admin_keys_controller::delete_auth_key); + route!(req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/keys/challenge_auth_with_key", admin_keys_controller::challenge_auth_with_key, LimitPolicy::ANY(10)); + route!(req_uri, call, LTD_ADMIN_POST_NO_LOGIN, "/admin/keys/auth_with_key", admin_keys_controller::auth_with_key, LimitPolicy::ANY(10)); // Admin roles controller - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/roles/list", admin_roles_controller::get_list); - route!(r, req_uri, call, ADMIN_POST_LOGIN_RESTR, "/admin/roles/toggle", admin_roles_controller::toggle, AdminRole::MANAGE_ADMINS); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/roles/list", admin_roles_controller::get_list); + route!(req_uri, call, ADMIN_POST_LOGIN_RESTR, "/admin/roles/toggle", admin_roles_controller::toggle, AdminRole::MANAGE_ADMINS); // Admin logs controller - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/logs/list", admin_logs_controller::get_list); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/logs/list", admin_logs_controller::get_list); // Admin users management controller - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/users/search", admin_users_controller::search); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/users/info", admin_users_controller::get_single); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/users/change_email_address", admin_users_controller::change_email_address); - route!(r, req_uri, call, ADMIN_POST_LOGIN, "/admin/users/create_password_reset_link", admin_users_controller::create_password_reset_link); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/users/search", admin_users_controller::search); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/users/info", admin_users_controller::get_single); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/users/change_email_address", admin_users_controller::change_email_address); + route!(req_uri, call, ADMIN_POST_LOGIN, "/admin/users/create_password_reset_link", admin_users_controller::create_password_reset_link); - (r, None) + (None, None) } \ No newline at end of file