openlark_workflow/v1/task/comment/
create.rs1use 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#[derive(Debug, Clone, Serialize, Default)]
16pub struct CreateTaskCommentBodyV1 {
18 pub content: String,
20 #[serde(skip_serializing_if = "Option::is_none")]
22 pub parent_id: Option<String>,
24}
25
26#[derive(Debug, Clone, Deserialize)]
28pub struct CreateTaskCommentResponseV1 {
30 pub comment_id: String,
32}
33
34#[derive(Debug, Clone)]
36pub struct CreateTaskCommentRequestV1 {
38 config: Arc<Config>,
39 task_id: String,
40 body: CreateTaskCommentBodyV1,
41}
42
43impl CreateTaskCommentRequestV1 {
44 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 pub fn content(mut self, content: impl Into<String>) -> Self {
55 self.body.content = content.into();
56 self
57 }
58
59 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 pub async fn execute(self) -> SDKResult<CreateTaskCommentResponseV1> {
67 self.execute_with_options(openlark_core::req_option::RequestOption::default())
68 .await
69 }
70
71 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}