mirror of
https://github.com/larksuite/cli.git
synced 2026-07-06 00:06:28 +08:00
The --as flag displayed (default "bot"), (default "user"), or (default "auto") in help text, but ResolveAs() never uses the cobra default — it resolves identity via credential config and auto-detect. The displayed default misled users into thinking a fixed identity was used when --as was omitted. Set cobra default to empty string so no (default ...) suffix appears. Also remove "auto" from visible options since --as auto is equivalent to omitting --as entirely. Change-Id: I51ba550a6697eb3675a29f5cee4d0010e0a1cc16
69 lines
2.4 KiB
Go
69 lines
2.4 KiB
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmdutil
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// AddAPIIdentityFlag registers the standard --as flag shape used by api/service commands.
|
|
func AddAPIIdentityFlag(ctx context.Context, cmd *cobra.Command, f *Factory, target *string) {
|
|
addIdentityFlag(ctx, cmd, f, target, identityFlagConfig{
|
|
defaultValue: "",
|
|
usage: "identity type: user | bot",
|
|
completionValues: []string{"user", "bot"},
|
|
})
|
|
}
|
|
|
|
// AddShortcutIdentityFlag registers the standard --as flag shape used by shortcuts.
|
|
func AddShortcutIdentityFlag(ctx context.Context, cmd *cobra.Command, f *Factory, authTypes []string) {
|
|
if len(authTypes) == 0 {
|
|
authTypes = []string{"user"}
|
|
}
|
|
addIdentityFlag(ctx, cmd, f, nil, identityFlagConfig{
|
|
defaultValue: "",
|
|
usage: "identity type: " + strings.Join(authTypes, " | "),
|
|
completionValues: authTypes,
|
|
})
|
|
}
|
|
|
|
type identityFlagConfig struct {
|
|
defaultValue string
|
|
usage string
|
|
completionValues []string
|
|
}
|
|
|
|
// addIdentityFlag centralizes --as registration and strict-mode UX.
|
|
// When strict mode is active, the flag is still accepted for compatibility
|
|
// but hidden from help/completion and locked to the forced identity by default.
|
|
func addIdentityFlag(ctx context.Context, cmd *cobra.Command, f *Factory, target *string, cfg identityFlagConfig) {
|
|
if forced := f.ResolveStrictMode(ctx).ForcedIdentity(); forced != "" {
|
|
// Keep registering --as in strict mode even though it is hidden.
|
|
// This preserves parser compatibility for existing invocations that still pass
|
|
// --as, and keeps downstream GetString("as") / ResolveAs paths stable.
|
|
// The usage text below is effectively placeholder text because the flag is hidden.
|
|
registerIdentityFlag(cmd, target, string(forced),
|
|
fmt.Sprintf("identity locked to %s by strict mode (admin-managed)", forced))
|
|
_ = cmd.Flags().MarkHidden("as")
|
|
return
|
|
}
|
|
|
|
registerIdentityFlag(cmd, target, cfg.defaultValue, cfg.usage)
|
|
RegisterFlagCompletion(cmd, "as", func(_ *cobra.Command, _ []string, _ string) ([]string, cobra.ShellCompDirective) {
|
|
return cfg.completionValues, cobra.ShellCompDirectiveNoFileComp
|
|
})
|
|
}
|
|
|
|
func registerIdentityFlag(cmd *cobra.Command, target *string, defaultValue, usage string) {
|
|
if target != nil {
|
|
cmd.Flags().StringVar(target, "as", defaultValue, usage)
|
|
return
|
|
}
|
|
cmd.Flags().String("as", defaultValue, usage)
|
|
}
|