90 lines
2.9 KiB
Rust
90 lines
2.9 KiB
Rust
use crate::{ApiResponse, error::ApiError};
|
|
use actix_web::{HttpResponse, Result, web};
|
|
use service::AppService;
|
|
use session::Session;
|
|
|
|
#[utoipa::path(
|
|
get,
|
|
path = "/api/issue/{project}/issues/{number}/repos",
|
|
params(
|
|
("project" = String, Path),
|
|
("number" = i64, Path),
|
|
),
|
|
responses(
|
|
(status = 200, description = "List issue repos", body = ApiResponse<Vec<service::issue::IssueRepoResponse>>),
|
|
(status = 401, description = "Unauthorized"),
|
|
(status = 404, description = "Not found"),
|
|
),
|
|
tag = "Issues"
|
|
)]
|
|
pub async fn issue_repo_list(
|
|
service: web::Data<AppService>,
|
|
session: Session,
|
|
path: web::Path<(String, i64)>,
|
|
) -> Result<HttpResponse, ApiError> {
|
|
let (project, issue_number) = path.into_inner();
|
|
let resp = service
|
|
.issue_repo_list(project, issue_number, &session)
|
|
.await?;
|
|
Ok(ApiResponse::ok(resp).to_response())
|
|
}
|
|
|
|
#[utoipa::path(
|
|
post,
|
|
path = "/api/issue/{project}/issues/{number}/repos",
|
|
params(
|
|
("project" = String, Path),
|
|
("number" = i64, Path),
|
|
),
|
|
request_body = service::issue::IssueLinkRepoRequest,
|
|
responses(
|
|
(status = 200, description = "Link repo to issue", body = ApiResponse<service::issue::IssueRepoResponse>),
|
|
(status = 401, description = "Unauthorized"),
|
|
(status = 403, description = "Forbidden"),
|
|
(status = 404, description = "Not found"),
|
|
),
|
|
tag = "Issues"
|
|
)]
|
|
pub async fn issue_repo_link(
|
|
service: web::Data<AppService>,
|
|
session: Session,
|
|
path: web::Path<(String, i64)>,
|
|
body: web::Json<service::issue::IssueLinkRepoRequest>,
|
|
) -> Result<HttpResponse, ApiError> {
|
|
let (project, issue_number) = path.into_inner();
|
|
let resp = service
|
|
.issue_repo_link(project, issue_number, body.into_inner(), &session)
|
|
.await?;
|
|
Ok(ApiResponse::ok(resp).to_response())
|
|
}
|
|
|
|
#[utoipa::path(
|
|
delete,
|
|
path = "/api/issue/{project}/issues/{number}/repos/{repo_id}",
|
|
params(
|
|
("project" = String, Path),
|
|
("number" = i64, Path),
|
|
("repo_id" = String, Path),
|
|
),
|
|
responses(
|
|
(status = 200, description = "Unlink repo from issue"),
|
|
(status = 401, description = "Unauthorized"),
|
|
(status = 403, description = "Forbidden"),
|
|
(status = 404, description = "Not found"),
|
|
),
|
|
tag = "Issues"
|
|
)]
|
|
pub async fn issue_repo_unlink(
|
|
service: web::Data<AppService>,
|
|
session: Session,
|
|
path: web::Path<(String, i64, String)>,
|
|
) -> Result<HttpResponse, ApiError> {
|
|
let (project, issue_number, repo_id) = path.into_inner();
|
|
let repo_uuid = uuid::Uuid::parse_str(&repo_id)
|
|
.map_err(|_| service::error::AppError::BadRequest("Invalid UUID".to_string()))?;
|
|
service
|
|
.issue_repo_unlink(project, issue_number, repo_uuid, &session)
|
|
.await?;
|
|
Ok(ApiResponse::ok(serde_json::json!({ "success": true })).to_response())
|
|
}
|