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
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)
|
|
}
|