Skip to main content

openlark_workflow/v1/task/comment/
create.rs

1//! 创建任务评论(v1)
2//!
3//! docPath: <https://open.feishu.cn/document/server-docs/docs/task-v1/taskcomment/create>
4
5use openlark_core::{
6    SDKResult,
7    api::{ApiRequest, ApiResponseTrait, ResponseFormat},
8    config::Config,
9    validate_required,
10};
11use serde::{Deserialize, Serialize};
12use std::sync::Arc;
13
14/// 创建任务评论请求体(v1)
15#[derive(Debug, Clone, Serialize, Default)]
16/// 创建任务评论请求体。
17pub struct CreateTaskCommentBodyV1 {
18    /// 评论内容
19    pub content: String,
20    /// 父评论 ID(回复评论时使用)
21    #[serde(skip_serializing_if = "Option::is_none")]
22    /// 父评论 ID。
23    pub parent_id: Option<String>,
24}
25
26/// 创建任务评论响应(v1)
27#[derive(Debug, Clone, Deserialize)]
28/// 创建任务评论响应。
29pub struct CreateTaskCommentResponseV1 {
30    /// 评论 ID
31    pub comment_id: String,
32}
33
34/// 创建任务评论请求(v1)
35#[derive(Debug, Clone)]
36/// 创建任务评论请求构建器。
37pub struct CreateTaskCommentRequestV1 {
38    config: Arc<Config>,
39    task_id: String,
40    body: CreateTaskCommentBodyV1,
41}
42
43impl CreateTaskCommentRequestV1 {
44    /// 创建新的请求构建器。
45    pub fn new(config: Arc<Config>, task_id: impl Into<String>) -> Self {
46        Self {
47            config,
48            task_id: task_id.into(),
49            body: CreateTaskCommentBodyV1::default(),
50        }
51    }
52
53    /// 设置评论内容
54    pub fn content(mut self, content: impl Into<String>) -> Self {
55        self.body.content = content.into();
56        self
57    }
58
59    /// 设置父评论 ID(回复评论时使用)
60    pub fn parent_id(mut self, parent_id: impl Into<String>) -> Self {
61        self.body.parent_id = Some(parent_id.into());
62        self
63    }
64
65    /// 执行请求
66    pub async fn execute(self) -> SDKResult<CreateTaskCommentResponseV1> {
67        self.execute_with_options(openlark_core::req_option::RequestOption::default())
68            .await
69    }
70
71    /// 执行请求(带选项)
72    pub async fn execute_with_options(
73        self,
74        option: openlark_core::req_option::RequestOption,
75    ) -> SDKResult<CreateTaskCommentResponseV1> {
76        validate_required!(self.body.content.trim(), "评论内容不能为空");
77
78        let api_endpoint =
79            crate::common::api_endpoints::TaskApiV1::TaskCommentCreate(self.task_id.clone());
80        let mut request = ApiRequest::<CreateTaskCommentResponseV1>::post(api_endpoint.to_url());
81
82        let body_json = serde_json::to_value(&self.body).map_err(|e| {
83            openlark_core::error::validation_error("序列化请求体失败", e.to_string().as_str())
84        })?;
85
86        request = request.body(body_json);
87
88        openlark_core::http::Transport::request_typed(
89            request,
90            &self.config,
91            Some(option),
92            "响应数据为空",
93        )
94        .await
95    }
96}
97
98impl ApiResponseTrait for CreateTaskCommentResponseV1 {
99    fn data_format() -> ResponseFormat {
100        ResponseFormat::Data
101    }
102}
103
104#[cfg(test)]
105#[allow(unused_imports)]
106mod tests {
107    use std::sync::Arc;
108
109    use super::*;
110
111    #[test]
112    fn test_create_task_comment_v1_builder() {
113        let config = Arc::new(
114            openlark_core::config::Config::builder()
115                .app_id("test")
116                .app_secret("test")
117                .build(),
118        );
119
120        let request = CreateTaskCommentRequestV1::new(config.clone(), "task_123")
121            .content("这是一条评论")
122            .parent_id("comment_parent");
123
124        assert_eq!(request.body.content, "这是一条评论");
125        assert_eq!(request.body.parent_id, Some("comment_parent".to_string()));
126    }
127
128    #[test]
129    fn test_task_comment_create_v1_url() {
130        let endpoint =
131            crate::common::api_endpoints::TaskApiV1::TaskCommentCreate("task_123".to_string());
132        assert_eq!(
133            endpoint.to_url(),
134            "/open-apis/task/v1/tasks/task_123/comments"
135        );
136    }
137}