bf9395e022
CI / license-header (push) Has been skipped
CI / e2e-dry-run (push) Has been skipped
CI / fast-gate (push) Failing after 0s
Test PR Label Logic / test-pr-labels (push) Failing after 1s
Skill Format Check / check-format (push) Failing after 2s
CI / security (push) Failing after 5s
CI / unit-test (push) Has been skipped
CI / lint (push) Has been skipped
CI / script-test (push) Has been skipped
CI / deterministic-gate (push) Has been skipped
CI / coverage (push) Has been skipped
CI / results (push) Has been cancelled
CI / deadcode (push) Has been cancelled
CI / e2e-live (push) Has been cancelled
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package wiki
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/larksuite/cli/errs"
|
|
"github.com/larksuite/cli/internal/core"
|
|
"github.com/larksuite/cli/shortcuts/common"
|
|
)
|
|
|
|
// wikiNodeURL returns the user-facing link for a wiki node. The create/copy
|
|
// OpenAPI responses carry a real `url` (undocumented in the server-docs schema
|
|
// but present in practice); prefer it so the CLI surfaces the canonical link.
|
|
// Fall back to BuildResourceURL synthesis only when the response omits it.
|
|
//
|
|
// Shared by +node-create and +node-copy, hence kept here rather than in either
|
|
// command's file.
|
|
func wikiNodeURL(brand core.LarkBrand, node *wikiNodeRecord) string {
|
|
if node == nil {
|
|
return ""
|
|
}
|
|
if u := strings.TrimSpace(node.URL); u != "" {
|
|
return u
|
|
}
|
|
return common.BuildResourceURL(brand, "wiki", node.NodeToken)
|
|
}
|
|
|
|
func appendWikiProblemHint(err error, hint string) error {
|
|
if strings.TrimSpace(hint) == "" {
|
|
return err
|
|
}
|
|
if p, ok := errs.ProblemOf(err); ok {
|
|
if strings.TrimSpace(p.Hint) != "" {
|
|
p.Hint = p.Hint + "\n" + hint
|
|
} else {
|
|
p.Hint = hint
|
|
}
|
|
}
|
|
return err
|
|
}
|