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

104 lines
3.0 KiB
Rust

use crate::{ApiResponse, error::ApiError};
use actix_web::{HttpResponse, Result, web};
use room::ws_context::WsUserContext;
use service::AppService;
use session::Session;
use uuid::Uuid;
#[utoipa::path(
get,
path = "/api/rooms/{room_id}/pins",
params(
("room_id" = Uuid, Path),
),
responses(
(status = 200, description = "List room pins", body = ApiResponse<Vec<room::RoomPinResponse>>),
(status = 401, description = "Unauthorized"),
(status = 404, description = "Not found"),
),
tag = "Room"
)]
pub async fn pin_list(
service: web::Data<AppService>,
session: Session,
path: web::Path<Uuid>,
) -> Result<HttpResponse, ApiError> {
let room_id = path.into_inner();
let user_id = session
.user()
.ok_or_else(|| ApiError::from(service::error::AppError::Unauthorized))?;
let ctx = WsUserContext::new(user_id);
let resp = service
.room
.room_pin_list(room_id, &ctx)
.await
.map_err(ApiError::from)?;
Ok(ApiResponse::ok(resp).to_response())
}
#[utoipa::path(
post,
path = "/api/rooms/{room_id}/messages/{message_id}/pin",
params(
("room_id" = Uuid, Path),
("message_id" = Uuid, Path),
),
responses(
(status = 200, description = "Add room pin", body = ApiResponse<room::RoomPinResponse>),
(status = 401, description = "Unauthorized"),
(status = 403, description = "Forbidden"),
(status = 404, description = "Not found"),
),
tag = "Room"
)]
pub async fn pin_add(
service: web::Data<AppService>,
session: Session,
path: web::Path<(Uuid, Uuid)>,
) -> Result<HttpResponse, ApiError> {
let (_room_id, message_id) = path.into_inner();
let user_id = session
.user()
.ok_or_else(|| ApiError::from(service::error::AppError::Unauthorized))?;
let ctx = WsUserContext::new(user_id);
let resp = service
.room
.room_pin_add(message_id, &ctx)
.await
.map_err(ApiError::from)?;
Ok(ApiResponse::ok(resp).to_response())
}
#[utoipa::path(
delete,
path = "/api/rooms/{room_id}/messages/{message_id}/pin",
params(
("room_id" = Uuid, Path),
("message_id" = Uuid, Path),
),
responses(
(status = 200, description = "Remove room pin"),
(status = 401, description = "Unauthorized"),
(status = 403, description = "Forbidden"),
(status = 404, description = "Not found"),
),
tag = "Room"
)]
pub async fn pin_remove(
service: web::Data<AppService>,
session: Session,
path: web::Path<(Uuid, Uuid)>,
) -> Result<HttpResponse, ApiError> {
let (_room_id, message_id) = path.into_inner();
let user_id = session
.user()
.ok_or_else(|| ApiError::from(service::error::AppError::Unauthorized))?;
let ctx = WsUserContext::new(user_id);
service
.room
.room_pin_remove(message_id, &ctx)
.await
.map_err(ApiError::from)?;
Ok(ApiResponse::ok(true).to_response())
}