gitdataai/libs/api/user/user_info.rs
2026-04-14 19:02:01 +08:00

26 lines
801 B
Rust

use crate::{ApiResponse, error::ApiError};
use actix_web::{HttpResponse, Result, web};
use service::AppService;
use session::Session;
#[utoipa::path(
get,
path = "/api/users/{username}/info",
params(("username" = String, Path)),
responses(
(status = 200, description = "Get user info", body = ApiResponse<service::user::user_info::UserInfoExternal>),
(status = 401, description = "Unauthorized"),
(status = 404, description = "Not found"),
),
tag = "User"
)]
pub async fn get_user_info(
service: web::Data<AppService>,
session: Session,
path: web::Path<String>,
) -> Result<HttpResponse, ApiError> {
let username = path.into_inner();
let resp = service.user_info(session, username).await?;
Ok(ApiResponse::ok(resp).to_response())
}