mirror of
https://github.com/larksuite/cli.git
synced 2026-07-06 08:12:36 +08:00
* feat: support docs create title option Change-Id: I6fd840fe813e5e664ea9ec680765fd41375cdebf * docs: refine docs title guidance Change-Id: I2f986a4606729bc791a1bff6c03aaa198b0798dc * docs: keep lark doc skill create example Change-Id: Ic7005e015c9e71a4582c1f4a8ac8222d552426d4 * test: allow docs create title flag in help Change-Id: I0226e20c6bf2187eb6c4f0d2d5e37ab9225d4171
143 lines
5.0 KiB
Go
143 lines
5.0 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package doc
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/xml"
|
|
"strings"
|
|
|
|
"github.com/larksuite/cli/errs"
|
|
"github.com/larksuite/cli/shortcuts/common"
|
|
)
|
|
|
|
// v2CreateFlags returns the flag definitions for the v2 (OpenAPI) create path.
|
|
func v2CreateFlags() []common.Flag {
|
|
return []common.Flag{
|
|
{Name: "title", Desc: "document title; when provided, the CLI prepends it to --content as <title>...</title> so the title wins over later content titles"},
|
|
{Name: "content", Desc: "document body; XML by default or Markdown when --doc-format markdown. " + docsContentSkillHelp + "; use --help for the latest command flags", Input: []string{common.File, common.Stdin}},
|
|
{Name: "doc-format", Desc: "content format; xml is default and supports richer DocxXML blocks, markdown imports plain Markdown", Default: "xml", Enum: []string{"xml", "markdown"}},
|
|
{Name: "parent-token", Desc: "parent folder token or wiki node token; mutually exclusive with --parent-position"},
|
|
{Name: "parent-position", Desc: "parent position such as my_library; mutually exclusive with --parent-token"},
|
|
}
|
|
}
|
|
|
|
func validateCreateV2(_ context.Context, runtime *common.RuntimeContext) error {
|
|
if err := validateDocsV2Only(runtime, "+create", docsCreateLegacyFlags()); err != nil {
|
|
return err
|
|
}
|
|
title := strings.TrimSpace(runtime.Str("title"))
|
|
if runtime.Changed("title") && title == "" {
|
|
return errs.NewValidationError(errs.SubtypeInvalidArgument, "--title must not be empty").WithParam("--title")
|
|
}
|
|
if runtime.Str("content") == "" && title == "" {
|
|
return errs.NewValidationError(errs.SubtypeInvalidArgument, "--content is required unless --title is provided").WithParam("--content")
|
|
}
|
|
if runtime.Str("parent-token") != "" && runtime.Str("parent-position") != "" {
|
|
return errs.NewValidationError(errs.SubtypeInvalidArgument, "--parent-token and --parent-position are mutually exclusive").WithParams(
|
|
errs.InvalidParam{Name: "--parent-token", Reason: "mutually exclusive with --parent-position"},
|
|
errs.InvalidParam{Name: "--parent-position", Reason: "mutually exclusive with --parent-token"},
|
|
)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func dryRunCreateV2(_ context.Context, runtime *common.RuntimeContext) *common.DryRunAPI {
|
|
body := buildCreateBody(runtime)
|
|
desc := "OpenAPI: create document"
|
|
if runtime.IsBot() {
|
|
desc += ". After document creation succeeds in bot mode, the CLI will also try to grant the current CLI user full_access (可管理权限) on the new document."
|
|
}
|
|
return common.NewDryRunAPI().
|
|
POST("/open-apis/docs_ai/v1/documents").
|
|
Desc(desc).
|
|
Body(body)
|
|
}
|
|
|
|
func executeCreateV2(_ context.Context, runtime *common.RuntimeContext) error {
|
|
body := buildCreateBody(runtime)
|
|
|
|
data, err := doDocAPI(runtime, "POST", "/open-apis/docs_ai/v1/documents", body)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
augmentDocsCreatePermission(runtime, data)
|
|
fallbackDocsCreateURLV2(runtime, data)
|
|
runtime.OutRaw(data, nil)
|
|
return nil
|
|
}
|
|
|
|
func buildCreateBody(runtime *common.RuntimeContext) map[string]interface{} {
|
|
body := map[string]interface{}{
|
|
"format": runtime.Str("doc-format"),
|
|
"content": buildCreateContent(runtime),
|
|
}
|
|
if v := runtime.Str("parent-token"); v != "" {
|
|
body["parent_token"] = v
|
|
}
|
|
if v := runtime.Str("parent-position"); v != "" {
|
|
body["parent_position"] = v
|
|
}
|
|
injectDocsScene(runtime, body)
|
|
return body
|
|
}
|
|
|
|
func buildCreateContent(runtime *common.RuntimeContext) string {
|
|
content := runtime.Str("content")
|
|
title := strings.TrimSpace(runtime.Str("title"))
|
|
if title == "" {
|
|
return content
|
|
}
|
|
|
|
titleTag := "<title>" + escapeDocTitleText(title) + "</title>"
|
|
if content == "" {
|
|
return titleTag
|
|
}
|
|
return titleTag + "\n" + content
|
|
}
|
|
|
|
func escapeDocTitleText(title string) string {
|
|
var buf bytes.Buffer
|
|
_ = xml.EscapeText(&buf, []byte(title))
|
|
return buf.String()
|
|
}
|
|
|
|
// augmentDocsCreatePermission grants full_access to the current CLI user when
|
|
// the document was created with bot identity.
|
|
func augmentDocsCreatePermission(runtime *common.RuntimeContext, data map[string]interface{}) {
|
|
doc, _ := data["document"].(map[string]interface{})
|
|
if doc == nil {
|
|
return
|
|
}
|
|
docID := strings.TrimSpace(common.GetString(doc, "document_id"))
|
|
if docID == "" {
|
|
return
|
|
}
|
|
if grant := common.AutoGrantCurrentUserDrivePermission(runtime, docID, "docx"); grant != nil {
|
|
data["permission_grant"] = grant
|
|
}
|
|
}
|
|
|
|
// fallbackDocsCreateURLV2 fills data.document.url with a brand-standard URL
|
|
// when the OpenAPI response did not include one. Backfills only when missing,
|
|
// so any tenant-specific URL the backend returned is preserved.
|
|
func fallbackDocsCreateURLV2(runtime *common.RuntimeContext, data map[string]interface{}) {
|
|
doc, _ := data["document"].(map[string]interface{})
|
|
if doc == nil {
|
|
return
|
|
}
|
|
if strings.TrimSpace(common.GetString(doc, "url")) != "" {
|
|
return
|
|
}
|
|
docID := strings.TrimSpace(common.GetString(doc, "document_id"))
|
|
if docID == "" {
|
|
return
|
|
}
|
|
if u := common.BuildResourceURL(runtime.Config.Brand, "docx", docID); u != "" {
|
|
doc["url"] = u
|
|
}
|
|
}
|