use super::{JoinRequestQuery, PageQuery}; use crate::{ApiResponse, error::ApiError}; use actix_web::{HttpResponse, Result, web}; use service::AppService; use session::Session; #[utoipa::path( get, path = "/api/projects/{project_name}/join-requests", params( ("project_name" = String, Path), ("status" = Option, Query), ("page" = Option, Query), ("per_page" = Option, Query), ), responses( (status = 200, description = "List join requests", body = ApiResponse), (status = 401, description = "Unauthorized"), (status = 403, description = "Forbidden"), (status = 404, description = "Not found"), ), tag = "Project" )] pub async fn project_join_requests( service: web::Data, session: Session, path: web::Path, query: web::Query, ) -> Result { let project_name = path.into_inner(); let resp = service .project_get_join_requests( project_name, query.status.clone(), query.page, query.per_page, &session, ) .await?; Ok(ApiResponse::ok(resp).to_response()) } #[utoipa::path( post, path = "/api/projects/{project_name}/join-requests", params(("project_name" = String, Path)), request_body = service::project::join_request::SubmitJoinRequest, responses( (status = 200, description = "Submit join request"), (status = 401, description = "Unauthorized"), (status = 404, description = "Not found"), ), tag = "Project" )] pub async fn project_submit_join_request( service: web::Data, session: Session, path: web::Path, body: web::Json, ) -> Result { let project_name = path.into_inner(); let resp = service .project_submit_join_request(project_name, body.into_inner(), &session) .await?; Ok(ApiResponse::ok(serde_json::json!({ "request_id": resp })).to_response()) } #[utoipa::path( patch, path = "/api/projects/{project_name}/join-requests/{request_id}", params( ("project_name" = String, Path), ("request_id" = i64, Path), ), request_body = service::project::join_request::ProcessJoinRequest, responses( (status = 200, description = "Process join request"), (status = 401, description = "Unauthorized"), (status = 403, description = "Forbidden"), (status = 404, description = "Not found"), ), tag = "Project" )] pub async fn project_process_join_request( service: web::Data, session: Session, path: web::Path<(String, i64)>, body: web::Json, ) -> Result { let (project_name, request_id) = path.into_inner(); service .project_process_join_request(project_name, request_id, body.into_inner(), &session) .await?; Ok(ApiResponse::ok(serde_json::json!({ "success": true })).to_response()) } #[utoipa::path( delete, path = "/api/projects/{project_name}/join-requests/{request_id}", params( ("project_name" = String, Path), ("request_id" = i64, Path), ), responses( (status = 200, description = "Cancel join request"), (status = 401, description = "Unauthorized"), (status = 404, description = "Not found"), ), tag = "Project" )] pub async fn project_cancel_join_request( service: web::Data, session: Session, path: web::Path<(String, i64)>, ) -> Result { let (project_name, request_id) = path.into_inner(); service .project_cancel_join_request(project_name, request_id, &session) .await?; Ok(ApiResponse::ok(serde_json::json!({ "success": true })).to_response()) } #[utoipa::path( get, path = "/api/projects/me/join-requests", responses( (status = 200, description = "List my join requests", body = ApiResponse), (status = 401, description = "Unauthorized"), (status = 404, description = "Not found"), ), tag = "Project" )] pub async fn project_my_join_requests( service: web::Data, session: Session, query: web::Query, ) -> Result { let resp = service .project_get_my_join_requests(query.page, query.per_page, &session) .await?; Ok(ApiResponse::ok(resp).to_response()) }