mirror of
https://github.com/larksuite/cli.git
synced 2026-07-03 22:24:31 +08:00
90 lines
2.3 KiB
Go
90 lines
2.3 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package task
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
|
|
larkcore "github.com/larksuite/oapi-sdk-go/v3/core"
|
|
|
|
"github.com/larksuite/cli/shortcuts/common"
|
|
)
|
|
|
|
var CommentTask = common.Shortcut{
|
|
Service: "task",
|
|
Command: "+comment",
|
|
Description: "add a comment to a task",
|
|
Risk: "write",
|
|
Scopes: []string{"task:comment:write"},
|
|
AuthTypes: []string{"user", "bot"},
|
|
HasFormat: true,
|
|
|
|
Flags: []common.Flag{
|
|
{Name: "task-id", Desc: "task id", Required: true},
|
|
{Name: "content", Desc: "comment content", Required: true},
|
|
},
|
|
|
|
DryRun: func(ctx context.Context, runtime *common.RuntimeContext) *common.DryRunAPI {
|
|
body := map[string]interface{}{
|
|
"content": runtime.Str("content"),
|
|
"resource_id": runtime.Str("task-id"),
|
|
"resource_type": "task",
|
|
}
|
|
return common.NewDryRunAPI().
|
|
POST("/open-apis/task/v2/comments").
|
|
Params(map[string]interface{}{"user_id_type": "open_id"}).
|
|
Body(body)
|
|
},
|
|
|
|
Execute: func(ctx context.Context, runtime *common.RuntimeContext) error {
|
|
body := map[string]interface{}{
|
|
"content": runtime.Str("content"),
|
|
"resource_id": runtime.Str("task-id"),
|
|
"resource_type": "task",
|
|
}
|
|
|
|
queryParams := make(larkcore.QueryParams)
|
|
queryParams.Set("user_id_type", "open_id")
|
|
|
|
apiResp, err := runtime.DoAPI(&larkcore.ApiReq{
|
|
HttpMethod: http.MethodPost,
|
|
ApiPath: "/open-apis/task/v2/comments",
|
|
QueryParams: queryParams,
|
|
Body: body,
|
|
})
|
|
|
|
var result map[string]interface{}
|
|
if err == nil {
|
|
if parseErr := json.Unmarshal(apiResp.RawBody, &result); parseErr != nil {
|
|
return WrapTaskError(ErrCodeTaskInternalError, fmt.Sprintf("failed to parse response: %v", parseErr), "parse comment response")
|
|
}
|
|
}
|
|
|
|
data, err := HandleTaskApiResult(result, err, "add task comment")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
comment, _ := data["comment"].(map[string]interface{})
|
|
id, _ := comment["id"].(string)
|
|
|
|
// Standardized write output: return resource identifiers
|
|
outData := map[string]interface{}{
|
|
"id": id,
|
|
}
|
|
|
|
runtime.OutFormat(outData, nil, func(w io.Writer) {
|
|
fmt.Fprintf(w, "✅ Comment added successfully!\n")
|
|
if id != "" {
|
|
fmt.Fprintf(w, "Comment ID: %s\n", id)
|
|
}
|
|
})
|
|
return nil
|
|
},
|
|
}
|